/*
 * Global Stylesheet for Dogsi Landing Page
 *
 * This stylesheet defines a modern, responsive layout inspired by the
 * provided Figma design. It uses CSS variables for consistent colours
 * and spacing, flexbox/grid for layout, and media queries to adapt to
 * various screen sizes. All sections are grouped logically and have
 * generous padding to give the page an airy feel.
 */

/* CSS Variables for colours and spacing */
:root {
    /* Light beige background similar to the Figma mockup */
    --color-bg: #fdf5e9;
    /* Softer green tone inspired by the Figma accents */
    --color-primary: #7ac96f;
    /* Very light green for subtle backgrounds */
    --color-primary-light: #f3faf4;
    /* Pale cream background for secondary sections */
    --color-secondary: #fcf9f1;
    --color-text: #031b34;
    /* Softer grey tone for body text to match Figma */
    --color-muted: #6f7d86;
    --color-border: #e4e4e7;
    --color-white: #ffffff;
    /* Dark accent colour used for newsletter CTA button */
    --color-dark: #243d5a;
    --gap-xs: 0.5rem;
    --gap-sm: 1rem;
    --gap-md: 2rem;
    --gap-lg: 3rem;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow: 0 2px 6px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.06);
    --font-family: "Inter", "SF Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Basic resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--color-bg);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;

}


a {
    color: inherit;
    text-decoration: none;
}
/* Navbar */

   header{
      width: 100%;
      height: 100px;
      /* background-color: red; */
      background-color: var(--color-bg);
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      align-items: center;
      padding: auto;
      position: fixed;
      top: 0;
      z-index: 999;
    }
    nav{
      width: 70%;
      height: 100%;
      /* background-color: yellow; */
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
      align-items: center;
    }
    .logo{
      width: 200px;
      height: 100%;
      /* background-color: blue; */
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .logo img{
      width: 70%;
      height: auto;
    }
    header nav ul{
      width:45%;
      height: 100%;
      /* background-color: purple; */
      display: flex;
      justify-content: space-evenly;
      align-items: center;
    }
    header nav ul li{
      list-style-type: none;
      font-size: 17px;
      font-weight: 600;
      transition: 0.3s all;
    }
    header nav ul li a{
      padding: 5px;
    }
    header nav ul li a:hover{
      color: #74c9a5;
    }
    .login{
      width: 200px;
      height: 100%;
      /* background-color: #767c83; */
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      font-size: 17px;
      font-weight: 600;
    }

    /* ====== added styles for mobile toggle ====== */
    .nav-toggle, .nav-close {
      display: none;
      background: transparent;
      border: none;
      font-size: 24px;
      cursor: pointer;
    }

/* ----- Hero Section ----- */

.hero-section{
    width: 90%;
    height: 75vh;
    /* background-color: #24a144; */
    /* background-color: #24a144; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: auto;
    overflow: hidden;
}
.hero-content{
    width: 45%;
    height: 80%;
    /* background-color: red;/ */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-left: 14rem;
    gap: 2rem;
}
.hero-content h1{
    font-size: 48px;
    text-align: start;
}
.hero-content p{
    font-size: 22px;
    width: 450px;
    color: #6f7d86;
}
.hero-content button{
    padding: 12px 14px;
    background-color: #74c9a5;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    color: #fff;
}
.hero-content button:hover{
    background-color: #59b48e;
    cursor: pointer;
}
.hero-cards{
    width: 55%;
    /* padding-top:50px ; */
    height: 80%;
    padding: 10px;
    /* background-color: #767c83; */
    transform: rotate(15deg);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 99;
    gap: 1rem;
}
.card1{
   width:280px;
    height: 300px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: absolute;
    top: 180px;
    left: 150px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    border-radius: 20px;
    padding: 10px;
    gap: 0.5rem;
}
.card1 img{
    width: 99%;
   height: 60%;
    border-radius: 15px;
    /* background-color: black; */
}
.card2{
    width:280px;
    height: 300px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: absolute;
    top: 20px;
    left: 440px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    border-radius: 20px;
    padding: 10px;
    gap: 0.5rem;
}
.card1 > img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 15px;
}
.card3{
     width:280px;
    height: 300px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: absolute;
    top: 330px;
    left: 440px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    border-radius: 20px;
    padding: 10px;
    z-index: 9;
    gap: 0.5rem;
}
.card3 img{
    width: 99%;
    height: 60%;
    border-radius: 15px;
    /* background-color: black; */
}
.hero-client{
    width: 100%;
    height: 150px;
    /* background-color: blue; */
    margin: auto;
    position: relative;
    top: -200px;
    left: 0;
}
.client{
    width: 75%;
    height: 100%;
    background-color: #74c9a5;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 30px;
    border-radius: 20px ;


}
.client-boxes{
    /* background-color: red; */
    margin: 0 4rem;
    text-align: center;
}
/* Steps section */
.steps-section {
    width: 96%;
    height: 60vh;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
    padding: var(--gap-lg) 0;
}
.steps-grid {
    width: 80%;
    height: 100%;
    /* background-color: blue; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.steps-list {
    width: 100%;
    height: 100%;
    /* background-color: purple; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: var(--gap-md);
}
.step {
    display: flex;
    gap: var(--gap-sm);
    align-items: flex-start;
    position: relative;
    padding-left: 0;
}
.step::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 2.5rem;
    bottom: -2.5rem;
    width: 1px;
    background-color: var(--color-border);
}
.step:last-child::before {
    display: none;
}
.steps-header{
    width: 60%;
    height: auto;
    margin: 30px auto;
    /* background-color: red; */
    font-size: 20px;
}
.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    width: 60px;
}
/* .b3{
    margin-right: 20px;
} */
.b3c{
    margin-right: 20px;
}
.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: #000;
}
.step-content p {
    font-size: 0.95rem;
    color: var(--color-muted);
    max-width: 280px;
}
.steps-image{
    display: flex;
    justify-content: start;
    align-items: center;
    /* background-color: yellow; */
    width: 100%;
    height: 100%;
}
.steps-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    width: 70%;
    height: auto;
}

