/* ================= ROOT ================= */
/* ================= COLOR ROOT ================= */
:root {
  /* Brand / Primary */
  --primary: #2563eb;        /* Blue */
  --primary-light: #e0ecff;  /* Light Blue BG */
  --primary-dark: #1e40af;

  /* Accent */
  --accent: #ff6a00;         /* Fire Accent */

  /* Text */
  --text-dark: #0f172a;
  --text-muted: #64748b;

  /* UI */
  --white: #ffffff;
  --border: #e5e7eb;

  /* Effects */
  --radius: 12px;
  --transition: 0.35s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
}
/* ================= NAVBAR ================= */
.main-nav{
  background: #eaf4ff;               /* Light blue */
  border-bottom: 1px solid #dbeafe;
  padding: 12px 0;
}

/* LOGO */
.navbar-brand img{
  height: 148px;
}

/* NAV LINKS – DESKTOP */
.nav-link{
  font-size: 20px;                   /* ✅ CLEAR DESKTOP SIZE */
  font-weight: 500;
  color: #0f172a;
  margin: 0 16px;
  padding: 6px 0;
  position: relative;
  line-height: 1.4;
}

/* UNDERLINE EFFECT */
.nav-link::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #1e88e5;
  transition: 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after{
  width: 100%;
}

.nav-link:hover{
  color: #1565c0;
}

/* CONTACT BUTTON */
.nav-btn{
  font-size: 15.5px;
  font-weight: 500;
  background: #1e88e5;
  color: #ffffff;
  padding: 9px 20px;
  border-radius: 26px;
}

.nav-btn:hover{
  background: #1565c0;
  color: #ffffff;
}

/* ================= MOBILE ================= */
@media (max-width: 991px){

  .navbar-collapse{
    background: #ffffff;
    padding: 18px;
    margin-top: 10px;
    border-radius: 12px;
  }

  .nav-link{
    font-size: 17.5px;               /* Mobile readable */
    margin: 12px 0;
  }

  .nav-link::after{
    bottom: -4px;
  }

  .nav-btn{
    width: 100%;
    text-align: center;
    margin-top: 14px;
    padding: 11px;
  }
}


/* ================= HERO SECTION ================= */

.hero-slide{
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

/* DARK OVERLAY */
.hero-slide::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}

/* CONTENT */
.hero-content{
  position: relative;
  max-width: 650px;
  color: #ffffff;
}

