:root{
    /*--container width --*/
    --container-width:70%;

    /*--color palette --*/ 
     --color-xgrey:#E0E0E0;
    ---color-xwhite:#FFFFFF;
    --color-yelow:#F7C600; 
    --color-jack:#f3f3f3;
    --color-primary:#9859e3;
    --color-primary-rgb: 152,89,227;
    --color-primary-accent:#542ac3;
    --color-secondary:#f56691;
    --color-secondary--accent:#fe7ea9;
    --color-white:#ffffff;
    --color-black:#000000;
    --color-grey:#525252;
    --color-grey-rgb: 132,145,165;
    --primary-linear-gradient: linear-gradient(90deg,
     rgb(4, 3, 37)0%,
    rgb(89, 43, 150)25%,
     rgb(174, 83, 227)100%);
    --secondary-linear-gradient: linear-gradient(90deg,
    rgba(55,99,151,1) 0%,
    rgba(254,126,169,1) 100%); 
    ----box-shadow:rgba(0, 0, 0, 0.158) 0px 4px 12px; 
    --xprimary-linear-gradient: linear-gradient(90deg,
    rgb(136, 32, 221)0%,
     rgb(201, 59, 214)100%); 
     --xxprimary-linear-gradient: linear-gradient(90deg,
    rgb(129, 47, 177)0%,
     rgb(179, 40, 207)100%);

    --body-font: 'Mulish', sans-serif;
    
} 
/* =========================
   DARK MODE (PROFESSIONAL)
========================= */


/*--Import Google Font --*/ 
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;800;900&display=swap');
/*--font-family: 'Mulish', sans-serif;--*/

/*--Base Styles --*/
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: var(--body-font);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

a{
    text-decoration: none;
}

ul{
    list-style: none;
} 

/*--layout --*/
.container{
    width: var(--container-width);
    margin: 0 auto;
} 

/*--Reusable Components --*/
section{
    padding-top: 4rem;
    padding-bottom: 4rem;
} 

.btn{
   display: inline-block;
    text-decoration: none;
    color:#fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 0.9rem;
    background: transparent;
    position: relative;
    cursor: pointer; 
    border-radius: 7px; 
    margin-top: 1rem;
} 
.btn-secondary{
    background: var(--primary-linear-gradient);
    color: var(--color-white); 
}

.btn-primary{
    background: var(--color-xgrey);
    color: var(--color-black);
}
.btn-primary:hover{
    background: var(--xprimary-linear-gradient);
    color: var(--color-white);
} 


.tag{
    display: block;
    padding: 3px 15px;
    margin: 20px 0 20px 0;
    cursor: pointer;
    border-radius: 50px;
    width: fit-content;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
} 

header {
    background: var(--primary-linear-gradient);
} 
/* ===============================
   LOGO FIX – FLEX SAFE
================================ */

/* ===============================
   LOGO → TEXT SPACING FIX
================================ */

/* ===============================
   LOGO SPACING – FORCE FIX
================================ */

