:root {
  --dark-magenta: #9a1875;
  --light-magenta: #dd32ad;
  --azure-blue: #5d9eda;
  --blue: #345e91;

  --text-dark: #2b2b2b;
  --text-light: #666;
  --bg-light: #faf7fc;
  --glass-bg: rgba(255, 255, 255, 0.68);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Arial, sans-serif;
    background: #fff;
    color: var(--dark-blue);
    line-height: 1.6;
        width: fit-content;
}
.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
       background: #345e91;
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    left: 0;
}
.menu-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
}

header {
width: 100%;
background: #fff;
padding: 15px 20px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #eee;
position: sticky;
top: 0;
z-index: 999;
}


.logo { font-size: 22px; font-weight: bold; }


nav ul {
display: flex;
gap: 20px;
list-style: none;
}


nav ul li a {
text-decoration: none;
color: #000;
font-size: 16px;
}


/* Mobile Toggle Button */
.menu-btn {
display: none;
font-size: 28px;
cursor: pointer;
}


/* Mobile Menu */
@media (max-width: 768px) {
nav ul {
position: absolute;
top: 70px;
left: 0;
width: 100%;
background: #fff;
display: none;
flex-direction: column;
padding: 20px 0;
border-bottom: 1px solid #ddd;
}


nav ul.show {
display: flex;
}


}
.nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
}
.nav a:hover {
    color: #f0a500;
}
/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none; 
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #fff; 
}

@media (max-width: 480px) {
    .nav {
        display: none; 
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 70px; 
        right: 0;
        width: 200px;
        padding: 15px;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
  
    .nav a {
        color: #000;
        margin-left: 0;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }
    .nav a:last-child {
        border-bottom: none;
    }
    
    .menu-toggle {
        display: block;
    }
  
    .nav.show {
        display: flex;
    }
}
/*hero */
.hero-wrapper {
    display: flex;
    gap: 40px;
    padding: 120px 20px;
    align-items: center;
    max-width: 1400px;
    margin: auto;
    flex-wrap: wrap;
}
.hero-gallery {
  width: 45%;
  min-width: 320px;
}

.hero-main-img img {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: .4s ease-in-out;
}

.hero-main-img img:hover {
  transform: scale(1.02);
}

.hero-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.hero-thumb {
  width: 85px;
  height: 85px;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid #e0d8e9;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: .3s;
}

.hero-thumb:hover {
  transform: translateY(-3px);
  border-color: var(--dark-magenta);
}

.hero-content {
  width: 50%;
  min-width: 340px;
}

.hero-heading {
  font-size: 38px;
  font-weight: 900;
  color: var(--dark-magenta);
  letter-spacing: 0.3px;
}

.hero-subtext {
  font-size: 20px;
  color: var(--text-light);
  margin: 12px 0;
  line-height: 1.5;
}

.hero-info {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.hero-points li {
  margin-bottom: 7px;
  color: #333;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin: 20px 0;
}

.hero-btn-fill {
  background: linear-gradient(90deg, var(--dark-magenta), var(--light-magenta));
  padding: 14px 28px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 4px 12px rgba(154,24,117,0.3);
}

.hero-btn-fill:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(154,24,117,0.45);
}

.hero-btn-outline {
  background: var(--blue);
  padding: 14px 26px;
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: .3s;
}

.hero-btn-outline:hover {
  background: var(--azure-blue);
}

.hero-trust {
  font-size: 15px;
  color: #666;
  margin-top: 8px;
}


/* benifits */

.benefits-section {
  padding: 70px 20px;
  background: #f9f3fc;;
  text-align: center;
}

.benefits-title {
  font-size: 34px;
  font-weight: 900;
  color: var(--dark-magenta);
}

.benefits-subtext {
  max-width: 720px;
  margin: 10px auto 40px auto;
  color: #666;
  font-size: 18px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.benefit-card {
  background: var(--glass-bg);
  padding: 28px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
 border: 1px solid #eee;
  transition: .35s ease;
      border-bottom: 4px solid var(--light-magenta);
}

.benefit-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
       border-color: var(--light-magenta);

}

.benefit-icon {
  font-size: 40px;
  color: var(--blue);
  margin-bottom: 12px;
}

.benefit-heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-magenta);
}