.hero-content h1{
  font-size: 54px;        /* DESKTOP CLEAR */
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero-content p{
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BUTTONS */
.hero-buttons .btn{
  padding: 12px 28px;
  font-size: 15.5px;
  border-radius: 30px;
  margin-right: 12px;
}

.hero-btn-primary{
  background: #1e88e5;
  color: #ffffff;
  border: none;
}

.hero-btn-primary:hover{
  background: #1565c0;
  color: #ffffff;
}

.hero-btn-outline{
  border: 2px solid #ffffff;
  color: #ffffff;
}

.hero-btn-outline:hover{
  background: #ffffff;
  color: #0f172a;
}

/* CONTROLS */
.carousel-control-prev,
.carousel-control-next{
  width: 60px;
}

.carousel-indicators [data-bs-target]{
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ================= MOBILE ================= */
@media (max-width: 991px){

  .hero-slide{
    height: 75vh;
  }

  .hero-content h1{
    font-size: 34px;
  }

  .hero-content p{
    font-size: 16px;
  }

  .hero-buttons .btn{
    padding: 10px 22px;
    margin-bottom: 10px;
  }
}


/* ================= ABOUT SECTION ================= */
.about-section{
  padding: 90px 0;
  background: #ffffff;
}

/* IMAGE */
.about-image img{
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* CONTENT */
.about-content{
  max-width: 560px;
}

.about-subtitle{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1e88e5;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-content h2{
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
}

.about-content h2 span{
  color: #1e88e5;
}

.about-content p{
  font-size: 16.5px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* LIST */
.about-list{
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.about-list li{
  font-size: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
}

.about-list i{
  color: #1e88e5;
  font-size: 18px;
}

/* BUTTON */
.about-btn{
  background: #1e88e5;
  color: #ffffff;
  padding: 12px 26px;
  font-size: 15.5px;
  border-radius: 30px;
}

.about-btn:hover{
  background: #1565c0;
  color: #ffffff;
}

/* ================= MOBILE ================= */
@media (max-width: 991px){

  .about-section{
    padding: 70px 0;
  }

  .about-content h2{
    font-size: 30px;
  }

  .about-content{
    max-width: 100%;
  }
}


/* ================= SERVICES SECTION ================= */
.services-section{
  padding: 90px 0;
  background: #f8fbff;
}

.section-header h2{
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-header h2 span{
  color: #1e88e5;
}

.section-header p{
  font-size: 17px;
  color: #64748b;
}

/* SERVICE CARD */
.service-card{
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  transition: 0.3s ease;
  border: 1px solid #e5e7eb;
}

.service-card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.service-content{
  padding: 26px 22px;
  text-align: center;
}

.service-content h4{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-content p{
  font-size: 15.5px;
  color: #475569;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 991px){

  .services-section{
    padding: 70px 0;
  }

  .section-header h2{
    font-size: 28px;
  }

  .service-card img{
    height: 200px;
  }
}


/* ================= PARALLAX SECTION ================= */
.parallax-section{
  background-image: url('../img/BGS.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* PARALLAX */
  position: relative;
  min-height: 420px;
}

/* DARK OVERLAY */
.parallax-overlay{
  background: rgba(15, 23, 42, 0.65);
  min-height: 420px;
  display: flex;
  align-items: center;
}

/* CONTENT */
.parallax-content{
  max-width: 800px;
  margin: auto;
  color: #ffffff;
}

.parallax-content h2{
  font-size: 42px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
}

.parallax-content p{
  font-size: 17.5px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 30px;
}

/* BUTTONS */
.parallax-buttons .btn{
  padding: 12px 28px;
  font-size: 15.5px;
  border-radius: 30px;
  margin: 0 8px;
}

.parallax-btn-primary{
  background: #1e88e5;
  color: #ffffff;
  border: none;
}

.parallax-btn-primary:hover{
  background: #1565c0;
  color: #ffffff;
}

.parallax-btn-outline{
  border: 2px solid #ffffff;
  color: #ffffff;
}

.parallax-btn-outline:hover{
  background: #ffffff;
  color: #0f172a;
}

/* ================= MOBILE ================= */
@media (max-width: 991px){


  .parallax-content h2{
    font-size: 30px;
  }

  .parallax-content p{
    font-size: 16px;
  }

  .parallax-buttons .btn{
    margin-bottom: 12px;
  }
}


/* ================= HOME GALLERY ================= */
.home-gallery-section{
  padding: 90px 0;
  background: #f8fbff;
}

/* GALLERY ITEM */
.home-gallery-item{
  display: block;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.home-gallery-item img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Hover Overlay */
.home-gallery-item::after{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30,136,229,0.55);
  opacity: 0;
  transition: 0.3s ease;
}

.home-gallery-item:hover::after{
  opacity: 1;
}

.home-gallery-item:hover img{
  transform: scale(1.08);
}

/* BUTTON */
.home-gallery-btn{
  background: #1e88e5;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15.5px;
}

.home-gallery-btn:hover{
  background: #1565c0;
  color: #ffffff;
}

/* MOBILE */
@media (max-width: 991px){
  .home-gallery-section{
    padding: 70px 0;
  }

  .home-gallery-item img{
    height: 160px;
  }
}


/* ================= CONTENT + IMAGE SECTION ================= */
.content-image-section{
  padding: 90px 0;
  background: #ffffff;
}

/* LEFT CONTENT */
.content-box{
  max-width: 560px;
}

.section-tag{
  font-size: 14px;
  font-weight: 600;
  color: #1e88e5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.content-box h2{
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
}

.content-box p{
  font-size: 16.5px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* LIST */
.content-list{
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.content-list li{
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.content-list i{
  color: #1e88e5;
  font-size: 18px;
}

/* BUTTON */
.content-btn{
  background: #1e88e5;
  color: #ffffff;
  padding: 12px 28px;
  font-size: 15.5px;
  border-radius: 30px;
}

.content-btn:hover{
  background: #1565c0;
  color: #ffffff;
}

/* RIGHT IMAGE */
.image-box img{
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* ================= MOBILE ================= */
@media (max-width: 991px){

  .content-image-section{
    padding: 70px 0;
  }

  .content-box{
    max-width: 100%;
  }

  .content-box h2{
    font-size: 30px;
  }
}


.creative-testimonial-section{
  padding: 90px 0;
  background: #f8fbff;
}

.testimonial-wrapper{
  position: relative;
  overflow: hidden;
}

.testimonial-track{
  display: flex;
  transition: transform 0.5s ease;
  cursor: grab;
}

.testimonial-item{
  min-width: 33.3333%;
  background: #ffffff;
  margin: 0 10px;
  padding: 32px 26px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.user-icon{
  font-size: 48px;
  color: #1e88e5;
  margin-bottom: 14px;
}

.testimonial-item p{
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
}

.testimonial-item h5{
  font-size: 17px;
  font-weight: 600;
}

.testimonial-item span{
  font-size: 14px;
  color: #64748b;
}

.testimonial-controls{
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.testimonial-controls button{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: #1e88e5;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}

.testimonial-controls button:hover{
  background: #1565c0;
}

/* MOBILE */
@media(max-width:991px){
  .testimonial-item{
    min-width: 100%;
    margin: 0;
  }
}


/* ================= FOOTER FORMAT 3 ================= */
.footer-pro{
  background: #020617;
  color: #cbd5f5;
  font-size: 15px;
}

/* TOP */
.footer-top-pro{
  padding: 80px 0 60px;
}

/* BRAND */
.footer-brand img{
  height: 120px;
  margin-bottom: 16px;
}

.footer-brand p{
  line-height: 1.7;
  max-width: 420px;
}

/* BLOCK */
.footer-block h5{
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-block ul{
  list-style: none;
  padding: 0;
}

.footer-block ul li{
  margin-bottom: 10px;
}

.footer-block a{
  color: #cbd5f5;
  text-decoration: none;
}

.footer-block a:hover{
  color: #38bdf8;
}

/* CONTACT LINE */
.footer-line{
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: center;
}

.footer-line.align-top{
  align-items: flex-start;
}

.footer-line i{
  color: #38bdf8;
  font-size: 18px;
  min-width: 20px;
}

.footer-line span{
  line-height: 1.6;
}

/* SOCIAL */
.footer-social-pro{
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
}

.social-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-wrap span{
  font-weight: 500;
}

.social-icons{
  display: flex;
  gap: 12px;
}

.social-icons a{
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5f5;
  transition: 0.3s;
}

.social-icons a:hover{
  background: #38bdf8;
  color: #020617;
  transform: translateY(-3px);
}

/* COPYRIGHT */
.footer-copy-pro{
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
}

.footer-copy-pro span{
  display: block;
  margin-top: 6px;
}

.footer-copy-pro a{
  color: #38bdf8;
  font-weight: 500;
}

/* MOBILE */
@media(max-width:991px){
  .social-wrap{
    flex-direction: column;
    gap: 12px;
  }

  .footer-top-pro{
    padding: 60px 0 40px;
  }
}


/* ================= FLOATING WEBSITE VIEWS ================= */
.floating-views{
  position: fixed;
  left: 15px;
  bottom: 120px;
  background: linear-gradient(135deg,#1e88e5,#1565c0);
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 9999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  animation: floatView 2.5s ease-in-out infinite;
}

.floating-views i{
  font-size: 18px;
}

/* FLOAT ANIMATION */
@keyframes floatView{
  0%,100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(-6px);
  }
}

/* MOBILE */
@media(max-width:768px){
  .floating-views{
    left: 10px;
    bottom: 90px;
    font-size: 13px;
    padding: 8px 12px;
  }
}


/* ================= WHATSAPP FLOATING ================= */
.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 110px;
  background: linear-gradient(135deg,#25D366,#1ebe5d);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  animation: floatWA 2.5s ease-in-out infinite;
}

.whatsapp-float i{
  font-size: 22px;
}

/* Hover */
.whatsapp-float:hover{
  color: #ffffff;
  transform: translateY(-3px);
}

/* FLOAT ANIMATION */
@keyframes floatWA{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* MOBILE VIEW */
@media(max-width:768px){
  .whatsapp-float{
    right: 20px;
    bottom: 90px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .wa-text{
    display: none; /* icon only on mobile */
  }
}


/* ================= PARALLAX PAGE HEADER ================= */
.page-header-parallax{
  background-image: url("../img/bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* PARALLAX */
  height: 420px;
  position: relative;
}

/* DARK OVERLAY */
.header-overlay{
  background: rgba(2,6,23,0.65);
  height: 100%;
  display: flex;
  align-items: center;
}

/* CONTENT */
.header-content{
  text-align: center;
  color: #ffffff;
}

.header-content h1{
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 10px;
}

.header-content p{
  font-size: 17px;
  color: #e5e7eb;
  max-width: 600px;
  margin: auto;
}

/* MOBILE FIX (Disable parallax) */
@media(max-width:991px){
  .page-header-parallax{
    background-attachment: scroll;
    height: 320px;
  }

  .header-content h1{
    font-size: 32px;
  }

  .header-content p{
    font-size: 15.5px;
  }
}


/* ================= ABOUT CONTENT SECTION ================= */
.about-content-section{
  padding: 90px 0;
  background: #ffffff;
}

/* TEXT */
.about-text h6{
  font-size: 14px;
  font-weight: 600;
  color: #1e88e5;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.about-text h2{
  font-size: 38px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 18px;
}

.about-text p{
  font-size: 16.5px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 14px;
}

/* IMAGE */
.about-image-box img{
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* MISSION / VISION */
.mv-card{
  background: #f8fbff;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.mv-card i{
  font-size: 36px;
  color: #1e88e5;
  margin-bottom: 14px;
}

.mv-card h4{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.mv-card p{
  font-size: 15.5px;
  line-height: 1.6;
  color: #475569;
}

/* MOBILE */
@media(max-width:991px){
  .about-content-section{
    padding: 70px 0;
  }

  .about-text h2{
    font-size: 30px;
  }
}


/* ================= SERVICES GRID ================= */
.services-grid-section{
  padding: 90px 0;
  background: #f8fbff;
}

/* TITLE */
.section-title h2{
  font-size: 36px;
  font-weight: 600;
}

.section-title h2 span{
  color: #1e88e5;
}

.section-title p{
  font-size: 17px;
  color: #64748b;
  margin-top: 8px;
}

/* SERVICE CARD */
.service-box{
  background: #ffffff;
  padding: 34px 28px;
  border-radius: 18px;
  text-align: center;
  height: 100%;
  transition: 0.35s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.service-box i{
  font-size: 40px;
  color: #1e88e5;
  margin-bottom: 16px;
}

.service-box h4{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-box p{
  font-size: 15.5px;
  line-height: 1.6;
  color: #475569;
}

/* HOVER EFFECT */
.service-box:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}

/* MOBILE */
@media(max-width:991px){
  .services-grid-section{
    padding: 70px 0;
  }

  .section-title h2{
    font-size: 28px;
  }
}


/* ================= CLEAN GALLERY ================= */
.gallery-clean{
  padding: 90px 0;
  background: #ffffff;
}

/* ITEM */
.gallery-clean-item{
  position: relative;
  display: block;
  height: 230px;   /* SAME SIZE */
  border-radius: 18px;
  overflow: hidden;
}

/* IMAGE */
.gallery-clean-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* HOVER ICON */
.gallery-hover{
  position: absolute;
  inset: 0;
  background: rgba(30,136,229,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

.gallery-hover i{
  font-size: 34px;
  color: #ffffff;
}

/* HOVER EFFECT */
.gallery-clean-item:hover img{
  transform: scale(1.08);
}

.gallery-clean-item:hover .gallery-hover{
  opacity: 1;
}

/* MOBILE */
@media(max-width:991px){
  .gallery-clean{
    padding: 70px 0;
  }

  .gallery-clean-item{
    height: 180px;
  }
}


/* ================= CONTACT SECTION ================= */
.contact-section{
  padding: 90px 0;
  background: #f8fbff;
}

/* LEFT */
.contact-info-box{
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.contact-info-box h3{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-info-box p{
  font-size: 15.5px;
  color: #64748b;
  margin-bottom: 22px;
}

/* ITEM */
.contact-item{
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15.5px;
}

.contact-item i{
  font-size: 18px;
  color: #1e88e5;
  min-width: 22px;
}

.contact-item.align-top{
  align-items: flex-start;
}

.contact-item a{
  color: #0f172a;
  text-decoration: none;
}

.contact-item a:hover{
  color: #1e88e5;
}

/* SOCIAL */
.contact-social{
  margin-top: 22px;
  display: flex;
  gap: 12px;
}

.contact-social a{
  width: 40px;
  height: 40px;
  background: #eef5ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e88e5;
  font-size: 18px;
  transition: 0.3s;
}

.contact-social a:hover{
  background: #1e88e5;
  color: #ffffff;
}

/* FORM */
.contact-form-box{
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.contact-form-box h3{
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-form-box .form-control{
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
}

.contact-btn{
  background: #1e88e5;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 15.5px;
}

.contact-btn:hover{
  background: #1565c0;
  color: #ffffff;
}

/* MAP */
.contact-map iframe{
  width: 100%;
  height: 360px;
  border: none;
  border-radius: 18px;
}

/* MOBILE */
@media(max-width:991px){
  .contact-section{
    padding: 70px 0;
  }

  .contact-form-box{
    padding: 30px;
  }
}
