/* ROOT */
:root{
  --red:#ff4040;
  --blue:#132e85;
  --pink:#fff0ec;
}

/* RESET */
*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family:'DM Sans',sans-serif;
  color:#111;
}

/* GLOBAL */
.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* NAVBAR */
.navbar{
  background:#fff;
  padding:18px 0;
  position: relative;
}

.nav-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo img{height:34px}

.nav-links a{
  margin-left:22px;
  text-decoration:none;
  font-weight:500;
  color:#111;
  transition: 0.35s ease;
}
nav.nav-links a:hover {
    color: var(--red);
}
/* NAV TOGGLE (HAMBURGER) */
.nav-toggle{
  display:none;
  flex-direction:column;
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
  gap:6px;
}

.nav-toggle .bar{
  width:25px;
  height:3px;
  background:#111;
  border-radius:3px;
  transition:all 0.3s ease;
}

.nav-toggle.active .bar:nth-child(1){
  transform: rotate(45deg) translate(6px, 5px);
}

.nav-toggle.active .bar:nth-child(2){
  opacity:0;
}

.nav-toggle.active .bar:nth-child(3){
  transform: rotate(-45deg) translate(8px, -8px);
}

/* MOBILE MENU */
.nav-links.active{
  display:flex !important;
  overflow: visible;
  opacity: 1;
  transform: translateY(0px);
  z-index: 999;
}

@media(max-width:768px){
  .nav-toggle{
    display:flex;
  }

  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    flex-direction:column;
    padding:20px;
    gap:15px;
    display:none;
    border-bottom:1px solid #eee;
    box-shadow:0 8px 16px rgba(0,0,0,0.1);
  }

  .nav-links a{
    margin:0;
    padding:10px 0;
    border-bottom:1px solid #f0f0f0;
  }

  .nav-links a:last-child{
    border:none;
  }
}

.btn{
  padding: 8px 22px;
  border-radius:8px;
  display:inline-block;
  transition:.3s ease;
}

.btn-blue{
  background:var(--blue);
  color:#fff;
}

.btn-blue:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(19,46,133,.3);
}

.btn-outline-red{
  border: 2px solid var(--red);
  color:var(--red);
  background: #fff;
}

.btn-outline-red:hover{
  background:var(--red);
  color:#fff;
  transform:translateY(-3px);
}

/* HERO */
.hero{
  background:var(--pink);
  padding-top: 80px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items: center;
}

/* TEXT */
.hero-text h1{
  font-size:45px;
  line-height:1.2;
}

.hero-text .red{color:var(--red)}

.curve{
  width:120px;
  height: 4px;
  background:var(--red);
  border-radius:50px;
  margin: 12px 0;
}

.lead{
  font-size:18px;
  color:#333;
  margin-bottom:30px;
  margin-top: 24px;
  line-height: 1.5;
}

.hero-buttons a{margin-right:14px;text-decoration: none;}

/* IMAGE */
.hero-image{
  position:relative;
  text-align: center;
}

.hero-image img{
  width:360px;
  position:relative;
  z-index:2;
  display: block;
  margin: 0 auto;
}