.nav__logo {
  display: flex !important;
  align-items: center;  /* 🔥 strong spacing */
}
 .lo8{
    float: left;
    margin-top: 13px;
    margin-left :20px;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  height: 5rem;
}


 .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    padding-left: 15% !important;
    padding-right: 15% !important;
    z-index: 999;
    background:var(--color-primary-accent);
    padding: 2rem;
    box-shadow: rgba(0,0,0,0.1) 0px 4px 6px -1px, rgba(0,0,0,0.06)0px 2px 4px 1px;
 }
 .nav__logo{
    color: var(--color-yelow);
 }
 .nav__menu{
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: flex-end;
 } 

 .nav__link{
    color: var(--color-white);
 } 

 .mb-show{
    display: none;
 } 
 .show{
    right: 0;
 }
 
 /*--home section --*/
 .home{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
 }

 .home__data, .home__img{
    flex: 50%;
 } 

 .home__image img{
    border-radius: 10px;
    height: auto; 
    
 }

 .home__data-title{
    font-size: 2.2rem;
    color: var(--color-white);
 }  
 strong{
    font-weight: 900;
 } 

 .Atas{
    font-weight: 900;
 }

 .home__data-title span{
    font-weight: 200;  
 }  

 .home__data-desc{
    margin-top: 2rem;
    color: var(--color-white);
    line-height: 2;
 } 

 .home__img img{
    width: 100%;
    height: auto;
    
 }

    /*--about section --*/ 
    .about {  
        background-color: var(--color-jack);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .about__container{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2.5rem;
    }  

    .about__img img{
        height: auto;
        border-radius: 10px;
    } 

    .about__tag{
        color: var(--color-primary);
        background-color: rgba(var(--color-primary-rgb),0.2);
    } 

    .about__data-title{ 
        color: var(--color-black);
        font-size: 2rem;
        font-weight: 200;
    } 

    .about__data-desc{
        font-size: 0.8rem; 
        padding: 10px 0 10px 0;
    } 

    .about__data-quote{
        font-size: 0.9rem;
        color: var(--color-grey);
        padding: 10px 0 10px 0;
    } 

    .about__data-quote i{
        font-size: 1.5rem;
        color: var(--color-secondary);
    } 

    /*--Why choose us section --*/ 
    .whychooseus {  
        background-color: var(--color-jack);
        padding-top: 2rem;
        padding-bottom: 2rem;
    }  

   

    .whychooseus__tag span{
        color: var(--color-primary);
        background-color: rgba(var(--color-primary-rgb),0.2);
        margin: auto;
    } 

    .whychooseus__title{
        font-size: 2.5rem;
        font-weight: 200;
        text-align: center;
        margin-top: 1rem;
    }  

    .whychooseus__data {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 3rem;
        margin-bottom: 3rem;
    } 

    .whychooseus__card{
      flex-basis:31%;
      background:var(--color-white);
      border-radius:10px;
      margin-bottom: 5%;
      padding:20px 12px;
      box-sizing: border-box;
      transition:0.5s; 
      text-align: center;
    }   

    .whychooseus__card i{
        display: inline-block;
        font-size: 3rem;
        padding: 15px;
        color:var(--color-primary); 
    } 

    .whychooseus__card-title{
        font-size: 1.5rem;
        font-weight: 300;
    } 
    
    .whychooseus__card-desc {
        font-size: 0.8rem;
        padding: 10px 0px 14px 0;
        color: var(--color-grey);
    }  


/*--services section --*/
.services{
    background: var(--primary-linear-gradient);
} 

.services__title { 
    font-size: 2.5rem; 
    text-align: center;
    font-weight: 200;
    color: var(--color-white); 
    margin-top: 1.5rem;
}

   .service__tag span{
        color: var(--color-white);
        background-color: rgba(255, 255, 255, 0.2);
        margin: auto;
    }  

    .services__desc {
        text-align: center;
        color: var(--color-white);
        margin-top: 1rem;
        line-height: 2;
    }  

    .pet h3{
        color: var(--color-xgrey);
    }

    .offer-row { 
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 20px;
}

.offer-row .offer-col {
    width: 300px;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgb(0, 0, 0);
}

.offer-col p { 
    margin-top: 0.5rem;
    font-size: 15px;
    color: var(--color-white);
    line-height: 1.6;
} 

.offer-col{
    flex-basis:31%;
    background: var(--xxprimary-linear-gradient);
    border-radius:10px;
    margin-bottom: 5%;
    padding:20px 12px;
    box-sizing: border-box;
    transition:0.5s;
} 

.offer-col:hover{
   box-shadow: 0 0 20px rgb(207, 207, 207);
} 

     .offer-col i{
        display: inline-block;
        font-size: 3rem;
        padding: 15px;
        color:var(--color-yelow);
    }  

/*--pricing section --*/ 

/* ===== PRICING SECTION ===== */
.pricing {
  background-color: var(--color-jack);
  padding: 4rem 1rem;
} 

.pricing__tag {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.pricing__tag .tag {
  display: inline-block;
  color: var(--color-primary);
  background-color: rgba(var(--color-primary-rgb), 0.2);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}


.pricing__title {
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
}

/* ===== CARD GRID ===== */
.pricing__data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}


/* ===== CARD ===== */
.pricing__card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ===== CARD TEXT ===== */
.pricing__card-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.pricing__card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-grey);
  margin-bottom: 2rem;
}

/* ===== BUTTON ===== */
.pricing__card .btn {
  margin-top: auto;
  align-self: center;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
}
 

/*--contact page*/
.contact{
    background: var(--primary-linear-gradient);
}

.contact__tag span {
    color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    text-align: center;
} 