/* ----- Dogsi Section ------ */

.dogsi-section{
    width: 100%;
    height: 100vh;
    /* background-color: green; */
    background-color: #fffaf3;
    display: flex;
    flex-direction: column;
    /* margin: 120px auto; */
    padding: 0 300px;
}
.dogsi-header{
    width: 100%;
    height: 20%;
    /* background-color: orange; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 50px;
}
.dogsi-header-content{
    width: 60%;
    height: 100%;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1rem;
}
.dogsi-header-content p{
    color: #8a8a8a;
}
.dogsi-btn{
    width: 15%;
    height: 100%;
    /* background-color: yellow; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.dogsi-header button {
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  background-color: #74c9a5;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}
.dogsi-header button:hover{
    background-color: #59b48e;
    cursor: pointer;
}
.dogsi-container{
    width: 100%;
    height: 80%;
    /* background-color: blueviolet; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.dogsi-boxes{
    width: 100%;
    height: 32%;
    /* background-color: #fff9f1; */
    /* background-color: red; */
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}
.dogsi-image{
    width: 300px;
    height: 100%;  
    display: flex;  
    justify-content: center;
    align-items: center;
}
.dogsi-image img{
    width: 100%;
    height: 96%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    margin-left: 10px;
}
.dogsi-content{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    overflow: hidden;
    gap: 2rem;
}
.dogsi-content h2{
    font-size: 30px;
}
.dogsi-content p{
    color: #8a8a8a;
}
/* Testimonials section */
.testimonials-section {
    width: 70%;
    /* background-color: red; */
    margin: 0 auto;
    padding: var(--gap-lg) 0;
}

