*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Outfit',system-ui,sans-serif !important;
}


body{
  background:#fff;
  overflow-x: hidden !important;
}
@media (min-width: 310px) and (max-width: 1440px) {
  background:#fff;
  overflow-x: hidden !important;
}

.ast-container {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}


/* ===== HERO ===== */
.hero{
  padding: 50px 0 90px 0;
  background-color:#fff;
    radial-gradient(circle at 20% 30%, #ffe1e1, transparent 40%),
    radial-gradient(circle at 80% 70%, #ffdada, transparent 40%);
}

.hero-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

/* ===== LEFT ===== */
.hero-left{
  width:50%;
  padding-left: 50px;
}

.badge{
  display:inline-block;
  background:#ffeaea;
  color:#e60000;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  margin-bottom:25px;
}

.hero-left h1{
  font-size:72px;
  font-weight: 700;
  line-height:1.15;
  color:#111;
  font-family: sans-serif;
}

.hero-left h1 span{
  color:#e60000;
  font-size:72px;
  font-weight: 700;
}

.hero-left p{
  margin:22px 0 32px;
  max-width:500px;
  color:#666;
  font-size:16px;
}

.hero-buttons{
  display:flex;
  gap:18px;
}

.btn{
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn.primary{
  background:#e60000;
  color:#fff;
  box-shadow:0 10px 30px rgba(230,0,0,0.35);
    border-radius: 15px;
}

.btn.primary:hover{
  background:#c90000;
}

.btn.outline{
  border:2px solid #FDEBEB;
  color:gray;
  border-radius: 15px;
}

.btn.outline:hover{
  background:#e60000;
  color:#fff;
}

/* ===== RIGHT ===== */
.hero-right{
  width:50%;
  display:flex;
  justify-content:center;
}

.orbit-wrapper{
  position:relative;
  width:460px;
  height:460px;
}

/* ORBITS */
.orbit{
  position:absolute;
  inset:0;
  border-radius:50%;
}

.orbit-dashed{
  border:2px dashed rgba(230,0,0,0.35);
  animation:ringRotate 28s linear infinite;
}

.orbit-one{
  inset:28px;
  background:radial-gradient(circle, rgba(255,120,120,0.35), rgba(255,120,120,0.05));
}

.orbit-two{
  inset:60px;
  background:radial-gradient(circle, rgba(255,160,160,0.35), rgba(255,160,160,0.08));
}

.orbit-three{
  inset:95px;
  border:1px solid rgba(255,120,120,0.25);
  box-shadow:0 0 45px rgba(255,120,120,0.25);
}

/* CENTER */
.center-circle{
  position:absolute;
  inset:140px;
  border-radius:50%;
  background:radial-gradient(circle, #ffe2e2, #ff6b6b);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 80px rgba(255,0,0,0.35);
}

.center-circle span{
  font-size:68px;
  font-weight:700;
  color:#e60000;
}

.center-circle small{
  font-size:12px;
  letter-spacing:2px;
  color:#e60000;
}

/* ICONS */
.icon{
  position:absolute;
  width:52px;
  height:52px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
  animation:float 4s ease-in-out infinite;
}

/* icon positions */
.i1{ top:-12px; left:50%; transform:translateX(-50%); }
.i2{ top:95px; right:-12px; animation-delay:.5s;}
.i3{ bottom:95px; right:-12px; animation-delay:1s;}
.i4{ bottom:-12px; left:50%; transform:translateX(-50%); animation-delay:1.5s;}
.i5{ bottom:95px; left:-12px; animation-delay:2s;}
.i6{ top:95px; left:-12px; animation-delay:2.5s;}

/* ANIMATIONS */
@keyframes float{
  0%{ transform:translateY(0); }
  50%{ transform:translateY(-14px); }
  100%{ transform:translateY(0); }
}

@keyframes ringRotate{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}


/* ===== EXPERTISE ===== */
.expertise{
  padding-top: 60px;
}
.expertise-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: gray;
    margin-bottom: 30px;
}

.expertise-tags{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.expertise-tags a{
  cursor: pointer;
  padding:8px 18px;
  border-radius:30px;
  background:#fff;
  border:1px solid #ffd1d1;
  font-size:12px;
  font-weight: 500;
  color: #7D7D7D;
  text-decoration: none;
  box-shadow:0 6px 18px rgba(255,0,0,0.1);
}
.fa-solid, .fas {
    font-weight: 900;
    margin-right: 15px;
    background-color: #FDEBEB;
    padding: 10px 10px;
    border-radius: 50px;
    transition: 0.5s all ease-in-out;
}
a.tags:hover .fa-solid, .fas {
  background-color: #e60000;
  color: #fff;
}



/* ================================
   HERO BACKGROUND ANIMATION
================================ */

/* Hero must be relative */
.hero {
  position: relative;
  overflow: hidden;
}

/* Background animation layer */
.bg-animation {
  position: absolute;
  inset: 0;
  z-index: 0;           /* background */
  pointer-events: none;
}

/* Circles common style */
.bg-circle {
  position: absolute;
  border: 2px solid rgba(99, 102, 241, 0.25);
  border-color: #FCD7D7;
  border-radius: 50%;
  opacity: 0.6;
  animation: floatBg 6s ease-in-out infinite;
}

/* Individual circles */
.c1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 8%;
}

.c2 {
  width: 70px;
  height: 70px;
  top: 40%;
  left: 65%;
  animation-duration: 5s;
}

.c3 {
  width: 160px;
  height: 160px;
  top: 70%;
  left: 25%;
  animation-duration: 8s;
}

.c4 {
    width: 70px;
    height: 70px;
    top: 20%;
    left: 85%;
    border-radius: 15px;
    animation-duration: 4.5s;
    display: none;
}

.c5 {
  width: 60px;
  height: 60px;
  top: 55%;
  left: 45%;
  animation-duration: 6.5s;
}

/* Floating animation */
@keyframes floatBg {
  0% {
    transform: translate(50, 0);
  }
  50% {
    transform: translate(12px, -18px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/* ================================
   KEEP CONTENT ABOVE BACKGROUND
================================ */
.hero-container,
.navbar {
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {

  .hero {
    padding: 80px 16px;
    overflow: hidden;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left {
    width: 100%;
  }

  .hero-left h1 {
    font-size:36px;
    font-weight: 700;
    line-height: 1.2;
  }
.hero-left h1 span{
  font-size:36px;
  font-weight: 700;
}
  .hero-left p {
    font-size: 15px;
  }

  .testimonial-badge {
    font-size: 13px;
    display: inline-block;
    margin-bottom: 12px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  /* Expertise Tags */
  .expertise-tags {
    justify-content: center;
    gap: 10px;
  }

  .expertise-tags .tags {
    font-size: 13px;
    padding: 8px 12px;
  }

  /* RIGHT ORBIT */
  .hero-right {
       display: none;
  }

  .orbit-wrapper {
    transform: scale(0.75);
  }

}
@media (min-width: 577px) and (max-width: 991px) {

  .hero-container {
    flex-direction: column;
    text-align: center;
  }
   .hero-left {
    width: 90%;
    text-align: center;    
}
  .hero-left h1 {
    font-size: 48px;
    font-weight: 700;
  }
  .hero-left h1 span {
    font-size: 48px;
    font-weight: 700;
}

  .hero-left p {
    font-size: 16px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .expertise-tags {
    justify-content: center;
  }

    .hero-right {
     display: none;
  }

  .orbit-wrapper {
    transform: scale(0.85);
  }

}
@media (min-width: 992px) and (max-width: 1199px) {

  .hero {
    padding: 120px 40px;
  }

  .hero-left h1 {
    font-size: 52px;
  }

  .hero-left p {
    font-size: 17px;
    max-width: 90%;
  }

  .orbit-wrapper {
    transform: scale(0.95);
  }

}


/* ===============================
   SERVICE CARD
================================ */
section.our-services {
    padding: 80px 0px;
    background-color:#FEF8F8 !important;
}
span.span-title {
    color: #B81515;
}
p.service-para {
    color: #737373;
    font-size: 19px;
    font-weight: 400;
}
h1.main-title {
    font-size: 48px;
    font-weight: 700;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  height: 100%;                 /* 🔥 equal height */
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  position: relative;
}
.service-card:hover {
  background-color: #FDEAEC;
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
.service-card:hover .icon-box i{
  color: white;
  background-color: #e60000;
  transform:scale(1.1);

}
.service-card:hover .tags span{
   background-color: #FBDBDC;
 
}

/* icon */
.service-card .icon-box {
  /* width: 56px;
  height: 56px;
  border-radius: 25px;
  background: #ffecec;
  display: flex;
  align-items: center;
  justify-content: center; */
  margin-bottom: 18px;
}

.service-card .icon-box i {
  font-size: 22px;
  color: #e63946;
}

/* title */
.service-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* description */
.service-card p {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

/* ===============================
   TAGS
================================ */

.service-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card .tags span {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 50px;
  background: #f1f1f1;
  color: #333;
  font-weight: 500;
}

/* ==================================
   SERVICES RESPONSIVENESS
================================== */

/* ===== Large screens (<= 1200px) ===== */
@media (max-width: 1200px) {
  .our-services .main-title {
    font-size: 36px;
  }

  .service-card {
    padding: 24px;
  }
}

/* ===== Tablets (<= 992px) ===== */
@media (max-width: 992px) {
  .our-services {
    padding: 70px 0;
  }

  .our-services .main-title {
    font-size: 32px;
  }

  .our-services .service-para {
    font-size: 15px;
  }

  .service-card h4 {
    font-size: 18px;
  }
}

/* ===== Small tablets / large mobiles (<= 768px) ===== */
@media (max-width: 768px) {
  .our-services {
    padding: 60px 0;
  }

  .our-services .tag {
    font-size: 12px;
    padding: 5px 12px;
  }

  .our-services .main-title {
    font-size: 28px;
  }

  .service-card {
    padding: 22px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-card .icon-box {
    width: 48px;
    height: 48px;
  }

  .service-card .icon-box i {
    font-size: 20px;
  }
}

/* ===== Mobile phones (<= 576px) ===== */
@media (max-width: 576px) {
  .our-services {
    padding: 50px 0;
  }

  .our-services .main-title {
    font-size: 24px;
    line-height: 1.3;
  }

  .our-services .service-para {
    font-size: 14px;
    padding: 0 10px;
  }

  .service-card {
    padding: 20px;
    border-radius: 14px;
  }

  .service-card h4 {
    font-size: 17px;
  }

  .service-card .tags span {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* ===== Extra small phones (<= 400px) ===== */
@media (max-width: 400px) {
  .our-services .main-title {
    font-size: 22px;
  }

  .service-card {
    padding: 18px;
  }
}


/* ===============================
 why - section
================================ */

.why-section{
  padding:100px 0;
  background:#fafafa;
}

.why-card{
  background-color: #FDFDFD;
  border: 2px solid transparent;
  padding:40px 30px;
  border-radius:18px;
  text-align:center;
  transition:.35s;
}
.why-card h3{
  font-size: 18px;
  font-weight: 600;
}
.why-card p{
  font-size: 14px;
  font-weight: 400;
}
p.section-text {
    color: #737373;
    font-size: 19px;
    font-weight: 400;

}

.why-card i{
  font-size:18px;
  color:#e60000;
  align-content: center;
  margin-bottom:15px;
}
.why-card:hover{
  background:#fff;
  box-shadow:0 15px 35px rgba(230,0,0,.15);
  transform:translateY(-5px);
}
.why-card:hover i{
  color: #fff;
  background-color: #e60000;
  transform:scale(1.1);

}
.stats-box{
  max-width: 1300px;
  margin:100px auto;
  padding:40px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
  border-radius:20px;
}
.stat-item h2 {
    font-size: 48px;
    font-weight: 700;
    color: #e10600;
}
.stat-item p {
    color: #777;
    font-size: 14px;
    font-weight: 500;
}
.stats-box{
  background:#fff5f5;
  border-radius:20px;
  padding:40px 20px;
}

.stats-box h3{
  color:#e60000;
  font-weight:700;
}

.stat-box {
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

/* thora difference ke liye delay */
.stat-1 {
  animation-delay: 0s;
}

.stat-2 {
  animation-delay: 0.6s;
}

.stat-3 {
  animation-delay: 1.2s;
}

/* animation */
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (min-width: 310px) and (max-width: 991px) {

.c4 {
    display: none;
}

  .stats-box{
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 22px 14px !important;
    text-align: center;
  }
  .stat-item h2{
    font-size: 32px;
    line-height: 1.2;
  }

  .stat-item p{
    font-size: 13px;
  }
  

}

/* ========TESTIMONIAL SECTION ========= */
.testimonial-section {
  padding: 80px 0;
  background: #fff;
}
p.testimonial-stats {
    font-size: 19px;
    font-weight: 400;
    color: #737373;
}
.testimonial-container {
  max-width: 900px;
  margin: auto;
  position: relative;
}


.testimonial-content {
  text-align: center;
  max-width:900px;
  margin:auto;
}
.testimonial-badge {
    display: inline-block;
    background: #ffeaea;
    color: #e60000;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: 500;
}

.red h1{
  font-size:48px;
  line-height:1.2;
  margin-bottom:20px;
  color: aliceblue;
}

.red h1 span{
  color:#ffeaea;
}
.testimonial-stat{
  font-weight:500;
  margin-bottom:18px;
}

.red-desc{
  max-width:650px;
  margin:0 auto 40px;
  font-size:15px;
  opacity:0.9;
}
.testimonial {
  display: none;
  background: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.testimonial.active {
  background-color:#FEF8F8 !important;
  display: block;
  animation: slideFade 0.6s ease;
}

@keyframes slideFade {
  from {opacity: 0; transform: translateX(30px);}
  to {opacity: 1; transform: translateX(0);}
}

.stars {
  color: #e11;
  font-size: 20px;
  margin-bottom: 20px;
}

.text {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 30px;
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  background: #e11;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.user h4 {
  margin: 0;
}

.user span {
  font-size: 14px;
  color: #777;
}


/* dots */
.dots {
  text-align: center;
  margin-top: 25px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  margin: 0 5px;
}

.dot.active {
  background: #e11;
  width: 25px;
  border-radius: 20px;
}



/* =============== RED SECTION ============== */
.red{
  background:linear-gradient(135deg,#e60000,#ff1a1a);
  color:#fff;
  padding:120px 20px;
  text-align:center;
  margin-top: 60px;
}

.red-content{
  max-width:900px;
  margin:auto;
}

.badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 13px;
    margin-bottom: 25px;
    color: white;
}

.red h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.red h1 span{
  color:#ffeaea;
}

.red-stats{
  font-weight:500;
  margin-bottom:18px;
}

.red-desc{
  max-width:650px;
  margin:0 auto 40px;
  font-size:15px;
  opacity:0.9;
}

.red-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn-primary{
  background:#fff;
  color:#e60000;
  padding:14px 28px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}
.btn-primary:hover {
  background:#e60000;
  color:#fff;
}
.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}
.btn-outline:hover {
  background:linear-gradient(180deg,#fff,#fff5f5);
   color:#e60000;
}

/* =============== CONTACT SECTION ============== */
.contact-section{
  padding:100px 0;
  background:linear-gradient(180deg,#fff,#fff5f5);
}
.contact-description {
    justify-items: center;
    text-align: center;
}
.section-tag{
  display:inline-block;
  background:#ffe5e5;
  color:#e11d1d;
  padding:6px 16px;
  border-radius:20px;
  font-size:14px;
  font-weight: 500;
  margin-bottom:10px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}
.section-title span{ color:#e11d1d; }

.section-desc{
  max-width:620px;
  color:#666;
  margin-bottom:60px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}

/* LEFT */
.contact-info h3{
  font-size:26px;
  margin-bottom:10px;
}
.contact-info p{
  color:#666;
  margin-bottom:30px;
}

.info-box{
  display:flex;
  gap:15px;
  background:#fff;
  padding:18px;
  border-radius:14px;
  box-shadow:0 20px 40px rgba(0,0,0,.08);
  margin-bottom:20px;
  transition:.3s;
}
.info-box:hover{
  transform:translateY(-5px);
}

.info-box i{
  width:45px;
  height:45px;
  background:#ffe5e5;
  color:#e11d1d;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
}
.info-box:hover i{
  background:#e11d1d;
  color: #eee;
}
.info-box span{
  font-size:13px;
  color:#888;
}
.info-box strong{
  display:block;
  font-size:15px;
}

/* FORM */
.contact-form{
  background:#fff;
  padding:40px;
  border-radius:20px;
  box-shadow:0 30px 60px rgba(0,0,0,.1);
  height: 95%;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px 16px;
  border-radius:12px;
  border:1px solid #eee;
  margin-bottom:15px;
  font-family:inherit;
}
i.fa-solid.fa-arrow-right {
    background-color: transparent;
    color: aliceblue;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color:#e11d1d;
}

.contact-form button{
  width:100%;
  padding:16px;
  border:none;
  border-radius:14px;
  background:#e11d1d;
  color:#fff;
  font-size:16px;
  cursor:pointer;
  transition:.3s;
}
.contact-form button:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 30px rgba(225,29,29,.4);
}

/* RESPONSIVE */
@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}

/* ====== WHY CHOSSE ADEZIA ======= */
.why-adezia{
  padding:100px 0;
  background:#fff;
}

.check-item{
  font-size:15px;
  color:#444;
}

.check-item i{
  color:#e60000;
  margin-right:8px;
}

.why-mini-card{
  height: 180px;
  display:flex;
  gap:15px;
  padding:20px;
  background:#fafafa;
  border-radius:16px;
  transition:.3s;
}

.why-mini-card i.fa-solid{
  height: 50px;
  background-color: #FAEDED;
  font-size:22px;
  color:#e60000;
  align-content: center;
}

.why-mini-card:hover{
  background:#fff;
  box-shadow:0 15px 35px rgba(230,0,0,.15);
  transform:translateY(-5px);
}
.why-mini-card:hover i.fa-solid{
  background-color: #e60000;
  color: #fff;
}

/* Right Visual Stats */
.stats-visual{
  position:relative;
  height:420px;
  background:linear-gradient(135deg,#fff5f5,#fff);
  border-radius:30px;
  overflow:hidden;
}

.stat-box{
  position:absolute;
  background:#fff;
  padding:20px 25px;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.1);
  text-align:center;
}

.stat-box h3{
  color:#e60000;
  font-weight:700;
  margin:0;
}

.stat-1{ top:30px; left:30px; }
.stat-2{ bottom:40px; left:60px; }
.stat-3{ right:40px; top:50%; transform:translateY(-50%); }



/* Background Rings */
.ring{
  position:absolute;
  width:260px;
  height:260px;
  border:1.5px solid rgba(230, 0, 0, 0.12);
  border-radius:50%;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

.ring-sm{
  width:180px;
  height:180px;
  border:1.5px solid rgba(230, 0, 0, 0.08);
}

.stat-box{
  backdrop-filter: blur(6px);
}
.stat-box{
  position:absolute;
  background:#fff;
  padding:20px 25px;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.1);
  text-align:center;
  z-index:2;
}

/* inner wrapper smooth rahe */
.stat-inner{
  will-change: transform;
}

/* FIX FONT AWESOME */
.fa,
.fa-solid,
.fa-regular,
.fa-brands {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
.fa-brands {
  font-family: "Font Awesome 6 Brands" !important;
}