.contact__title{
    margin-top: 20px;
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--color-white);
} 

.contact__form{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 20px;
    padding:20px 0;
} 

.contact__form >input:not(.btn) {
    height:50px;
} 

.contact__form > textarea {
    resize: none;
    padding-top: 10px;
} 

.contact__form >input:not(.btn),
.contact__form >textarea{
    width: 60%;
    border: 1px solid var(--color-secondary);
    border-radius: 15px;
    outline: none;
    text-indent: 10px;
} 

.contact__button-wrapper {
    display: flex;
    width: 48%;
} 

.contact__btn {
    border: none;
} 
.footer{
    background-color: var(--color-jack);
}

/*footer*/ 
.footer__container{ 
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.footer__container,
.footer__navgation,
.footer__links{
    display: flex;
    justify-content:space-evenly;
    gap: 2.5rem;
    flex: 25%;
}

.footer__logo span{
    color: var(--color-secondary);
} 

.footer__text {
    padding-top: 2rem;
} 

.footer__navgation h2,
.footer__contact h2{
    font-weight: 300;
    padding-bottom: 1rem;
} 
 
.footer__links {
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links > a{
   color: var(--color-black);
} 

.footer__contact{
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
} 

.footer__social > a{
    padding-right: 10px; 
    color: var(--color-secondary);
} 

.footer__copyright{
    text-align: center;
    padding: 20px 0;
    margin-top: 10px;
    border-top: 1px solid var(--color-grey);
} 

.footer__copyright h2{
    font-size: 20px;
} 

.footer__copyright p{
    margin-top: 5px;
    font-size: 13px;
}


@media screen and (max-width: 400px){  
    .theme-toggle {
    z-index: 999;
    background-color: #18181f;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 4px 12px;
  }

.nav__link:hover::after {
  width: 100%;
}
    .nav__logo{
        font-size: 15px;
    }
    .nav__menu{
        position: fixed;
        right: -80%;
        width: 80%;
        height: 100%;
        z-index: 1;
        flex-direction: column;
        justify-content: flex-start;
        background-color: var(--color-white);
        top: 5rem;
        padding: 20px;
        transition: .5s;
    }

    .show {
        right:0;
    } 

    .mb-show{
        display: inline-block;
        color: var(--color-white);
        border: 1px solid var(--color-white);
        padding: 5px 10px;
        cursor: pointer;
    } 

    .nav__link {
       color: var(--color-primary);
    }

    .home {
        flex-direction: column-reverse;
    } 

    .home__data-title {
        font-size: 2rem;
    } 
    
    .home__image{
        width: 200;
    }

    .about__container {
       flex-direction: column-reverse; 
    }

    .about__data-title{
        font-size: 2rem;
    } 

    .whychooseus__title{
        font-size: 2rem;
    } 

    .whychooseus__data{
        flex-direction: column;
        row-gap: 2rem;
    } 

    .services__title{
        font-size: 2rem;
    } 
       .offer-row {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .offer-col {
        text-align: left;
        margin: auto;
        max-width: 400px;
    } 

    .contact__form input:not(.btn),
    .contact__form textarea{
        width: 100% !important;
    } 
    
    .footer__container,
    .footer__navgation,
    .footer__links{
        flex-direction: column;
    } 

} 

  @media screen and (max-width: 750px){
      .theme-toggle {
    z-index: 999;
    background-color: #18181f;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 4px 12px;
  }
         .nav__logo h2{
        font-size: 15px;
    } 
    .lo8{ 
        margin-bottom: 26px; 
        width: 35px;
    }
         .nav__menu{
        position: fixed;
        right: -80%;
        width: 80%;
        height: 100%;
        z-index: 1;
        flex-direction: column;
        justify-content: flex-start;
        background-color: var(--color-white);
        top: 5rem;
        padding: 20px;
        transition: .5s;
    }

    .show {
        right:0;
    } 

    .mb-show{
        display: inline-block;
        color: var(--color-white);
        border: 1px solid var(--color-white);
        padding: 5px 10px;
        cursor: pointer;
    } 

    .nav__link {
       color: var(--color-primary);
       font-size: 10px;
    }

    .home {
        flex-direction: column-reverse;
    } 

    .home__data-title {
        font-size: 2rem;
    } 
    
    .home__image{
        width: 200;
    }

    .about__container {
       flex-direction: column-reverse; 
    }

    .about__data-title{
        font-size: 2rem;
    } 

    .whychooseus__title{
        font-size: 2rem;
    } 

    .whychooseus__data{
        flex-direction: column;
        row-gap: 2rem;
    } 

    .services__title{
        font-size: 2rem;
    } 
       .offer-row {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .offer-col {
        text-align: left;
        margin: auto;
        max-width: 400px;
    } 

    .contact__form input:not(.btn),
    .contact__form textarea{
        width: 100% !important;
    } 
    
    .footer__container,
    .footer__navgation,
    .footer__links{
        flex-direction: column;
    } 

    }

    /* NAV BAR – normal state */
#header {
  position: relative;
}

/* Sticky NAV only */
.nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-primary-accent); /* your color */
  z-index: 999;
  padding: 1rem 15%;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 20px;
  animation: slideDown 0.35s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.nav__link {
  position: relative;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--color-yelow);
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: var(--color-yelow);
}

.nav__link:hover::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .nav.sticky {
    padding: 1rem;
  }
} 


