body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #111;
  background-color: #f2ebfd;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
    /*padding: 10px;*/
  background: #fff;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  height: 50px;
}

.menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.hero {
  background-image: url(../images/hero-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Fallback background color if image is missing */
  background-color: #f3f4f6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  color: #6A2BD9;
  font-size: 40px;
}

.hero-img {
  width: 100%;
  border-radius: 12px;
}

.buttons-1 {
  margin-top: 20px;
}

.primary-1 {
    background: #E11D2E;
    color: #fff;
}
.btn-1 {
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    margin-right: 10px;
    cursor: pointer;
    display: inline-block;
}

.secondary-1 {
  border: 2px solid #6A2BD9;
  color: #6A2BD9;
}

.section {
  padding: 70px 0;
  text-align: center;
}

.light {
  background: #d8d4f5;
}
.mt-0
{
  margin-top: 0px;
}

.section h2 {
  color: #6A2BD9;
  margin-bottom: 30px;
}

.subtitle {
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.cards {
  background: #f5f2fd;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.cards img {
  width: 110px;
  height: 110px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.img-cards img {
  width: 100%;
  border-radius: 10px;
}

.center {
  display: inline-block;
  margin-top: 30px;
}
.pb-0
{
  padding-bottom: 0px;
}


/* service */
.services-section {
    /*background: linear-gradient(135deg, #4A00E0, #8E2DE2);*/
    padding: 60px 0;
    overflow: hidden;
}

/* CAROUSEL TRACK */
.services-track {
    /*display: flex;
    gap: 24px;*/
   /* animation: scroll 20s linear infinite;*/
}

/* cards BASE */
.service-cards {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.service-cards:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.service-cards img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* CONTENT */
.service-content {
    padding: 20px;
    text-align: center;
}
.service-content i {
    font-size: 32px;
    color: #8528FD;
    margin-bottom: 10px;
}
.service-content h5 {
    font-weight: 600;
    margin-bottom: 6px;
}
.service-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* SIZES */
.rectangle-cards {
    width: 340px;
}
.square-cards {
    width: 260px;
}

/* AUTO SCROLL */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/*end of service*/

/* footer */
.footer-big {
  background-color: #df1d2e;
  /*background: linear-gradient(135deg, #4A00E0, #8E2DE2);*/
  color: #ffffff;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-big p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-bottom {
  background-color: #000;
}


nav a {
  color: #fff !important;
  margin-left: 20px;
  text-decoration: none;
  position: relative;
  transition: color 0.25s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: #00BFA6;
  transition: width 0.25s ease;
}

nav a:hover {
  color: #00BFA6 !important;
}

nav a:hover::after {
  width: 100%;
}


/* end of footer*/


/*menu*/

.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  height: 70px;
  margin-top:8px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.menu li {
  cursor: pointer;
  font-weight: 500;
}

/* Mobile toggle button */
.menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
}

/* Mobile menu */
/*.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #eee;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 12px 0;
}

.mobile-menu li {
  padding: 12px 20px;
  border-bottom: 1px solid #f2f2f2;
  font-weight: 500;
}


.mobile-menu.active {
  display: block;
}

.menu-toggle {
  cursor: pointer;
  touch-action: manipulation;
}
*/
html, body {
  width: 100%;
  overflow-x: hidden;
}

.mobile-menu {
  width: 100%;
  position: relative;
}



/*end of menu*/



  /*serices */
.service-cards {
    display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  height: 100%;
}

.service-cards img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 18px;
}

.service-content i {
  font-size: 26px;
  color: #8528fd;
  margin-bottom: 8px;
}

.service-content h5 {
  font-weight: 600;
  margin-bottom: 6px;
}

.service-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/*end of services*/

