*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* hidden state */
.animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

/* when visible */
.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-bottom: 1px solid #e9e9e9;
  height: 65px;
  padding: 0 20px;
}

/* LOGO */
#logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

#img {
  width: 60px;
  height: 60px;
}

/* LINKS */
#links ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

#links a {
  position: relative;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: 0.3s;
}

#links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #1e73d8;
  transition: 0.3s;
}

#links a:hover {
  color: #1e73d8;
}

#links a:hover::after {
  width: 100%;
}

/* BUTTON */
.nav-btn {
  background: linear-gradient(120deg, #2F80ED, #1C5FD4);
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

/* HAMBURGER */
#menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  #menu-toggle {
    display: block;
  }

  #links {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: white;

    display: none;
    flex-direction: column;
    align-items: center;

    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  #links ul {
    flex-direction: column;
    padding: 20px 0;
    gap: 20px;
  }

  #links.active {
    display: flex;
  }

  .nav-btn {
    display: none;
  }
}


/***************************************************************hero***********************************************************/

/* ================= HERO SECTION ================= */
.hero {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  background: radial-gradient(circle at bottom left, #ffffff 20%, #87ceeb 100%);
}

/* CONTAINER */
.hero-container {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

/* TEXT */
.hero-text #em {
  display: inline-block;
  margin-bottom: 15px;
  padding: 5px 12px;
  border: solid 1px #1E73D8;
  border-radius: 20px;
}

.hero-text h1 {
  font-size: 60px;
  font-style: oblique;
  color: #1f2a37;
}

.hero-text span {
  color: #1e73d8;
}

.hero-text p {
  margin: 20px 0;
  color: #4a5568;
  max-width: 500px;
}

/* BUTTON */
.hero-buttons .primary {
  margin-top: 10px;
  padding: 15px;
  color: white;
  background: linear-gradient(rgb(74, 162, 202));
  border: solid 1px white;
  border-radius: 20px;
  cursor: pointer;
  width: 40%;
  font-size: 15px;
  transition: 0.3s;
}

.hero-buttons .primary:hover {
  font-size: 16px;
}

.hero-buttons .primary a {
  text-decoration: none;
  color: white;
}

/* IMAGE */
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

/* REVIEW */
#compliment {
  margin-top: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

#compliment .star {
  width: 15px;
  height: 15px;
}

#compliment #four {
  margin-left: 5px;
  font-weight: bold;
  color: #1E73D8;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media screen and (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 20px auto;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
  }

  .hero-buttons .primary {
    width: 60%;
  }
}

/* MOBILE */
@media screen and (max-width: 768px) {
  .hero {
    padding: 80px 15px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-buttons .primary {
    width: 80%;
  }

  .hero-image img {
    width: 90%;
    margin: auto;
  }
}

/* SMALL MOBILE */
@media screen and (max-width: 480px) {
  .hero-text h1 {
    font-size: 30px;
  }

  .hero-buttons .primary {
    width: 100%;
  }

  .hero-image img {
    width: 100%;
  }
}

/**********************************************************************sevices*****************************************************/
/* SECTION */
#services {
  background: linear-gradient(to bottom, #E9F2F7, #CFE3EC);
  padding: 110px 20px;
}

/* TEXT */
.services-text {
  text-align: center;
  padding: 25px;
  margin-bottom: 70px;
}

.services-text h5 {
  font-size: 25px;
  margin: 20px;
  padding: 10px;
  color: #1E73D8;
}

.services-text h2 {
  font-size: 45px;
  font-weight: bold;
  font-style: oblique;
}

.services-text .s-parg {
  font-size: 18px;
}

/* GRID */
#wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 70px auto 0 auto;
  padding: 0 20px;
}

/* BOX */
.box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* ICON */
.s-img {
  width: 40px;
  height: 40px;
  padding: 10px;
  background: #c2def3;
  border-radius: 10px;
}

/* TEXT */
.box h4 {
  margin-top: 15px;
  font-size: 20px;
}

.box .s-parg {
  margin-top: 10px;
  font-size: 17px;
  color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  #wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #wrapper {
    grid-template-columns: 1fr;
  }

  .services-text h2 {
    font-size: 30px;
  }
}

/********************************************************************VISION*********************************************************************************/       
/* MAIN SECTION */
/* MAIN SECTION */
#vision {
  display: flex;
  gap: 60px;
  padding: 120px 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* 🔥 LIGHT BLUE BACKGROUND */