.benefit-text {
  font-size: 15px;
  color: #555;
  margin-top: 5px;
}


/* services */

.services-mix-section {
  padding: 80px 25px;
  text-align: center;
  background: #fff;
}

.services-mix-title {
  font-size: 34px;
  color: var(--blue);
  font-weight: 900;
}

.services-mix-subtext {
  font-size: 18px;
  color: #555;
  margin-bottom: 45px;
}

.services-mix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.services-mix-card {
  background: #fafafa;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
  transition: .3s;
  border-bottom: 4px solid transparent;
}

.services-mix-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  border-bottom-color: var(--blue) ;
}

.services-mix-img {
  height: 210px;
  overflow: hidden;
}

.services-mix-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s;
}

.services-mix-card:hover img {
  transform: scale(1.05);
}

.services-mix-icon {
  position: absolute;
  top: 165px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-magenta);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  line-height: 60px;
  font-size: 20px;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.services-mix-heading {
  margin-top: 55px;
  font-size: 20px;
  color: var(--blue);
  font-weight: 700;
}

.services-mix-text {
  padding: 0 20px 20px;
  color: #666;
  line-height: 1.6;
}


/*testimonial*/

.testi-section {
  padding: 80px 20px;
  background: #f9f3fc;;
  text-align: center;
}

.testi-title {
  font-size: 34px;
  font-weight: 900;
  color: var(--dark-magenta);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
     max-width: 1200px;
    margin: 0 auto;
}

.testi-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: .3s;
  border-top: 4px solid var(--light-magenta);
  border: 1px solid #eee;
  border-top: 4px solid var(--light-magenta);
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
 
     border-color: var(--light-magenta);
   

}

.testi-icon {
  background: linear-gradient(130deg, var(--azure-blue), var(--blue));
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-icon i {
  color: #fff;
  font-size: 26px;
}

.testi-text {
  font-size: 17px;
  font-style: italic;
  color: #333;
  margin: 15px 0;
  line-height: 1.7;
}

.testi-name {
  font-weight: 700;
  color: var(--dark-magenta);
  margin-top: 10px;
}

/*popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20,20,20,0.65);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  animation: fadeIn .4s ease;
}

@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}
.popup-box {
  width: 850px;
  max-width: 95%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  animation: scaleIn .35s ease;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}
.popup-box {
  width: 850px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  animation: slideUp 0.35s ease;
}
@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0 }
  to { transform: scale(1); opacity: 1 }
}

.popup-image {
  width: 60%;
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-content {
  width: 55%;
  padding: 35px;
  position: relative;
}

.popup-content h2 {
  color: var(--dark-magenta);
  font-size: 26px;
  margin-bottom: 8px;
}

.popup-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 15px;
}

.popup-close {
  position: absolute;
  right: 18px;
  top: 10px;
  background: #eee;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  transition: 0.3s ease;
}

.popup-close:hover {
  background: var(--light-magenta);
  color: #fff;
}
.popup-form input,
.popup-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

.popup-btn {
  width: 100%;
  background: linear-gradient(120deg, var(--dark-magenta), var(--light-magenta));
  padding: 12px;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(154,24,117,0.35);
  transition: 0.3s ease;
}

.popup-btn:hover {
  transform: translateY(-3px);
}
/*footer*/

.footer-area {
  background-color: #1c1c1c;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}
.footer-area .footer-up {
  padding-top: 20px;
}
.footer-area h6 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #DFB163;;
}
.footer-area .logo img {
  max-width: 180px;
  margin-bottom: 15px;
}
.social-area svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  margin-right: 10px;
}
.social-area a {
  color: #fff;
  display: inline-block;
}
.la-clock:before {
    content: "\f017";
}
.footer-area .social-area a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s ease;
}
.footer-area .social-area a:hover {
  color: #f4b400;
}
.footer-area ul {
  list-style: none;
  padding: 0;
}
.footer-area ul li a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.footer-area ul li a:hover {
  color: #f4b400;
}
.footer-area .contact-info p {
  margin-bottom: 8px;
  font-size: 14px;
}
.footer-area .contact-info i {
  margin-right: 8px;
  color: #f4b400;
}
.footer-area .subscribe-form input[type="email"] {
  width: 100%;
  padding: 8px;
  border: none;
  margin-bottom: 10px;
}
.footer-area .subscribe-form .main-btn {
  padding: 8px 16px;
  background-color: #f4b400;
  color: #000;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.footer-area .subscribe-form .main-btn:hover {
  background-color: #e0a800;
}
.footer-area .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-area .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-area .col-lg-3,
.footer-area .col-md-6,
.footer-area .col-sm-12 {
  flex: 1 1 220px;
}