/* Section subheading styling (used for Testimonials caption) */
.section-subheading {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.testimonials-section .section-heading {
    text-align: center;
    font-size: 2rem;
    margin-bottom: var(--gap-md);
}
.testimonials-grid {
    display: grid;
    /* Allow testimonials to wrap flexibly; Figma shows four cards on large screens */
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--gap-md);
}
.testimonial-card {
    background-color: var(--color-white);
    border-radius: 5px;
    box-shadow: var(--shadow);
    padding: var(--gap-md);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    height: 350px;
    width: 250px;
}
.testimonial-rating img {
    width: 16px;
    height: 16px;
    margin-right: 2px;
    background-color: red;
}
.testimonial-text {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.4;
    margin: var(--gap-sm) 0;
}

/* Star ratings displayed as text characters */
.testimonial-rating {
    color: var(--color-primary);
    font-size: 1rem;
    line-height: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
}
.testimonial-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.author-name {
    font-weight: 600;
    display: block;
}
.author-rating {
    font-size: 0.75rem;
    color: var(--color-primary);
}
.cta-section{
    width: 100%;
    height: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.cta-content{
    width: 70%;
    /* height: 35%; */
    /* background-color: rgba(255, 201, 210, 0.157); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 40px 0px;
    gap: 20px;
  
}

.cta-content > b{
    font-size: 20px;
    color: #7ac96f;
    font-weight:400;
    text-transform: capitalize;
}

.cta-content > h1{
    width: 50%;
    font-size: 40px;
    /* background-color: green; */
    margin: auto;
}
.cta-content > p{
    margin: 0 auto;
    line-height: 25px;
    width: 80%;
}
.cta-btn{
    width: 30opx;
    height: 20%;
    /* background-color: pink; */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    gap: 20px;
}
.store-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    background-color: #000;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: none;
    transition: transform 0.2s ease;
}

.store-btn img {
    width: 20px;
    height: 20px;
}

.cta-images{
    width: 1050px;
    height: auto;
    /* background-color: rgba(255, 201, 210, 0.157); */
}

.cta-image-box{
    width: 100%;
    height:auto;
    /* background-color: yellow; */
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0px;
}

.phone1 {
    width: 20%;
    height: 350px;
    /* border: 1px solid blue; */
    background-image: url("public/overlay-pieces@2x.png");
    background-repeat: no-repeat;
    background-position:center;
    background-size: 100% 100%; 
}
.phone2 {
    width: 20%;
    height: 350px;
    /* border: 1px solid red; */
    background-image: url("public/overlay-pieces3@2x.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%; 

}

.phone3 {
    width: 20%;
    height: 350px;
    /* border: 1px solid red; */
    background-image: url("public/overlay-pieces2@2x.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; 
    background-size: 100% 100%; 

    /* background-size: cover;  */
    
}





/* FAQ Section */
.faq-section {
    width: 70%;
    margin: 0 auto;
    padding: var(--gap-lg) 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-lg);
    align-items: flex-start;
}
.faq-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.faq-info p {
    font-size: 1rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    /* Keep a fixed height so expanding answers don't push the page */
    max-height: 420px;
    overflow-y: auto;
}
.accordion-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--color-white);
}
.accordion-header {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    border: none;
    background: var(--color-white);
    position: relative;
    cursor: pointer;
}
.accordion-header::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    color: var(--color-primary);
}
.accordion-item.active .accordion-header::after {
    content: '−';
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 1rem;
    background-color: var(--color-primary-light);
}
.accordion-item.active .accordion-body {
    max-height: 200px;
    padding-bottom: 1rem;
}
.accordion-body p {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-top: 0.75rem;
}
.contact-btn{
    padding: 12px 14px;
    border: none;
    background-color: #031b34;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
}
/* Newsletter Section */
.newsletter{
    width: 100%;
    height: 70vh;
    /* background-color: red; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.newsletter-card{
    width: 70%;
    height: 300px;
    background-color: #59b48e;
    display: flex;
    flex-direction: row;
    border-radius: 40px;
}
.newsletter-image{
    width: 45%;
    height: 100%;
    /* background-color: #59b48e; */
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* position: relative; */
}
.newsletter-image img{
    width: 300px;
    height: 350px;
    margin-top: -70px;
   
}