.csr__data-desc{
    margin: auto;
    font-size: 15px;
    margin-top: 1rem;
} 
.csr__data-desc1 {
   margin-top: 1rem;
}
.csr{
    background: var(--color-jack);
} 

  .csr__data-title{ 
        color: var(--color-black);
        font-size: 2rem;
        font-weight: 200;
    }  



/* =====================================================
/* =========================*/
/* =========================
   DARK MODE — CLEAN & CORPORATE
========================= */
/* =====================================================
   FINAL DARK MODE — CLEAN, CORPORATE, MOBILE READY
===================================================== */

/* Smooth transitions */
*,
*::before,
*::after {
  transition: background-color 0.35s ease,
              color 0.35s ease,
              border-color 0.35s ease;
}

/* Dark theme variables */
body.dark-theme {
    --color-primary:#9859e3;
  --color-xwhite: #0b0b10;
  --color-xgrey: #121218;
  --color-jack: #18181f;

  --color-white: #ffffff;
  --color-black: #ffffff;
  --color-grey: #c9c9d1;

  /* Remove all purple gradients */
  --primary-linear-gradient: linear-gradient(180deg, #0b0b10 0%, #121218 100%);
  --secondary-linear-gradient: linear-gradient(180deg, #0b0b10 0%, #121218 100%);

  background-color: var(--color-xwhite);
  color: var(--color-grey);
}

/* Force all sections dark */
body.dark-theme section,
body.dark-theme header,
body.dark-theme footer,
body.dark-theme main,
body.dark-theme article {
  background-color: var(--color-xwhite);
}

/* Cards / boxes — NO white, NO purple */
body.dark-theme .whychooseus__card,
body.dark-theme .box,
body.dark-theme .service,
body.dark-theme .pricing__card,
body.dark-theme .content-box {
  background-color: var(--color-jack) !important;
  color: var(--color-grey);
  box-shadow: rgba(0, 0, 0, 0.6) 0px 6px 18px;
}

/* Titles & text */
body.dark-theme h1,
body.dark-theme h2,
body.dark-theme h3,
body.dark-theme h4,
body.dark-theme h5,
body.dark-theme h6 {
  color: #ffffff;
}

body.dark-theme .nav__logo h2 {
  color: #e7af2c;
}


body.dark-theme p,
body.dark-theme li,
body.dark-theme span {
  color: #c9c9d1;
}

/* Links */
body.dark-theme a {
  color: #bda6ff;
}
body.dark-theme a:hover {
  color: #ffffff;
}

/* Navbar & footer */
body.dark-theme .nav,
body.dark-theme .footer {
  background-color: #0b0b10;
  border-bottom: 1px solid #1f1f2a;
}

/* Buttons & forms */
body.dark-theme button,
body.dark-theme .btn {
  background-color: #18181f;
  color: #ffffff;
  border: 1px solid #2a2a35;
}

body.dark-theme input,
body.dark-theme textarea,
body.dark-theme select {
  background-color: #121218;
  color: #ffffff;
  border: 1px solid #2a2a35;
}

body.dark-theme input::placeholder {
  color: #8f8f9b;
}

/* =========================
   DARK MODE TOGGLE BUTTON
========================= */
.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--color-white);
}