/* CIRCLE BG */
.circle-bg{
  position:absolute;
  right:-20px;
  top:40px;
  width:420px;
  height:420px;
  background:radial-gradient(circle, #ff6a6a, #ffd6d0);
  border-radius:50%;
  z-index:1;
}

/* BADGE */
.exp-badge{
  position:absolute;
  bottom:60px;
  left:40px;
  background: #ff4040;
  color:#fff;
  padding:14px 18px;
  border-radius:10px;
  font-weight:600;
  z-index:3;
  box-shadow:0 12px 25px rgba(255,64,64,.4);
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-image{text-align:center}
  .circle-bg{right:50%;transform:translateX(50%)}
}
/* ================= ABOUT SECTION ================= */

.about-section{
  background:#f7f7fa;
  padding:90px 0;
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
}

/* LEFT */
.about-illustration img{
  width:100%;
  max-width:520px;
}

/* RIGHT */
.about-content{
  max-width:520px;
}

.about-tag{
  display:inline-block;
  color:#ff4040;
  font-size:14px;
  font-weight:600;
  margin-bottom:14px;
}

.about-content h2{
  font-size: 29px;
  line-height:1.3;
  margin-bottom:20px;
}

.about-content h2 span{
  color:#ff4040;
}

.about-content p{
  font-size:16px;
  color:#444;
  line-height:1.7;
  margin-bottom:32px;
}

/* BUTTON */
.video-btn{
  display: inline-flex !important;
  align-items:center;
  gap:12px;
}

.play-icon{
  background:#fff;
  color:#132e85;
  width:26px;
  height:26px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-grid{
    grid-template-columns:1fr;
    text-align:center;
    flex-direction: column-reverse;
    display: flex;
    gap: 32px;
  }

  .about-content{
    margin:auto;
  }

  .about-illustration img{
    margin:auto;
  }
}
/* ================= TRUSTED BRANDS ================= */

.trusted-section{
  padding:80px 0;
  background:#fff;
}

.trusted-title{
  text-align:center;
  font-size:28px;
  font-weight:700;
  margin-bottom: 8px;
  color:#222;
}
p.truste-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
    text-align: center;
}
/* WHITE CARD */
.trusted-box{
  background:#fff;
  border-radius:16px;
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* LOGO ROW */
.trusted-logos{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.trusted-logos img{
  max-height: 56px;
  object-fit:contain;
  opacity:0.9;
  transition:0.3s ease;
}

.trusted-logos img:hover{
  opacity:1;
  transform:scale(1.05);
}
 .happy-clients {
      padding-top: 40px;
    }

    .stats-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      text-align: center;
    }

    .client-stat {
      padding: 24px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      animation: slideUp 0.6s ease-out forwards;
      opacity: 0;
    }

    .client-stat:nth-child(1) { animation-delay: 0.1s; }
    .client-stat:nth-child(2) { animation-delay: 0.2s; }
    .client-stat:nth-child(3) { animation-delay: 0.3s; }

    .client-stat:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .client-stat h3 {
      font-size: 48px;
      font-weight: 700;
      color: #ff4545;
      margin: 0 0 6px 0;
    }

    .client-stat p {
      font-size: 18px;
      color: #666;
      margin: 0;
    }

    @keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .stats-container {
        gap: 20px;
      }
      
      .client-stat h3 {
        font-size: 36px;
      }
    }
/* RESPONSIVE */
@media(max-width:767px){
  .trusted-logos{
    justify-content:center;
  }
  .happy-clients {
    padding: 40px 0;
 }
 .trusted-section {
    padding: 50px 0;
    padding-bottom: 24px;
}
}

@media(max-width:600px){
  .trusted-logos img{
    max-height:42px;
  }
}
/* ================= OUR PORTFOLIO ================= */

.portfolio-section{
  padding:90px 0;
  background:#f7f7fa;
  text-align:center;
}

.portfolio-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:8px;
  color:#111;
}

.portfolio-subtitle{
  font-size:16px;
  color:#555;
  margin-bottom:50px;
}

/* Grid */
.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

/* Card */
.portfolio-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
  transition:0.35s ease;
  text-align:left;
}

.portfolio-card:hover{
  transform:translateY(-6px);
  box-shadow:0 28px 60px rgba(0,0,0,0.12);
}

/* Image */
.portfolio-card img{
  width:100%;
  display:block;
  height: 200px;
  object-fit: contain;
}

/* Content */
.portfolio-content{
  padding:26px;
  border-top: 1px solid #dddddd80;
  margin-top: 8px;
  padding-top: 20px;
}

.portfolio-content h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
  color:#111;
}

.portfolio-content p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

/* Footer strip */
.portfolio-footer{
  background:#f1f3f7;
  padding:14px 26px;
  display:flex;
  justify-content:flex-end;
}

/* View More */
.portfolio-link{
  font-size:14px;
  font-weight:600;
  color: #132e85;
  text-decoration:none;
  transition:0.3s ease;
}

.portfolio-link:hover{
  color: #9aaed1 !important;
}
.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(19, 46, 133, .3);
}

.footer-links a:hover {
    color: #ff4040;
}
/* Responsive */
@media(max-width:1024px){
  .portfolio-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .portfolio-grid{
    grid-template-columns:1fr;
  }
}
/* ================= OUR SERVICES ================= */

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
  font-family:'DM Sans', sans-serif;
}

