/* --- CSS RESET & VARIABLES --- */

  
:root {
            --brand-orange: #FF6B35; /* Vibrant Orange for CTA */
            --brand-teal: #00897B;   /* Teal for accents/icons */
            --brand-teal-light: #E0F2F1;
            --text-dark: #1a1a1a;
            --text-gray: #555;
            --bg-light: #f9f9f9;
            --white: #ffffff;
            --max-width: 1200px;
        }

        
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
        }

        body {
            color: var(--text-dark);
            background-color: white;
            line-height: 1.6;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }

        /* --- UTILITIES --- */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
            color: #a59a9a;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: var(--brand-orange);
            color: var(--white);
            border: 2px solid var(--brand-orange);
        }
        .btn-primary2 {
            background-color: teal;
            color:white;
            border: 2px solid var(--brand-orange);
        }

        .btn-primary:hover {
            background-color: #e55a2b;
        }

        .btn-secondary {
            color: var(--brand-teal);
            background: transparent;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            text-decoration: underline;
        }

        .section-padding {
            padding: 80px 0;
        }
        /* ===== HEADER FIX (DO NOT CHANGE OTHER STYLES) ===== */


/* Keep nav clean */
nav {
    flex-wrap: nowrap;
}


    .btn.btn-primary {
        padding: 10px 14px; /* slight shrink, not squeeze */
        font-size: 14px;
    }