/* Mobile floating toggle */
@media (max-width: 700px) {
  .theme-toggle {
    z-index: 999;
    background-color: #18181f;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 4px 12px;
  }
}

/* Accessibility */
.theme-toggle:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
} 

/* =========================================
   DARK MODE — SERVICES SECTION (NO PURPLE)
========================================= */

body.dark-theme .services {
  background-color: #000000; /* full black background */
}

/* Service cards */
body.dark-theme .offer-col {
  background: #111111 !important; /* dark grey card */
  border: 1px solid #222222;
  box-shadow: rgba(0, 0, 0, 0.7) 0px 10px 25px;
}

/* Card hover — subtle lift, no color change */
body.dark-theme .offer-col:hover {
  box-shadow: rgba(0, 0, 0, 0.9) 0px 18px 40px;
  transform: translateY(-4px);
}

/* Titles */
body.dark-theme .offer-col h3 {
  color: #ffffff;
}

/* Text */
body.dark-theme .offer-col p {
  color: #cfcfcf;
}

/* Icons — KEEP original colors */
/* =========================================
   DARK MODE — SERVICES ICON COLOR
========================================= */

body.dark-theme .offer-col i {
  color: #9859e3;
} 

/* Dark mode buttons */
body.dark-theme .btn-primary {
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid #2a2a2a;
}

/* Hover color — professional accent */
body.dark-theme .btn-primary:hover {
  background: #0ea5e9; /* cyan-blue */
  color: #ffffff;
  border-color: #0ea5e9;
}

body.dark-theme textarea {
  border: 1px solid #2a2a2a;
  color: #ffffff;
}

body.dark-theme textarea::placeholder {
  color: #aaaaaa;
}

body.dark-theme textarea:focus {
  border-color: #9859e3;
}

/* =========================================
   NAVBAR LOGO → LINKS SPACING
========================================= */

/* =========================================
   FIX LOGO TEXT OVERLAP
========================================= */

/* ===============================
   NAV LOGO FIX (NO OVERLAP)
================================ */

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;              /* space between logo & text */
  white-space: nowrap;   /* prevents line break */
}

/* Reset heading defaults */
.nav__logo h2 {
  margin: 0;
  line-height: 1.2;
}

.nav__logo {
  margin-right: 40px;
}

@media (max-width: 768px) {
  .nav__logo h2 {
    font-size: 15px;
  }

  .nav__logo {
    margin-right: 0;
  }
}


/* =========================================
   FIX WHITE NAV BAR IN DARK MODE (MOBILE)
========================================= */

body.dark-theme .nav__menu {
  background-color: #0b0b10 !important;
}

body.dark-theme .nav__link {
  color: #ffffff;
}

body.dark-theme .nav__link:hover {
  color: var(--color-yelow);
}

/* ===============================
   THEME TOGGLE INSIDE NAV MENU
================================ */

.nav__theme {
  display: flex;
  align-items: center;
}

/* Button reset */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-white);
  transition: background 0.3s ease, transform 0.2s ease;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* Icon size */
.theme-toggle i {
  font-size: 1.2rem;
}

/* ===============================
   MOBILE NAV MENU SUPPORT
================================ */

@media (max-width: 768px) {
  .nav__theme {
    margin-top: 1rem;
  }

  body.dark-theme .theme-toggle {
    color: #ffffff;
  }
}
 

/* =====================================
   MOBILE LIGHT MODE ICON VISIBILITY FIX
===================================== */
@media (max-width: 768px) {
  /* Light mode ONLY */
  body:not(.dark-theme) .nav__menu .theme-toggle {
    color: #000000; /* black icon */
  }

  body:not(.dark-theme) .nav__menu {
    background-color: #ffffff; /* keep menu white */
  }
}




@media (max-width: 768px) {
  .nav__logo {
    gap: 18px !important;
  }

  .lo8 {
    width: 36px;
  }
}


/* =========================================
   FOOTER LOGO COLOR — DARK MODE ONLY
========================================= */
body.dark-theme .footer__logo span {
  color: #e7af2c !important;
}