.newsletter-content{
    width: 55%;
    height: 100%;
    background-color: #59b48e;
    color: #fff;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
}
.newsletter-email{
    width: 70%;
    height: 50px;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 15px;
}
.newsletter-email input{
    width: 70%;
    height: 40px;
    border: none;
    border-radius: 20px;
    outline: none;
    padding: 5px 15px;
}
.newsletter-email button{
    width: 25%;
    height: 40px;
    border: none;
    border-radius: 10px;
    background-color: #ecdd04;
    color: rgb(0, 0, 0);
    /* font-weight: 600; */
    cursor: pointer;
}


/* footer css start */
/* Footer */
footer{
    width: 100%;
    height: 40vh;
    background-color: red;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    margin-top: 50px;
    padding: 20px 0;
}
.footer{
    width: 75%;
    height: 90%;
    /* background-color: blue; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.footer-brand{
    width: 55%;
    height: 100%;
    /* background-color: purple; */
    display: flex;
    flex-direction: column;
    padding: 10px;
    justify-content: start;
    color: #8d8d8d;
    align-items: start;
    gap: 1.5rem;
}
.footer-brand a img{
    width: 180px;
    height: auto;
}
.footer-brand p{
    width: 350px;
}
.footer-email{
    width: 300px;
    height: auto;
    background-color: white;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 15px;
    border: 1px solid #ececec;
}
.footer-email input{
    padding: 12px 14px;
    border: none;
    border-radius: 20px;
    outline: none;
}
.footer-email button{
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    background-color: #74c9a5;
    color: white;
    cursor: pointer;
}   
.footer-email button:hover{
    background-color: #58b991;
}
.footer-social{
    width: 250px;
    height: 100px;
}
.footer-social img{
    width: 50px;
    height: 50px;
}
.quick-links{
    width: 22%;
    height: 100%;
    /* background-color: yellow; */
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
.quick-links ul li{
    list-style: none;
    margin: 18px 0;
    color: #8d8d8d;
}
.customer-support{
    width: 23%;
    height: 100%;
    /* background-color: #59b48e; */
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}
.customer-support ul li{
    list-style: none;
    margin: 18px 0;
    color: #8d8d8d;
}
.footer-social{
    width: 250px;
    height: 50px;
    /* background-color: pink; */
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: start;
    flex-wrap: nowrap;
}
.footer-social a img{
    width: 25px;
    height: 25px;
}
.footer-social a img:hover{
    transform: scale(1.1);
}

/* footer css end */

@media (max-width: 1540px){
.hero-section{
    width: 90%;
    height: 85vh;
} 
.hero-content{
    /* margin-top: 5px; */
    padding-left: 12rem;
    gap: 1rem;
}
.hero-content h1{
    font-size: 30px;
    width: 400px;
}
.hero-content p{
    font-size: 21px;
    width: 400px;
}

.hero-cards {
    width: 60%;
    /* padding-top:50px ; */
    height:100%;
    padding: 10px;
    /* background-color: #767c83; */
    transform: rotate(15deg);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 99;
    gap: 1rem;
}
.card1{
    width:200px;
    height: 270px;
    top: 50;
    left: 130px;
}
.card2{
   width:200px;
    height: 270px;
    top: 20px;
    left: 340px;
}
.card3{
    width:200px;
    height: 270px;
    top: 310px;
    left: 340px;
}
.hero-client{
    height: 120px;
    top: -120px;
}
.client{
    width: 76%;
}
.client-boxes{
    margin: 0 3rem;
}
/* ----------------------------------- */
.dogsi-section{
    width: 100%;
    height: 100vh;
    /* background-color: green; */
    background-color: #fffaf3;
    display: flex;
    flex-direction: column;
    margin: 120px auto;
    padding: 0px 260px;
}
.dogsi-content{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    overflow: hidden;
    gap: 0.5rem;
}
.dogsi-content h2{
    font-size: 30px;
}
.dogsi-content p{
    color: #8a8a8a;
}
}
@media (max-width: 1300px){
.hero-content{
    padding-left: 8rem;
}

.hero-content h1{
    font-size: 20px;
    /* width: 380px; */
}

.hero-content p{
    font-size: 18px;
    width: 380px;
}

.hero-cards {
    width: 55%;
    /* padding-top:50px ; */
    height: 80%;
    padding: 10px;
    /* background-color: #767c83; */
    transform: rotate(15deg);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 99;
    gap: 1rem;
}
.card1{
    width:200px;
    height: 270px;
    top: 200px;
    left: 50px;
}
.card2{
   width:200px;
    height: 270px;
    top: 40px;
    left: 270px;
    display: flex;
}
.card3{
    width:200px;
    height: 270px;
    top: 320px;
    left: 270px;
}
.hero-client{
    height: 130px;
    top: -130px;
}
.client{
    width: 75%;
    padding-right: 30px;
}
.client-boxes{
    margin: 0 3rem;
}
}
@media (max-width: 992px){
nav{
    width: 100%;
}
.hero-section{
    width: 100%;
}
.hero-content{
    padding-left: 4rem;
    margin-bottom: 100px;
}
.hero-content > h1{
    font-size: 50px;
    width: 350px;
}
.hero-content p{
    font-size: 18px;
    width: 350px;
}
.card1{
    width:190px;
    height: 240px;
    top: 160px;
    left: 40px;
}
.card2{
    width:190px;
    height: 240px;
    top: 0px;
    left: 250px;
    display: flex;
}
.card3{
    width:190px;
    height: 240px;
    top: 280px;
    left: 250px;
}
.hero-client{
    height: 130px;
    top: -180px;
}
.client{
    width: 70%;
    padding-right: 30px;
}
.client-boxes{
    margin: 0 2rem;
}
.steps-image{
    justify-content: center;
}
.steps-image img {
    width: 90%;
}
.step-number {
    font-size: 2rem;
}
.b3c{
    margin-right: 20px;
}
.step-content h3 {
    font-size: 1.1rem;
}
.step-content p {
    font-size: 0.83rem;
    color: var(--color-muted);
    max-width: 280px;
}
.dogsi-section{
    width: 100%;
    padding: 0;
}
.dogsi-image{
    width: 38%;
    height: 100%;  
}
.dogsi-content{
    width: 40%;
    gap: 1rem;
    padding: 20px;
}
.dogsi-content h2{
    font-size: 25px;
}
.dogsi-content p{
    font-size: 12px;
}

.dogsi-header-content {
    padding-left: 100px; 
}

.newsletter-content {
    flex: 1;
}
.newsletter-content h2 {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}
.newsletter-content p {
    font-size: 1rem;
    margin-bottom: var(--gap-sm);
}

/* -----------  */
.cta-images{
    width: 80%;
    height: auto;
    /* background-color: green; */
}

.cta-image-box {
    width: 100%;
    height:auto;
    margin: 0 auto;
  

}

.cta-image-box  > .phone1 {
    width: 33%;
    height: 300px;
}

.cta-image-box  > .phone2 {
    width: 33%;
    height: 300px;
}

.cta-image-box  > .phone3 {
    width: 33%;
    height: 300px;
}

.newsletter-email{
    width: 100%;
    height: 50px;
    padding-right: 3px;
 
}

.newsletter-emai > button{

    font-size:16px;
}
.newsletter-card{
    width: 70%;
    height:90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: 40px;
}
.newsletter-image{
    width: 100%;
    align-items: center;
}
.newsletter-content{
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;    
}


.newsletter-image img{
    width: 315px;
    height:170px;
    margin-top: 10px;
   
}


/* --------------------

/*  footer  */
 .footer-brand{
    width: 60%;
    font-size: 13px;
}
.quick-links ul li{
    font-size: 15px;
}
.customer-support ul li{
    font-size: 15px;
}
.quick-links{
    width: 18%;
}
.customer-support{
  width: 18%;
}


}
@media (max-width: 768px) {
    nav{
    width: 100%;
    justify-content: space-between;
    padding: 0 18px;
  }
  header nav ul,
  header nav .login{
    display: none;
  }
  .nav-toggle{
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  header nav.open{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 65vh;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 25px;
    z-index: 9999;
  }

  header nav.open .nav-toggle{
    display: none;
  }
  header nav.open .nav-close{
    display: flex;
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 28px;
  }

  header nav.open ul{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    /* margin-top: 0px; */
    gap: 0;
  }
  header nav.open ul li{
    font-size: 18px;
    width: 100%;
    text-align: start;
    border-bottom: 1px solid #ebebeb;
  }
  header nav.open ul li a{
    display: block;
    padding: 12px 0;
    width: 100%;
  }
  header nav.open .login{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: -40px;
    gap: 0;
  }
  header nav.open .login a{
    width: 100%;
    text-align: start;
    padding: 12px 0;
    border-bottom: 1px solid #ebebeb;
    display: block;
  }
.hero-section{
    width: 96%;
    height: 130vh;
    flex-direction: column;
    padding: 40px 20px;
}
.hero-content{
    width: 100%;
    height: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    margin-top: 100px;
    gap: 2rem;
}
.hero-content h1{
    text-align: center;
}
.hero-content p{
    text-align: center;
    width: 400px;
}
.hero-cards{
    width: 100%;
    height: 100%;
    padding: 10px;
    /* margin-bottom: 100px; */
    margin-top: 50px
}
.card1{
    width:200px;
    height: 220px;
    top:50px;
    left: 50px;
}
.card2{
    width:200px;
    height: 220px;
    top: -100px;
    left: 270px;
    display: flex;
}
.card3{
     width:200px;
    height: 220px;
    top: 130px;
    left: 270px;
}
.hero-client{
    width: 100%;
    height: 150px;
    top: 0px;
    left: 0;
}
.client{
    width: 100%;
}
.steps-section {
    margin-top: 50px;
    height: 75vh;
}
.steps-grid {
    width: 90%;
    display: flex;
    flex-direction: column;
}
.steps-list {
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.steps-image{
    justify-content: center;
    align-items: center;
    width: 80%;
}
.steps-image img {
    width: 70%;
}
.dogsi-section{
    width: 100%;
    height: auto;
}
.dogsi-header{
    height: 10%;
    }
.dogsi-boxes{
    flex-direction: column;
    border: none;
}
.dogsi-btn{
    width: 30%;
}
.dogsi-image{
    width: 60vw;
    height: 60vh;  
}
.dogsi-image img{
    width: 100%;
    height: 100%;
}
.dogsi-content{
    width: 100%;
    gap: 0.50rem;
    align-items: center;
}
.dogsi-content h2{
    font-size: 30px;
    text-align: center;
}
.dogsi-content p{
    font-size: 14px;
    color: #8a8a8a;
}
.faq-grid {
    display: flex;
    flex-direction: column;
}

.dogsi-header-content {
    padding-left: 100px; 
}
.dogsi-header-content p {
    padding-bottom: 80px; 
}

/* cta section text-contetn ------------------------ */
.cta-content{
    width: 70%;
    height: 25%;
  
  
}

.cta-content > b{
    font-size: 10px;
    /* color: #7ac96f; */
    font-weight:700;
    text-transform: capitalize;
}

.cta-content > h1{
    width: 100%;
    font-size: 18px;
    /* background-color: green; */
    margin: auto;
}

.cta-content > p{
    margin: 0 auto;
    font-size: 11px;
    line-height: 25px;
    width: 100%;
}

.cta-btn{
    width: 100%;
 
}






/* ------------------- section img ------------------------- */
.cta-images{
    width: 80%;
    height: auto;
    /* background-color: green; */
}

.cta-image-box {
    width: 100%;
    height:auto;
    margin: 0 auto;
  

}

.cta-image-box  > .phone1 {
    width: 33%;
    height: 150px;
}

.cta-image-box  > .phone2 {
    width: 33%;
    height: 150px;
}

.cta-image-box  > .phone3 {
    width: 33%;
    height: 150px;
}


/*  footer  */
footer{
    height: auto;
}
.footer{
    width: 75%;
    height: auto;
    flex-direction: column;
}
.footer-brand{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}
.quick-links{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.customer-support{
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}




}
@media (max-width: 540px) {
    .hero-content{
    margin-top: 70px;
}
.card1{
     width:180px;
    height: 200px;
    top: 0px;
    left: 0px;
}
.card1 h4{
    font-size: 12px;
}
.card1 p{
    font-size: 10px;
}
.card2{
     width:180px;
    height: 200px;
    top: -90px;
    left: 210px;
    display: flex;
}
.card2 h4{
    font-size: 12px;
}
.card2 p{
    font-size: 10px;
}
.card3{
    width:180px;
    height: 200px;
    top: 120px;
    left: 210px;
}
.card3 h4{
    font-size: 12px;
}
.card3 p{
    font-size: 10px;
}
.hero-client{
    width: 100%;
    height: 150px;
    top: 0px;
    left: 0;
}
.client{
    width: 100%;
}
.client-boxes{
    /* background-color: red; */
    margin: 10px;
}
.dogsi-header-content {
    padding-left: 100px; 
}
.dogsi-header-content h1{
    font-size: 20px;
}

.dogsi-header-content p {
font-size: 13px;
}
.steps-image{
    justify-content: center;
    align-items: center;
    width: 80%;
}
.steps-image img {
    width: 90%;
}
.dogsi-section{
    width: 100%;
    height: 180vh;
    padding: 15px;
}
.dogsi-container {
    height: 1100px;
}
}

/* === Hero card: true 4:3 images (no stretch) === */
.hero-cards .card1 img,
.hero-cards .card2 img,
.hero-cards .card3 img{
  width: 100% !important;     /* override earlier width:99% */
  height: auto !important;    /* override earlier height:60% */
  aspect-ratio: 4 / 3;        /* enforce 4:3 frame */
  object-fit: cover;          /* crop nicely when needed */
  display: block;
  border-radius: 15px;        /* keep your look */
}

/* === Card title with gender icon === */
.card-name{
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
  /* size: match your current design on desktop; mobile adjusted below */
  font-size: 20px;
  margin: 8px 0 4px;
}

/* gender icon images */
.gender-icon{
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
}

/* --- Mobile-only fine tuning (keeps layout intact) --- */
@media (max-width: 768px){
  .card-name{
    font-size: 14px;    /* smaller so it never overwhelms the card */
    gap: 4px;
    margin: 6px 0 2px;
  }
  .gender-icon{
    width: 1px;
    height: 1px;
  }
}
/* ===== HERO CARDS — FIXED PHOTOS + GENDER ICONS ===== */

/* Only the MAIN dog photo (direct child of the card) gets the 4:3 treatment */
.card1 > img,
.card2 > img,
.card3 > img {
  width: 100% !important;       /* override older width:99% */
  height: auto !important;      /* kills the old height:60% */
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

/* Make sure tiny images in headings (gender icon) don't inherit big photo rules */
.hero-cards h4 img {
  width: auto !important;
  height: auto !important;
}

/* Title row with gender icon */
.card-name {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
  font-size: 20px;              /* desktop size — change if you want */
  margin: 8px 0 4px;
}

/* Gender icon image size */
.card-name .gender-icon {
  width: 16px !important;       /* desktop */
  height: 16px !important;
  object-fit: contain;
  vertical-align: middle;
}

/* Paragraph under name */
.card1 p, .card2 p, .card3 p {
  font-size: 14px;
  line-height: 1.25;
  margin: 0;
  color: #5a6573;
}

/* Mobile: smaller text and icon so it doesn't overwhelm */
@media (max-width: 768px) {
  .card-name {
    font-size: 14px;
    gap: 4px;
    margin: 6px 0 2px;
  }
  .card-name .gender-icon {
    width: 12px !important;
    height: 12px !important;
  }
}

/* (Optional) if you want extra-small phones even smaller: */
@media (max-width: 390px) {
  .card-name .gender-icon {
    width: 10px !important;
    height: 10px !important;
  }
}

.card-name .gender-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .card-name .gender-icon {
    width: 12px;
    height: 12px;
  }
}
.card-name .gender-icon {
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
  .card-name .gender-icon {
    width: 12px;
    height: 12px;
  }
}