.image-bg {
  background: linear-gradient(to bottom right, #eef6ff, #dbeafe);
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* IMAGE CARD */
.image-card {
  position: relative;
  width: 450px;
  border-radius: 25px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DARK GRADIENT OVERLAY */
.image-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* TEXT ON IMAGE */
.image-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: white;
  z-index: 2;
}

.image-overlay h3 {
  margin: 0;
  font-size: 22px;
}

.image-overlay p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
}

/* TEXT SIDE */
.v-info {
  max-width: 600px;
}

.v-h4 {
  color: #1e73d8;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.v-h2 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.v-parg1,
.v-parg2 {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* ICON BOXES */
#v-box {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.v-box-info {
  background: #f5f7fa;
  padding: 20px;
  border-radius: 15px;
  width: 180px;
  transition: 0.3s;
}

.v-box-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.08);
}

.v-icons {
  width: 30px;
  margin-bottom: 10px;
}

.icons-h3 {
  font-size: 16px;
  margin-bottom: 5px;
}

.icons-p {
  font-size: 13px;
  color: #666;
}

/* 📱 RESPONSIVE */
@media (max-width: 900px) {

  #vision {
    flex-direction: column;
    text-align: center;
  }

  .image-bg {
    padding: 20px;
  }

  .image-card {
    width: 100%;
    max-width: 400px;
  }

  .v-h2 {
    font-size: 34px;
  }

  #v-box {
    justify-content: center;
  }

  .v-box-info {
    width: 100%;
    max-width: 250px;
  }

  .image-overlay {
    left: 15px;
    bottom: 15px;
  }
}


/***********************************************************************process***************************************************************/

/* SECTION */
#process {
  background-color: #ffffff;
  width: 100%;
  min-height: 850px; /* ✅ your original height */

  display: flex;
  justify-content: center;
  align-items: center; /* 🔥 changed from center → top align */
  gap: 50px;

  padding: 100px 20px;
}

/* LAYOUT WRAPPER */
.process-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  gap: 50px;
  align-items: flex-start; /* 🔥 keeps both top aligned */
}

/* LEFT TEXT */
.process-text {
  flex: 1;
}

.process-text .p-span {
  font-size: 13px;
  color: #1E73D8;
}

.process-text h3 {
  font-size: 50px;
  font-style: oblique;
  margin: 15px 0;
}

.process-text .p-parg {
  font-size: 19px;
  color: #4a5568;
}

/* RIGHT SIDE */
#steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* STEP BOX */
.step-one {
  border: 1px solid #83878f;
  background-color: #ffffff;
  border-radius: 15px;
  display: flex;
  gap: 15px;
  padding: 20px;
  box-shadow: 0 15px 30px rgba(41, 41, 41, 0.08);
}

/* NUMBER */
.no {
  font-size: 45px;
  color: #1e73d8;
  font-style: oblique;
  margin: 0;
}

/* TEXT */
.step-header {
  margin: 10px;
}

.step-header h5 {
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 5px;
}

.step-header p {
  font-size: 14px;
  color: #4a5568;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 1024px) {
  #process {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process-container {
    flex-direction: column;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .process-text h3 {
    font-size: 32px;
  }

  .step-one {
    flex-direction: column;
    text-align: left;
  }

  .no {
    font-size: 35px;
  }
}


/***************************************************Reviews***************************************************************/

#reviews {
  background: linear-gradient(to bottom, #E9F2F7, #CFE3EC);
  padding: 150px 40px;
  text-align: center;
  min-height: 950px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  
}

.review-h5 {
  color: #1e73d8;
  letter-spacing: 2px;
  font-size: 14px;
}

.review-h2 {
  font-size: 52px;
  margin-top: 10px;
}

/* 🔥 THIS creates the 3-column layout */
.reviews-container {
  max-width: 1300px; /* 🔥 increase width */
  margin: 50px auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.reviews-box {
  background: #fff;
  width: 380px;
  padding: 25px;
  border-radius: 20px;
  text-align: left;
}

/* stars */
.stars img {
  width: 18px;
  margin-right: 3px;
}

/* text */
.r-parg {
  margin: 15px 0;
  color: #333;
}

/* user section */
.user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: #1e73d8;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.user span {
  display: block;
  font-size: 12px;
  color: #777;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  #reviews {
    padding: 120px 30px;
  }

  .review-h2 {
    font-size: 40px;
  }

  .reviews-container {
    gap: 20px;
  }

  .reviews-box {
    width: 320px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  #reviews {
    padding: 100px 20px;
  }

  .review-h2 {
    font-size: 32px;
  }

  .reviews-container {
    flex-direction: column; /* 🔥 stack cards */
    align-items: center;
  }

  .reviews-box {
    width: 100%;
    max-width: 400px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .review-h2 {
    font-size: 26px;
  }

  .review-h5 {
    font-size: 12px;
  }

  .reviews-box {
    padding: 20px;
  }

  .r-parg {
    font-size: 14px;
  }
}