@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}


      @media screen and (max-width: 1024px){
          .theme-toggle {
    z-index: 999;
    background-color: #18181f;
    box-shadow: rgba(0, 0, 0, 0.6) 0px 4px 12px;
  }
           .nav__logo h2{
        font-size: 20px;
    } 
    .lo8{ 
        margin-bottom: 26px;
        width: 35px;
    }
         .nav__menu{
        position: fixed;
        right: -80%;
        width: 80%;
        height: 100%;
        z-index: 1;
        flex-direction: column;
        justify-content: flex-start;
        background-color: var(--color-white);
        top: 5rem;
        padding: 20px;
        transition: .5s;
    }

    .show {
        right:0;
    } 

    .mb-show{
        display: inline-block;
        color: var(--color-white);
        border: 1px solid var(--color-white);
        padding: 5px 10px;
        cursor: pointer;
    } 

    .nav__link {
       color: var(--color-primary);
    }

    .home {
        flex-direction: column-reverse;
    } 

    .home__data-title {
        font-size: 2rem;
    } 
    
    .home__image{
        width: 200;
    }

    .about__container {
       flex-direction: column-reverse; 
    }

    .about__data-title{
        font-size: 2rem;
    } 

    .whychooseus__title{
        font-size: 2rem;
    } 


    .services__title{
        font-size: 2rem;
    } 

    .contact__form input:not(.btn),
    .contact__form textarea{
        width: 100% !important;
    } 
    

        
    }  
     .btn-SRV a{
    display: inline-block;
    padding: 14px 34px;
    border-radius: 30px;
    background: var(--color-xgrey);
    color: var(--color-primary-accent);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
     } 

     .btn-SRV a:hover{
       background: var(--xprimary-linear-gradient); 
    color: var(--color-white);
     }
     
     /* ===============================
   SERVICES "GET QUOTE" BUTTON FIX
================================ */

.btn-SRV {
  width: 100%;
  margin-top: 1rem;       /* push it down */
  display: flex;
  justify-content: flex-start; /* move to left */
}

.btn-SRV a {
  padding: 18px 44px;     /* make button bigger */
  font-size: 16px;
  font-weight: 600;
}


     .btn-prc a{
      margin-top: 2rem;
    display: inline-block;
    padding: 14px 34px;
    border-radius: 30px;
    background: var(--color-xgrey);
    color: var(--color-primary-accent);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
     } 

     .btn-prc a:hover{
       background: var(--xprimary-linear-gradient); 
    color: var(--color-white);
     } 


         .btn-homa a{
      margin-top: 2rem;
    display: inline-block;
    padding: 14px 34px;
    border-radius: 30px;
    background: var(--color-xgrey);
    color: var(--color-primary-accent);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
     } 

     .btn-homa a:hover{
       background: var(--xprimary-linear-gradient); 
    color: var(--color-white);
     } 



     .btn-home a{
      margin-top: 2rem;
    display: inline-block;
    padding: 14px 34px;
    border-radius: 30px;
    background: var(--color-white);
    color: var(--color-primary-accent);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
     } 

     .btn-home a:hover{
       background: var(--xprimary-linear-gradient); 
    color: var(--color-white);
     } 

     /* =========================================
   HOME BUTTON — DARK MODE HOVER FIX
   (MATCHES OTHER BUTTONS)
========================================= */
body.dark-theme .btn-home a {
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid #2a2a2a;
}

body.dark-theme .btn-home a:hover {
  background: #0ea5e9;   /* same as other buttons */
  color: #ffffff;
  border-color: #0ea5e9;
}
body.dark-theme .btn-homa a {
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid #2a2a2a;
} 

body.dark-theme .btn-homa a:hover {
  background: #0ea5e9;   /* same as other buttons */
  color: #ffffff;
  border-color: #0ea5e9;
} 



body.dark-theme .btn-SRV a {
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid #2a2a2a;
}

body.dark-theme .btn-SRV a:hover {
  background: #0ea5e9;   /* same as other buttons */
  color: #ffffff;
  border-color: #0ea5e9;
} 

body.dark-theme .btn-prc a {
  background: #1a1a1a;
  color: #ffffff;
  border: 1px solid #2a2a2a;
}

body.dark-theme .btn-prc a:hover {
  background: #0ea5e9;   /* same as other buttons */
  color: #ffffff;
  border-color: #0ea5e9;
}



@media (max-width: 768px) {
  .btn-SRV {
    justify-content: center;
  }
} 

h3{
  margin-top: 1rem;
  margin-bottom:0.5rem ;
}

.company p{
  
  font-weight: bold;
} 

.crs__data-desccc{
  margin-top: 0.5rem;
}