/* RESPONSIVE */
@media(max-width: 768px) {
  .popup-box {
    flex-direction: column;
  }
  .popup-image {
    width: 100%;
    height: 220px;
  }
  .popup-content {
    width: 100%;
  }
}
@media(max-width: 900px){
  .hero-wrapper { flex-direction: column; }
  .hero-gallery, .hero-content { width: 100%; }

  .benefits-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .services-mix-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .testi-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 600px){
  .benefits-grid,
  .services-mix-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
.popup-box1{
    background: #fff;
    border-radius: 18px;
    overflow: hidden;

    animation: scaleIn .35s 
ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
    .popup-box1 {
       
        max-width: 1200px; 
        width: 90%;
        margin: 40px auto; 
        padding: 20px;
    }
    
    .popup-box1 {
        display: flex;
        flex-direction: row; 
        gap: 20px;
    }

    .popup-image {
        flex: 1;
        max-width: 40%;
    }

    .popup-content {
        flex: 1.5; 
        max-width: 60%;
    }
   
    .popup-image img {
        width: 100%;
        height: auto;
    }
}
@media (max-width: 480px) {
    .nav {
        display: none; 
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 15px;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }
.nav a{
    color: #000;
}
    .menu-toggle {
        display: block; 
    }

    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        position: relative;
    }

    .nav.show {
        display: flex; 
    }
}


@media (max-width: 480px) {
    .hero-thumbs img:nth-child(n+4) {
        display: none;
    }
}
/* ------------------ HERO MOBILE VIEW (max-width: 768px) ------------------ */
@media (max-width: 768px) {

    .hero-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 60px 18px;
        gap: 30px;
    }

    /* LEFT CONTENT FULL WIDTH */
    .hero-content {
        width: 100%;
        text-align: center;
        min-width: unset;
    }

    .hero-heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-subtext,
    .hero-info,
    .hero-points li {
        text-align: center !important;
        font-size: 15px;
    }

    .hero-points {
        padding-left: 0;
        margin-top: 10px;
    }

    .hero-points li {
        position: relative;
        margin-bottom: 8px;
        padding-left: 25px;
        list-style: none;
    }

    .hero-points li::before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: var(--light-magenta);
        position: relative;
        left: -15px;
        top: 3px;
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
        justify-content: center;
        width: 100%;
    }

    .hero-buttons a,
    .hero-buttons button,
    .hero-btn-fill,
    .hero-btn-outline {
        width: 75%;
        margin: 0 auto;
    }

    .hero-gallery {
        width: 100%;
        min-width: unset;
    }

    .hero-main-img img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 12px;
    }

 
    .hero-thumbs {
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
    }

    

    .hero-thumb {
        width: 75px;
        height: 75px;
        border-radius: 10px;
    }
}
.popup-formm .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.popup-formm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}
.popup-formm .form-row input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.popup-formm select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-row.full-width {
    flex-direction: column;
}
@media(max-width:767px){
    .popup-content h2 {
        font-size:16px;
    }
   .popup-content p{
        font-size:11px;
    }
    .popup-formm .form-row{
        display:block;
        margin-bottom:0 !important;
    }
    .popup-formm{
        gap:0 !important;
        margin-top:20px;
    }
    .popup-btn, .popup-content{
        padding:10px;
    }
}
@media (max-width: 768px) {
    .popup-box {
        flex-direction: column;
    }

    .popup-images {
        height: 200px;
    }
     .popup-images img{
    width: 100%;
    height: 100%;
    object-fit: cover;
     }
     
    .popup-content {
        padding: 20px;
    }
   .popup-close {
        position: absolute;
        /* top: 12px; */
        right: 5px;
        /* background: var(--primary-accent); */
        /* border: none; */
        font-size: 25px;
        width: 25px;
        height: 25px;
        border-radius: 50%;
                color: black;
        cursor: pointer;
        display: block;
    }
}