body{
  background:#f7f7fa;
}

.container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}

.services-section{
  padding:90px 0;
  text-align:center;
  background: #fff;
}

.services-title{
  font-size:34px;
  font-weight:700;
}

.services-subtitle{
  margin:12px 0 50px;
  color:#555;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.service-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.08);
  text-align:left;
  transition: 0.35s ease;
}
 

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}
.service-content{
  padding:26px;
}

.service-content h3{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:20px;
  margin-bottom:10px;
}

.service-content h3 i{
  color:#132e85;
  font-size:18px;
}

.service-content p{
  font-size:15px;
  color:#555;
  line-height:1.6;
}

.service-footer{
  background: #f1f3f791;
  padding:14px 26px;
  display:flex;
  justify-content:flex-end;
}

.service-btn{
  background:none;
  border:none;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  color: #132e85;
  text-decoration: none;
}

.service-btn:hover{
  color: #9aaed1 !important;
}

.service-btn.primary{
  color:#132e85;
}

/* MODAL */
.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}

.modal-overlay.active{
  display:flex;
}

.modal-box{
  background:#fff;
  width:90%;
  max-width:520px;
  max-height:80vh;
  padding:30px;
  border-radius:18px;
  overflow-y:auto;
  position:relative;
}

.modal-close{
  position:absolute;
  top:14px;
  right:18px;
  font-size:26px;
  cursor:pointer;
  color:#999;
}

.modal-box h3{
  margin-bottom:20px;
}

.modal-box ul{
  list-style:none;
}

.modal-box li{
  padding-left:26px;
  margin-bottom:10px;
  position:relative;
}

.modal-box li::before{
  content:"✔";
  color:#ff4040;
  position:absolute;
  left:0;
}

@media(max-width:900px){
  .services-grid{
    grid-template-columns:1fr;
  }
}

/* ===== TESTIMONIALS (DESIGN MATCHED) ===== */

.testimonial-section{
  padding:90px 0;
  background:#f7f7fa;
  text-align:center;
}

.testimonial-title{
  font-size:32px;
  font-weight:700;
}

.testimonial-subtitle{
  margin:10px 0 50px;
  color:#555;
}

.testimonial-wrapper{
}

.testimonial-cards{
}

.testimonial-card{
  background:#fff;
  border-radius:20px;
  padding:45px 25px 30px;
  position:relative;
  text-align:left;
  margin: 0px 14px;
}

.testimonial-card.active{
  background:#132e85;
  color:#fff;
}

.testimonial-avatar{
  position:absolute;
  top:-32px;
  left:30px;
}

.testimonial-avatar img{
  width:64px;
  height:64px;
  border-radius:50%;
  object-fit:cover;
  border:4px solid #fff;
  background: #fff;
}

.testimonial-text{
  font-size:14px;
  line-height:1.6;
  margin-bottom:20px;
}

.testimonial-card h4{
  font-size:15px;
  margin-bottom:4px;
}

.testimonial-card span{
  font-size:13px;
  opacity:.8;
}

.stars{
  margin-top:12px;
  color:#ffb703;
}

.testimonial-arrow{
  background:none;
  border:none;
  font-size:30px;
  color:#b0b0b0;
  cursor:pointer;
}

.testimonial-arrow:hover{
  color:#132e85;
}
/* CONTACT SECTION */
.contact-section{
  padding:90px 0;
  background:#fff;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:50px;
  align-items:start;
}

.contact-info h2{
  font-size:34px;
  margin-bottom:16px;
}

.contact-desc{
  color:#555;
  line-height:1.6;
  margin-bottom:20px;
}