/*******************************************************contact***********************************************************/

#contact{
  background-color: white;
  padding: 150px 40px;
  text-align: center;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
}

#c-box{
    background: radial-gradient(
  circle at top left,
  rgba(255, 255, 255, 0.4),
  transparent 40%
),
#1e73d8;
display: flex;
flex-direction: column;
gap: 20px;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 950px;
    height: 450px;
    border-radius: 35px;
    padding: 40px;
    box-sizing: border-box;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    
}

.c-h1{
    font-size: 55px;
    font-style: oblique;
    color: white;
   
}

.c-parg{
    color: rgb(219, 219, 219);
}

#c-btn{
    padding: 15px;
    display: inline;
    padding: 10px;
}

#c-btn button{
    background-color: white;
    color: black;
    border-radius: 40px;
    padding: 10px;
    width: 150px;
    border: none;
    font-size: 13px;
    transition: 0.3s ease;
}

#c-btn button:hover{
    font-size: 14.5px;
       box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);

}

#c-btn button a{
    text-decoration: none;
    color: black;
}

#c-btn .c-span{
    padding: 10px;
    color: white;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  #c-box {
    width: 90%;          /* 🔥 replaces fixed 950px */
    height: auto;
    padding: 40px 25px;
  }

  .c-h1 {
    font-size: 42px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  #contact {
    padding: 100px 20px;
  }

  #c-box {
    width: 100%;
    height: auto;
    padding: 35px 20px;
    border-radius: 25px;
  }

  .c-h1 {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
  }

  .c-parg {
    font-size: 14px;
    text-align: center;
  }

  #c-btn {
    display: flex;
    flex-direction: column; /* 🔥 button + phone stacked */
    gap: 10px;
    align-items: center;
  }

  #c-btn button {
    width: 180px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .c-h1 {
    font-size: 26px;
  }

  .c-parg {
    font-size: 13px;
  }

  #c-box {
    padding: 30px 15px;
  }

  #c-btn .c-span {
    font-size: 13px;
    text-align: center;
  }
}

/***************************************************FOOTER**************************************************************************/

#footer {
  background: #ffffff;
  padding: 60px 40px 20px;
  color: #333;
}

/* MAIN LAYOUT */
.footer-container {
  max-width: 1100px;
  margin: auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* LOGO SECTION */
.logo-footer {
  max-width: 350px;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.f-img {
  width: 45px;
  height: 45px;
}

.f-strong {
  font-size: 18px;
}

.f-parg {
  margin-top: 15px;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* LINKS + CONTACT */
.links h5,
.info h5 {
  margin-bottom: 15px;
  font-size: 16px;
}

.links a {
  position: relative;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: color 0.3s ease;
}

.links ul{
    list-style: none;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #1e73d8;
  transition: width 0.3s ease;
}

.links a:hover {
  color: #1e73d8;
}

.links a:hover::after {
  width: 100%;
}

/* CONTACT TEXT */
.info p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;           /* allow items to move */
    gap: 30px;
  }

  .logo-footer {
    max-width: 100%;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  #footer {
    padding: 50px 20px 20px;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;    /* stack sections */
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .logo-row {
    justify-content: center;
  }

  .links ul {
    padding: 0;
  }

  .links li {
    margin-bottom: 8px;
  }

  .links a {
    display: inline-block;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .f-strong {
    font-size: 16px;
  }

  .f-parg {
    font-size: 13px;
  }

  .links h5,
  .info h5 {
    font-size: 15px;
  }

  .info p,
  .links a {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}
/* ================= SCROLL ANIMATION ================= */

/* hidden state */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* left animation */
.animate-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

/* right animation */
.animate-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

/* when visible */
.animate.show,
.animate-left.show,
.animate-right.show {
  opacity: 1;
  transform: translate(0, 0);
}