/* Proper mobile collapse */
@media (max-width: 768px) {
    .nav-actions a:not(.btn) {
        display: none;
    }
}


        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        
        .logo span { color: var(--brand-orange); }

        /* --- HERO SECTION --- */
        .hero {
            padding: 60px 0;
            display: flex;
            align-items: center;
            gap: 50px;
            text-align: center;
        }

        .hero-content {
            flex: 1;
        }

        .hero-title {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* --- FEATURES GRID --- */
        .features {
            background-color: var(--bg-light);
            text-align: center;
        }

        .features h2 {
            font-size: 2.5rem;
            margin-bottom: 60px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            text-align: left;
        }

        .feature-card {
            padding: 20px;
        }

        .feature-icon {
            font-size: 30px;
            color: var(--brand-teal);
            margin-bottom: 15px;
        }

        .feature-card h3 {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .feature-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
        }

        /* --- HOW IT WORKS (Alternating Steps) --- */
        .how-it-works h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
        }

        .step {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 100px;
        }

        /* Reverse every other step to match screenshot zigzag */
        .step:nth-child(even) {
            flex-direction: row-reverse;
        }

        .step-content {
            flex: 1;
        }

        .step-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .step-content p {
            color: var(--text-gray);
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .step-image {
            flex: 1;
        }

        .step-image img {
            width: 100%;
            border-radius: 12px;
            /* Using a subtle shadow to make white screenshots pop */
            box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
        }

        /* --- GALLERY SECTION --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            align-items: center;
        }
        
        .gallery-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 12px;
        }
        
        .gallery-img.large {
            height: 400px;
        }

        /* --- FINAL CTA --- */
        .final-cta {
            background-color: #000;
            color: var(--white);
            text-align: center;
            padding: 100px 0;
        }

        .final-cta h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .final-cta p {
            margin-bottom: 30px;
            opacity: 0.8;
        }

        /* --- FOOTER --- */
        footer {
            background: var(--bg-light);
            padding: 40px 0;
            text-align: center;
            border-top: 1px solid #ddd;
            color: var(--text-gray);
            font-size: 0.9rem;
        }

        /* --- RESPONSIVE --- */
 
        @media (max-width: 768px) {
            .hero, .step, .step:nth-child(even) {
                flex-direction: column;
                text-align: center;
            }

            .hero-title { font-size: 2.5rem; }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }



.playstore-badge {
  height: 56px;
  width: auto;
  
}
@media (max-width: 768px) {
  .hero-store {
    justify-content: center;
    text-align: center;
  }
}


.cta-note {
  font-size: 0.9rem;
  color: #6b7280;
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cta-app-download {
  margin-top: 24px;
  text-align: center;
}

.cta-app-download img {
  height: 70px;
  width: auto;
}

.cta-note {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #b5b5b5;
}

  /* contact page css start from here   */
  /* Import Google Fonts for clean, modern typography */
        
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #ffffff; /* Soft neutral background */
            font-size: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header / Hero Section */
        .hero {
  background: #ffffff;   /* REMOVE TEAL */
  color: #111827;
  padding: 100px 20px 80px;
  
}

        .hero h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .hero p {
            font-size: 1.2rem;
            font-weight: 300;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-button {
            display: inline-block;
            padding: 15px 30px;
            background-color: #FF8C00; /* Warm orange accent */
            color: rgb(255, 255, 255);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            font-size: 1rem;
            margin: 10px;
            transition: background-color 0.3s ease;
        }
        .cta-button:hover {
            background-color: #e67e00;
        }
        .secondary-cta {
            background-color: transparent;
            border: 2px solid rgb(0, 0, 0);
            color: #000;
        }
        .secondary-cta:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Pain to Solution Section */
        .pain-solution {
            padding: 60px 20px;
            background-color: white;
        }
        .pain-solution h2 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #008080;
            margin-bottom: 40px;
        }
        .pain-solution .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        .pain-solution .item {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: #f9f9f9;
        }
        .pain-solution .item h3 {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 10px;
            color: #333;
        }
        .pain-solution .item p {
            color: #666;
        }

        /* Key Features Section */
        .features {
            padding: 60px 20px;
            background-color: #f9f9f9;
        }
        .features h2 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #008080;
            margin-bottom: 40px;
        }
        .features .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .features .feature {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            background-color: white;
        }
        .features .feature .icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #008080;
            border-radius: 50%;
            color: white;
            font-size: 2rem;
        }
        .features .feature h3 {
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 10px;
        }
        .features .feature p {
            color: #666;
        }

        /* Why Dishie Section */
        .why-dishie {
            padding: 60px 20px;
            background-color: white;
        }
        .why-dishie h2 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #008080;
            margin-bottom: 40px;
        }
        .why-dishie .content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .why-dishie ul {
            list-style: none;
            padding: 0;
        }
        .why-dishie li {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #333;
        }

        /* Contact Form Section */
        .contact-form {
            padding: 60px 20px;
            background-color: #f9f9f9;
        }
        .contact-form h2 {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            color: #008080;
            margin-bottom: 40px;
        }
        .contact-form form {
            max-width: 600px;
            margin: 0 auto;
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        .contact-form .form-group {
            margin-bottom: 20px;
        }
        .contact-form label {
            display: block;
            font-weight: 500;
            margin-bottom: 5px;
            color: #333;
        }
        .contact-form input,
        .contact-form select,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            font-family: 'Roboto', sans-serif;
        }
        .contact-form textarea {
            resize: vertical;
            min-height: 100px;
        }
        .contact-form button {
            width: 100%;
            padding: 15px;
            background-color: #FF8C00;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .contact-form button:hover {
            background-color: #e67e00;
        }
        .contact-form .note {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 0.9rem;
        }

        /* Footer */
        .footer {
            background-color: #008080;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }
        .footer p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .footer a {
            color: #ffffff;
            text-decoration: none;
            margin: 0 10px;
        }
        .footer a:hover {
            text-decoration: underline;
        }

        /* Responsive Design - Mobile First */
        @media (min-width: 768px) {
            .hero h1 {
                font-size: 3rem;
            }
            .hero p {
                font-size: 1.4rem;
            }
            .pain-solution .grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .features .grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .hero {
                padding: 100px 20px;
            }
            .pain-solution .grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }


/* LOGO */
/* ===== HEADER LOGO FIX ===== */


/* BUTTON */
.btn-primary {
  background: #FF4F00;
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
}


/* Contact Page - Get App CTA */
.nav-get-app {
  font-weight: 600;
  font-size: 0.95rem;
  color: #00897B;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-get-app:hover {
  color: #00695c;
}

/* Hide on mobile */
@media (max-width: 900px) {
  .nav-get-app {
    display: none;
  }
}

/* Force CTA to the RIGHT */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  margin-left: auto;
}

  .nav-get-app {
    display: none; /* mobile clean look */
  }

  .header-cta {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

/* ===== HEADER SPACING FINAL FIX ===== */


/* LEFT: LOGO */


/* RIGHT: CTA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

/* CTA button */
.header-cta {
  background: #FF8C00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

/* Mobile polish */
@media (max-width: 768px) {
  .site-header .container {
    padding: left 16px;
    padding-right: 16px;
  }
}
/* =========================
   GLOBAL HEADER (FINAL)
========================= */



.site-header .container {
  max-width: 100%;
  margin: 0 auto;
  padding: 20 20px;
  background-color: rgb(245, 249, 249);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-height: 72px;
  max-width: 1400px;
}

/* LEFT: LOGO */

.logo img {
  height: 230px;
  width: 1200;
  padding-left: 80px;
}

/* RIGHT: CTA AREA */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 40px;
}

/* Get App text */
.nav-get-app {
  font-size: 14px;
  font-weight: 500;
  color: #0f766e; /* teal tone */
  text-decoration: none;
  position: relative;
}
.nav-get-app::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #0f766e;
  transition: width 0.2s ease;
}
.nav-get-app:hover::after {
  width: 100%;
}

/* Contact Sales button */
/* .header-cta {
  background: #FF8C00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
} */
.header-cta {
  background: #ff8c00;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-get-app {
    display: none;
  }

@media (max-width: 768px) {
  .logo img {
    height: 150px;
  }
}
.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
/* .hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
} */
 /* =========================
   FINAL HEADER (CLEAN FIX)
========================= */

.site-header {
  background: #f5f3f3;
}

.site-header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;               /* FIXED HEADER HEIGHT */
}

/* LOGO */
.logo img {
  height: 40px;               /* 👈 CONTROL LOGO SIZE HERE */
  width: auto;
  display: block;
}

/* RIGHT SIDE */
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* GET APP TEXT */
.nav-get-app {
  font-size: 14px;
  font-weight: 500;
  color: #0f766e;
  text-decoration: none;
}

.nav-get-app:hover {
  text-decoration: underline;
}

/* CONTACT SALES BUTTON */
.header-cta {
  background: #ff8c00;
  color: #fff;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-get-app {
    display: none; /* clean mobile header */
  }
  .navbar {
    height: 64px;
    gap: 70px;            /* slightly smaller on mobile */
  }

  .logo img {
    height: 160px;
    margin-left:-70px;
    margin-right: 40px;           /* mobile logo size */
  }
}
.step-points {
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
}

.step-points li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}

}