.contact-details p{
  margin-bottom: 12px;
  font-weight:500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-details a {
    text-decoration: none;
    color: #ff4040;
}

.contact-details p i {
    font-size: 18px;
}

.contact-details a:hover {
    color: #132e85;
}
.contact-cta{
  margin-top: 32px;
}

.contact-cta .cta-small{
  font-size:14px;
  color:#555;
}

.contact-cta h4{
  margin:10px 0 16px;
  font-size:20px;
}

.btn-blue{
  display:inline-block;
  background:#132e85;
  color: #fff !important;
  padding:10px 22px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  transition: 0.3s;
}

/* FORM */
.contact-form-wrap{
  background:#f5f5f8;
  padding: 32px 8px;
  border-radius:20px;
}

.contact-form-wrap h3{
  margin-bottom:24px;
  font-size:22px;
  text-align: center;
}

.contact-form .form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.form-group{
  margin-bottom:18px;
}

.form-group label{
  display:block;
  font-size:14px;
  margin-bottom:6px;
}

.form-group input,
.form-group textarea{
  width:100%;
  padding:10px 12px;
  border:1px solid #ddd;
  border-radius:6px;
  outline:none;
}

.form-group input:focus,
.form-group textarea:focus{
  border-color:#132e85;
}

.btn-red{
  margin-top:10px;
  background:#ff4040;
  color:#fff;
  border:none;
  padding:12px 26px;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}


/* FOOTER */
.footer{
  background:#f5f5f8;
  padding-top:60px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:60px;
  align-items:start;
  padding-bottom:40px;
}

.footer-logo{
  max-width:180px;
  margin-bottom:14px;
}

.footer-desc{
  color:#333;
  max-width:420px;
  line-height:1.6;
  margin-bottom:20px;
}

.footer-social{
  display:flex;
  gap:12px;
}

.footer-social a{
  width: 34px;
  height: 34px;
  border: 1px solid #132e85;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight: 700;
  font-size: 18px;
  background: #132e85;
  color: #fff;
  transition: 0.5s;
}

.footer-links h4{
  font-size:18px;
  margin-bottom:16px;
}

.footer-links ul{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a{
  text-decoration:none;
  color:#000;
  font-size:15px;
}

.footer-links a:hover{
  color:#132e85;
}

/* BOTTOM BAR */
.footer-bottom{
  background:#132e85;
  color:#fff;
  text-align:center;
  padding:16px 10px;
  font-size:14px;
}

/* SLICK SLIDER */
.slick-dots{
  position:absolute;
  bottom:-50px;
  left:50%;
  transform:translateX(-50%);
  display:flex !important;
  gap:10px;
  list-style:none;
}
.slick-dots button{
  font-size:0px;
  display:none;
}

.slick-dots li{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#ddd;
  cursor:pointer;
  transition:0.3s ease;
}

.slick-dots li.slick-active{
  background:#132e85;
  width:32px;
  border-radius:6px;
}

.slick-prev,
.slick-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  background:#fff;
  border:1px solid #ddd;
  border-radius:50%;
  display:flex !important;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:2;
  transition:0.3s ease;
}

.slick-prev:hover,
.slick-next:hover{
  background:#132e85;
  border-color:#132e85;
  color:#fff;
}

.slick-prev{left:-60px}
.slick-next{right:-60px}

.slick-prev::before,
.slick-next::before{
  font-size:20px;
  color:#132e85;
}

.slick-prev:hover::before,
.slick-next:hover::before{
  color:#fff;
}
.slick-list {
    padding-top: 34px !important;
}



/* RESPONSIVE */
@media(max-width:767px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:40px;
  }
  nav.nav-links a {display: block;text-align: center;margin: 0;}

nav.nav-links {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    position: absolute;
    width: 100%;
    background: #fff;
    top: 100%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 0px;
    border-top: 1px solid #ddd;
}

nav.nav-links .btn-blue {
    display: block;
    max-width: 160px;
    margin: 0 auto;
    width: 100%;
}
.hero-text h1 {
    font-size: 25px;
    line-height: 1.3;
}
.curve {
    margin-top: 6px;
}
.logo img {
    height: 26px;
}

.hero {
    padding-top: 50px;
}

.hero-image img {
    width: 100%;
    max-width: 360px;
}

.container {
    width: 100%;
}

.portfolio-section {
    padding: 50px 0px;
}

.services-section {
    padding: 50px 0px;
}

.contact-section {
    padding: 50px 0px;
    border-top: 1px solid #dddddd7d;
}
.hero-buttons a {
    margin-right: 0;
    text-decoration: none;
}
.hero-buttons {
    display: flex;
    gap: 12px;
}
.lead {
    font-size: 16px;
}
  .curve {
    margin-top: 6px;
}

.about-section {
    padding: 50px 0px;
}
.testimonial-section {
    padding-top: 50px;
}
}
