body {
  font-family: Arial, sans-serif;
}

.hero {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 22px 0;
  text-align: center;
}

.service-card {
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* footer {
  background: #111;
  color: #ccc;
  padding: 50px 0 20px;
}

footer a {
  color: #ccc;
  text-decoration: none;
}

footer a:hover {
  color: white;
} */

.dropdown-menu .dropdown-toggle::after {
  float: right;
  margin-top: 8px;
}

@media (min-width: 992px) {
  .dropdown-menu li {
    position: relative;
  }

  .dropdown-menu .submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
  }

  .dropdown-menu > li:hover > .submenu {
    display: block;
  }
}

.hero-section {
  min-height: 60vh;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  padding: 18px 0;
  overflow: hidden;
}

/* LEFT CONTENT */
.hero-tag {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
}

.hero-title span {
  color: #2563eb;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #6b7280;
}

.hero-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: #374151;
}

.hero-point i {
  color: #2563eb;
  font-size: 1.1rem;
}

/* BUTTONS */
.btn-primary {
  background: #2563eb;
  border: none;
  border-radius: 12px;
  padding: 14px 30px;
  font-weight: 600;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-outline-dark {
  border-radius: 12px;
  padding: 14px 30px;
  font-weight: 600;
}

/* RIGHT SIDE ANIMATION */
.tech-animation {
  position: relative;
  width: 100%;
  height: 550px;
}

.center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 3s infinite;
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.3);
}

.inner-circle {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-circle i {
  font-size: 4rem;
  color: #2563eb;
}

/* FLOATING BOXES */
.floating-card {
  position: absolute;
  background: white;
  padding: 15px 22px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}

.floating-card i {
  color: #2563eb;
  font-size: 1.2rem;
}

.card-1 {
  top: 10%;
  left: 15%;
}

.card-2 {
  top: 20%;
  right: 10%;
}

.card-3 {
  bottom: 30%;
  left: 5%;
}

.card-4 {
  bottom: 10%;
  left: 30%;
}

.card-5 {
  bottom: 15%;
  right: 5%;
}

.card-6 {
  top: 50%;
  right: 0;
}

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

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .hero-section {
    padding: 18px 0;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-points {
    align-items: center;
  }

  .tech-animation {
    height: 450px;
    margin-top: 50px;
  }

  .floating-card {
    font-size: 14px;
    padding: 12px 16px;
  }

  .center-circle {
    width: 180px;
    height: 180px;
  }

  .inner-circle {
    width: 110px;
    height: 110px;
  }

  .inner-circle i {
    font-size: 3rem;
  }

  /* HIDE RIGHT SIDE ANIMATION ON MOBILE/TABLET */
  .tech-animation {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.4;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-point {
    justify-content: center;
    text-align: left;
  }

  .btn-lg {
    width: 100%;
  }

  .floating-card {
    position: relative;
    margin: 10px auto;
    width: fit-content;
  }

  .tech-animation {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .center-circle {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    margin-bottom: 30px;
  }

  /* HIDE RIGHT SIDE ANIMATION ON MOBILE/TABLET */
  .tech-animation {
    display: none;
  }
}

.services-section {
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

/* TITLE */
.section-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111827;
}

.section-title span {
  color: #2563eb;
}

.section-description {
  max-width: 700px;
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-top: 20px;
}

/* SERVICE CARD */
.modern-service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 28px 22px;
  overflow: hidden;
  transition: 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
  height: 100%;
  z-index: 1;
}

.modern-service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* ICON */
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.4s;
}

.service-icon i {
  color: white;
  font-size: 2rem;
}

.service-icon.marketing {
  background: linear-gradient(135deg, #10b981, #059669);
}

.service-icon.mobile {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

/* CARD HOVER ICON */
.modern-service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.08);
}

/* CONTENT */
.modern-service-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111827;
}

.modern-service-card p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* BUTTON */
.service-btn {
  text-decoration: none;
  color: #2563eb;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.service-btn i {
  transition: 0.3s;
}

.service-btn:hover i {
  transform: translateX(6px);
}

/* GLOW EFFECT */
.service-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  z-index: -1;
  transition: 0.4s;
}

.modern-service-card:hover .service-glow {
  transform: scale(1.3);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

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

/* ============================= */
/* ABOUT SECTION RESPONSIVE CSS */
/* ============================= */

.about-section {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  overflow: hidden;
  padding: 22px 0;
}

/* IMAGE WRAPPER */
.about-image-wrapper {
  position: relative;
  padding: 10px;
}

/* MAIN IMAGE */
.main-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  animation: floatImage 5s ease-in-out infinite;
}

.main-image img {
  width: 100%;
  border-radius: 24px;
  transition: 0.5s ease;
}

.main-image:hover img {
  transform: scale(1.04);
}

/* FLOATING IMAGE */
.floating-image {
  position: absolute;
  bottom: -15px;
  right: 0;
  width: 190px;
  border-radius: 18px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  animation: floatingCard 4s ease-in-out infinite;
}

.floating-image img {
  width: 100%;
}

/* EXPERIENCE CARD */
.experience-card {
  position: absolute;
  top: 20px;
  left: 0;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
  animation: floatingCard 3s ease-in-out infinite;
}

.experience-card h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.experience-card p {
  margin: 0;
  font-size: 13px;
}

/* BADGE */
.about-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
}

/* TITLE */
.about-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 18px;
}

.about-title span {
  color: #2563eb;
}

/* TEXT */
.about-text {
  color: #6b7280;
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 15px;
}

/* FEATURES */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 25px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #374151;
  font-weight: 500;
  font-size: 15px;
}

.feature-box i {
  color: #2563eb;
  font-size: 1rem;
}

/* BUTTON */
.btn-primary {
  background: #2563eb;
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}

/* ANIMATION */
@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes floatingCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ============================= */
/* TABLET RESPONSIVE */
/* ============================= */

@media (max-width: 991px) {
  .about-section {
    padding: 18px 0;
  }

  .about-title {
    font-size: 2rem;
    margin-top: 15px;
  }

  .floating-image {
    width: 160px;
  }

  .experience-card {
    padding: 15px 18px;
  }
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
    text-align: center;
  }

  .about-image-wrapper {
    margin-bottom: 25px;
    padding: 0;
  }

  .floating-image,
  .experience-card {
    display: none;
  }

  .about-title {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .about-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-features {
    align-items: center;
    margin-top: 20px;
  }

  .feature-box {
    justify-content: center;
    text-align: left;
    font-size: 14px;
  }

  .btn-primary {
    width: auto;
    padding: 12px 24px;
    margin-top: 10px;
  }
}

/* EXTRA SMALL MOBILE */

@media (max-width: 576px) {
  .about-section {
    padding: 22px 0;
  }

  .about-title {
    font-size: 1.6rem;
  }

  .about-text {
    font-size: 14px;
  }

  .main-image {
    border-radius: 18px;
  }

  .main-image img {
    border-radius: 18px;
  }
}

/* SECTION */
.why-webalign-section {
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  overflow: hidden;
  padding: 50px 0;
}

/* BADGE */
.why-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* TITLE */
.why-title {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
}

.why-title span {
  color: #2563eb;
}

/* DESCRIPTION */
.why-description {
  color: #6b7280;
  line-height: 1.8;
  font-size: 1rem;
}

/* FEATURES */
.why-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #374151;
  font-weight: 500;
}

.why-feature i {
  color: #2563eb;
}

/* IMAGE WRAPPER */
.why-image-wrapper {
  position: relative;
  animation: floatingCard 3s ease-in-out infinite;
}

/* MAIN IMAGE */
.why-main-image {
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: 0.5s ease;
}

.why-main-image:hover {
  transform: scale(1.02);
}

/* FLOATING BOX */
.floating-box {
  position: absolute;
  background: white;
  padding: 14px 20px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  animation: floatBox 4s ease-in-out infinite;
}

.floating-box i {
  color: #2563eb;
  font-size: 1.2rem;
}

/* POSITIONS */
.box-1 {
  top: 10%;
  left: -20px;
}

.box-2 {
  top: 25%;
  right: -15px;
}

.box-3 {
  bottom: 25%;
  left: -10px;
}

.box-4 {
  bottom: 10%;
  right: -20px;
}

/* ================================= */
/* COUNTER SECTION */
/* ================================= */

.counter-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
}

.counter-wrapper {
  background: white;
  border-radius: 30px;
  padding: 40px 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* COUNTER BOX */
.counter-box {
  padding: 20px;
  border-radius: 20px;
  transition: 0.4s ease;
}

.counter-box:hover {
  transform: translateY(-8px);
}

/* ICON */
.counter-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto auto 20px;
}

.counter-icon i {
  color: white;
  font-size: 2rem;
}

/* COLORS */
.counter-icon.success {
  background: linear-gradient(135deg, #10b981, #059669);
}

.counter-icon.warning {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.counter-icon.danger {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
}

/* NUMBER */
.counter-number {
  font-size: 2.7rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 10px;
}

/* TEXT */
.counter-box p {
  margin: 0;
  color: #6b7280;
  font-weight: 500;
  font-size: 1rem;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .counter-section {
    padding: 35px 0;
  }

  .counter-wrapper {
    padding: 30px 20px;
  }

  .counter-number {
    font-size: 2.2rem;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 576px) {
  .counter-section {
    padding: 25px 0;
  }

  .counter-wrapper {
    border-radius: 22px;
    padding: 25px 15px;
  }

  .counter-box {
    padding: 15px 10px;
  }

  .counter-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 15px;
  }

  .counter-icon i {
    font-size: 1.5rem;
  }

  .counter-number {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }

  .counter-box p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* ================================= */
/* FAQ SECTION */
/* ================================= */

.faq-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
  overflow: hidden;
}

/* BADGE */
.faq-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

/* TITLE */
.faq-title {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
}

.faq-title span {
  color: #2563eb;
}

/* DESCRIPTION */
.faq-description {
  color: #6b7280;
  line-height: 1.8;
  font-size: 1rem;
}

/* ACCORDION */
.custom-accordion .accordion-item {
  border: none;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.custom-accordion .accordion-button {
  background: white;
  padding: 20px;
  font-weight: 600;
  color: #111827;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #2563eb;
  color: white;
}

.custom-accordion .accordion-body {
  padding: 20px;
  color: #6b7280;
  line-height: 1.8;
}

/* IMAGE WRAPPER */
.faq-image-wrapper {
  position: relative;
}

/* MAIN IMAGE */
.faq-main-image {
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: 0.5s ease;
}

.faq-main-image:hover {
  transform: scale(1.02);
}

/* FLOATING CARD */
.faq-floating-card {
  position: absolute;
  background: white;
  padding: 16px 20px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: floatFaq 4s ease-in-out infinite;
}

.faq-floating-card i {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 16px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.faq-floating-card h5 {
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 700;
}

.faq-floating-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

/* POSITIONS */
.cardf-1 {
  top: 12%;
  left: -20px;
}

.cardf-2 {
  top: 45%;
  right: -20px;
}

.cardf-3 {
  bottom: 10%;
  left: 20px;
}

/* ANIMATION */
@keyframes floatFaq {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-title {
    font-size: 2.2rem;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 768px) {
  .faq-section {
    padding: 0px 0;
    text-align: center;
  }

  .faq-floating-card {
    display: none;
  }

  .faq-image-wrapper {
    display: none;
  }
}

@media (max-width: 576px) {
  .faq-title {
    font-size: 1.8rem;
    line-height: 1.4;
  }

  .faq-description {
    font-size: 14px;
  }

  .custom-accordion .accordion-button {
    padding: 16px;
    font-size: 15px;
  }

  .custom-accordion .accordion-body {
    padding: 16px;
    font-size: 14px;
  }
}

/* ================================= */
/* TESTIMONIAL SECTION */
/* ================================= */

.testimonial-section {
  padding: 10px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  overflow: hidden;
  position: relative;
}

/* ================================= */
/* SECTION HEADER */
/* ================================= */

.testimonial-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.testimonial-title {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
  margin-bottom: 15px;
}

.testimonial-title span {
  color: #2563eb;
}

.testimonial-description {
  max-width: 700px;
  color: #6b7280;
  line-height: 1.8;
  font-size: 1rem;
  margin-top: 15px;
}

/* ================================= */
/* CAROUSEL */
/* ================================= */

#testimonialCarousel {
  position: relative;
}

.carousel-inner {
  padding: 10px 5px;
}

/* ================================= */
/* ROW */
/* ================================= */

.carousel-item .row {
  display: flex;
  flex-wrap: nowrap;
}

/* ================================= */
/* CARD COLUMN */
/* ================================= */

.carousel-item .col-lg-4,
.carousel-item .col-md-6 {
  display: flex;
}

/* ================================= */
/* TESTIMONIAL CARD */
/* ================================= */

.testimonial-card {
  background: #fff;
  border-radius: 25px;
  padding: 30px;

  width: 100%;
  min-height: 420px;

  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);

  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* TOP GLOW EFFECT */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 50%;
}

/* ================================= */
/* QUOTE ICON */
/* ================================= */

.quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}

.quote-icon i {
  color: white;
  font-size: 1.6rem;
}

/* ================================= */
/* REVIEW TEXT */
/* ================================= */

.testimonial-text {
  color: #6b7280;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 25px;

  flex-grow: 1;
}

/* ================================= */
/* USER INFO */
/* ================================= */

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.testimonial-user img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(37, 99, 235, 0.1);
  flex-shrink: 0;
}

.testimonial-user h5 {
  margin-bottom: 4px;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.testimonial-user span {
  color: #6b7280;
  font-size: 14px;
}

/* ================================= */
/* CAROUSEL BUTTONS */
/* ================================= */

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #2563eb;
  border-radius: 50%;
  padding: 18px;
  background-size: 18px;
  transition: 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  transform: scale(1.08);
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .testimonial-section {
    padding: 10px 0;
  }

  .testimonial-title {
    font-size: 2.2rem;
  }

  .testimonial-card {
    min-height: 390px;
    padding: 28px 24px;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 768px) {
  .testimonial-section {
    padding: 0px 0;
    overflow: hidden;
  }

  .testimonial-title {
    font-size: 1.9rem;
    line-height: 1.4;
  }

  .testimonial-description {
    font-size: 14px;
    line-height: 1.7;
  }

  /* ONE CARD PER ROW */
  .carousel-item .row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;

    scrollbar-width: none;
  }

  .carousel-item .row::-webkit-scrollbar {
    display: none;
  }

  .carousel-item .col-lg-4,
  .carousel-item .col-md-6 {
    min-width: 100%;
    scroll-snap-align: center;
    padding: 0;
  }

  .testimonial-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 20px;
  }

  .testimonial-card::before {
    width: 120px;
    height: 120px;
    top: -40px;
    right: -40px;
  }

  .quote-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    margin-bottom: 18px;
  }

  .quote-icon i {
    font-size: 1.4rem;
  }

  .testimonial-text {
    font-size: 14px;
    line-height: 1.7;
  }

  .testimonial-user {
    gap: 12px;
  }

  .testimonial-user img {
    width: 55px;
    height: 55px;
  }

  .testimonial-user h5 {
    font-size: 15px;
  }

  .testimonial-user span {
    font-size: 13px;
  }

  /* HIDE BUTTONS */
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

/* ================================= */
/* MODERN FOOTER */
/* ================================= */

.modern-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

/* TOP BORDER EFFECT */
.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #4f46e5);
}

/* COMPANY */
.footer-brand h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.9;
  margin-bottom: 25px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #2563eb;
  transform: translateY(-4px);
}

/* LINKS */
.footer-links h5,
.footer-contact h5 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 22px;
  font-weight: 700;
}

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

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

.footer-links ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

/* CONTACT */
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: #94a3b8;
}

.footer-contact-item i {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  flex-shrink: 0;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 50px;
  padding: 22px 0;
}

.footer-bottom p,
.footer-bottom a {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: white;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .modern-footer {
    padding-top: 55px;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 576px) {
  .modern-footer {
    padding-top: 45px;
    text-align: center;
  }

  .footer-brand h2 {
    font-size: 1.8rem;
  }

  .footer-brand p {
    font-size: 14px;
    line-height: 1.8;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links,
  .footer-contact {
    margin-top: 10px;
  }

  .footer-contact-item {
    justify-content: center;
    text-align: left;
  }

  .footer-bottom {
    margin-top: 35px;
    padding: 18px 0;
  }
}

/* ================================= */
/* FINAL PROFESSIONAL NAVBAR */
/* ================================= */

.modern-navbar {
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 999;
}

/* ================================= */
/* LOGO */
/* ================================= */

.navbar-brand {
  text-decoration: none;
  font-weight: 800;
  display: flex;
  align-items: center;
}

/* DESKTOP LOGO */
.desktop-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-text,
.logo-highlight {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.5px;
}

.logo-text {
  color: #fff;
}

.logo-highlight {
  color: #2563eb;
}

/* MOBILE LOGO */
.mobile-logo {
  display: none;
}

.logo-short {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}

/* ================================= */
/* NAVBAR MENU */
/* ================================= */

.navbar-nav {
  gap: 8px;
  align-items: center;
}

.navbar-nav .nav-item {
  position: relative;
}

/* NAV LINK */
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px !important;
  border-radius: 12px;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}

/* ACTIVE + HOVER */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: white !important;
  background: rgba(255, 255, 255, 0.06);
}

/* ================================= */
/* DROPDOWN ICON */
/* ================================= */

.dropdown-toggle::after {
  border: none !important;
  content: "\F282";
  font-family: "bootstrap-icons";
  font-size: 11px;
  margin-left: 7px;
  color: #2563eb;
  vertical-align: middle;
  transition: 0.3s ease;
}

/* ROTATE */
.dropdown.show > .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* ================================= */
/* DROPDOWN MENU */
/* ================================= */

.dropdown-menu {
  border: none;
  border-radius: 18px;
  padding: 12px;
  min-width: 240px;
  background: white;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  animation: dropdownFade 0.25s ease;
}

/* DROPDOWN ITEM */
.dropdown-item {
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  transition: 0.3s ease;
  background: transparent !important;
}

/* HOVER */
.dropdown-item:hover {
  background: rgba(37, 99, 235, 0.08) !important;
  color: #2563eb !important;
}

/* REMOVE BLACK */
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item.active,
.dropdown-item.show {
  background: rgba(37, 99, 235, 0.08) !important;
  color: #2563eb !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ================================= */
/* MULTI DROPDOWN */
/* ================================= */

.dropdown-submenu {
  position: relative;
}

/* SUBMENU */
.submenu {
  position: absolute;
  top: 0;
  left: 102%;
  display: none;
  border-radius: 18px;
}

/* SHOW SUBMENU */
.dropdown-submenu.show > .submenu {
  display: block;
}

/* SUBMENU ARROW */
.dropdown-submenu > .dropdown-item::after {
  content: "\F285";
  font-family: "bootstrap-icons";
  float: right;
  color: #2563eb;
  font-size: 11px;
}

/* ================================= */
/* BUTTON */
/* ================================= */

.navbar-btn {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white !important;
  border-radius: 14px;
  padding: 12px 24px !important;
  font-weight: 600;
  transition: 0.3s ease;
  border: none;
}

.navbar-btn:hover {
  transform: translateY(-3px);
}

/* ================================= */
/* TOGGLER */
/* ================================= */

.navbar-toggler {
  border: none;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* TOGGLE ICON */
.navbar-toggler-icon {
  background-image: none;
  width: 24px;
  height: 2px;
  background: white;
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: white;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

/* ================================= */
/* ANIMATION */
/* ================================= */

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================= */
/* TABLET + MOBILE */
/* ================================= */

@media (max-width: 991px) {
  /* MOBILE MENU */
  .navbar-collapse {
    background: #0f172a;
    margin-top: 16px;
    padding: 18px;
    border-radius: 20px;
  }

  /* MOBILE LOGO */
  .desktop-logo {
    display: none;
  }

  .mobile-logo {
    display: flex;
  }

  /* NAV ITEMS */
  .navbar-nav {
    gap: 4px;
    align-items: stretch;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding: 14px 16px !important;
  }

  /* MOBILE DROPDOWN */
  .dropdown-menu {
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    margin-top: 8px;
    border-radius: 16px;
  }

  .dropdown-item {
    color: #cbd5e1 !important;
  }

  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: white !important;
  }

  /* SUBMENU */
  .submenu {
    position: static;
    display: none;
    margin-top: 8px;
    margin-left: 0;
    padding-left: 12px;
    background: transparent !important;
    box-shadow: none !important;
  }

  .dropdown-submenu.show > .submenu {
    display: block;
  }

  .submenu .dropdown-item {
    color: #cbd5e1 !important;
  }

  .submenu .dropdown-item:hover {
    color: white !important;
  }

  /* BUTTON */
  .navbar-btn {
    width: 100%;
    margin-top: 14px;
    text-align: center;
  }
}

/* SMALL MOBILE */
@media (max-width: 576px) {
  .modern-navbar {
    padding: 10px 0;
  }

  .navbar-toggler {
    width: 46px;
    height: 46px;
  }
}

/* ================================= */
/* COMPANY HISTORY SECTION */
/* ================================= */

.history-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

/* BADGE */
.history-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.history-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-top: 22px;
  margin-bottom: 18px;
}

.history-title span {
  color: #2563eb;
}

/* DESCRIPTION */
.history-description {
  max-width: 720px;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.9;
}

/* ================================= */
/* TIMELINE */
/* ================================= */

.history-timeline {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  margin-top: 50px;
}

/* CENTER LINE */
.history-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2563eb, #4f46e5);
  transform: translateX(-50%);
  border-radius: 10px;
}

/* ITEM */
.history-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 50px;
}

/* LEFT */
.history-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

/* RIGHT */
.history-item:nth-child(even) {
  left: 50%;
}

/* YEAR */
.history-year {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 18px;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.22);
}

/* CARD */
.history-card {
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
}

.history-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ICON */
.history-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.history-item:nth-child(odd) .history-icon {
  margin-left: auto;
}

.history-icon i {
  color: white;
  font-size: 24px;
}

/* TEXT */
.history-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.history-card p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 0;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .history-section {
    padding: 45px 0;
  }

  .history-title {
    font-size: 2.3rem;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 768px) {
  .history-section {
    padding: 35px 0;
  }

  .history-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .history-description {
    font-size: 14px;
    line-height: 1.8;
  }

  /* TIMELINE */
  .history-timeline::before {
    left: 20px;
  }

  /* ITEMS */
  .history-item {
    width: 100%;
    left: 0 !important;
    padding-left: 60px;
    padding-right: 0;
    text-align: left !important;
    margin-bottom: 35px;
  }

  .history-item:nth-child(odd) .history-icon {
    margin-left: 0;
  }

  .history-card {
    padding: 24px 22px;
    border-radius: 20px;
  }

  .history-card h4 {
    font-size: 1.2rem;
  }

  .history-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .history-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .history-icon i {
    font-size: 20px;
  }
}

/* ================================= */
/* COMPANY OVERVIEW SECTION */
/* ================================= */

.company-overview-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

/* BADGE */
.overview-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.overview-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-top: 22px;
  margin-bottom: 22px;
}

/* DESCRIPTION */
.overview-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* FEATURES */
.overview-features {
  margin-top: 28px;
}

.overview-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.overview-feature i {
  color: #2563eb;
  font-size: 18px;
}

.overview-feature span {
  color: #334155;
  font-weight: 500;
}

/* BUTTONS */
.overview-buttons {
  display: flex;
  gap: 16px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.overview-btn-primary {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  border: none;
}

.overview-btn-primary:hover {
  color: white;
  transform: translateY(-3px);
}

.overview-btn-outline {
  border: 1px solid #dbeafe;
  color: #0f172a;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  background: white;
}

.overview-btn-outline:hover {
  background: #f8fbff;
}

/* IMAGE */
.overview-image-wrapper {
  position: relative;
}

.overview-image {
  border-radius: 28px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* FLOATING CARD */
.overview-floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: white;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  animation: floatCard 3s ease-in-out infinite;
}

.overview-floating-card i {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}

.overview-floating-card h5 {
  margin-bottom: 2px;
  font-weight: 700;
  color: #0f172a;
}

.overview-floating-card span {
  color: #64748b;
  font-size: 14px;
}

/* FLOAT */
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .company-overview-section {
    padding: 45px 0;
  }

  .overview-title {
    font-size: 2.4rem;
  }

  .overview-image-wrapper {
    margin-top: 10px;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 576px) {
  .company-overview-section {
    padding: 35px 0;
  }

  .overview-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .overview-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .overview-buttons {
    flex-direction: column;
  }

  .overview-btn-primary,
  .overview-btn-outline {
    width: 100%;
    text-align: center;
  }

  .overview-floating-card {
    left: 10px;
    right: 10px;
    bottom: 15px;
    padding: 14px 16px;
  }
}

/* ================================= */
/* CONTACT SECTION */
/* ================================= */

.contact-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

/* BADGE */
.contact-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.contact-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-top: 22px;
  margin-bottom: 18px;
}

.contact-title span {
  color: #2563eb;
}

/* DESCRIPTION */
.contact-description {
  max-width: 720px;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.9;
}

/* ================================= */
/* CONTACT INFO */
/* ================================= */

.contact-info-card {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 30px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

/* TITLE */
.contact-info-card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.contact-info-card p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

/* ITEM */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

/* ICON */
.contact-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 22px;
  color: white;
}

/* TEXT */
.contact-info-item h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info-item span {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

/* SOCIAL */
.contact-social {
  display: flex;
  gap: 14px;
  margin-top: 35px;
  position: relative;
  z-index: 2;
}

.contact-social a {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-social a:hover {
  background: white;
  color: #2563eb;
  transform: translateY(-3px);
}

/* ================================= */
/* FORM CARD */
/* ================================= */

.contact-form-card {
  background: white;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  height: 100%;
}

/* LABEL */
.form-group label {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
  display: block;
}

/* INPUT */
.form-control,
.form-select {
  height: 58px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 0 18px;
  box-shadow: none !important;
  transition: 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #2563eb;
}

/* TEXTAREA */
textarea.form-control {
  height: auto;
  padding-top: 16px;
  resize: none;
}

/* BUTTON */
.contact-btn {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  border-radius: 16px;
  padding: 15px 30px;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.contact-btn:hover {
  color: white;
  transform: translateY(-3px);
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .contact-section {
    padding: 45px 0;
  }

  .contact-title {
    font-size: 2.4rem;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 576px) {
  .contact-section {
    padding: 35px 0;
  }

  .contact-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .contact-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .contact-info-card h3 {
    font-size: 1.6rem;
  }

  .contact-info-card p,
  .contact-info-item span {
    font-size: 14px;
    line-height: 1.8;
  }

  .contact-info-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .contact-social {
    flex-wrap: wrap;
  }

  .contact-social a {
    width: 44px;
    height: 44px;
  }
}

/* ================================= */
/* MISSION & VISION SECTION */
/* ================================= */

.mission-vision-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

/* BADGE */
.mv-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.mv-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-top: 22px;
  margin-bottom: 18px;
}

.mv-title span {
  color: #2563eb;
}

/* DESCRIPTION */
.mv-description {
  max-width: 720px;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.9;
}

/* ================================= */
/* CARD */
/* ================================= */

.mv-card {
  background: white;
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
}

/* TOP GLOW */
.mv-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 50%;
}

/* ICON */
.mv-icon {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.mv-icon i {
  color: white;
  font-size: 30px;
}

/* TITLE */
.mv-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

/* TEXT */
.mv-card p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

/* FEATURES */
.mv-features {
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.mv-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.mv-feature i {
  color: #2563eb;
  font-size: 18px;
}

.mv-feature span {
  color: #334155;
  font-weight: 500;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .mission-vision-section {
    padding: 45px 0;
  }

  .mv-title {
    font-size: 2.3rem;
  }

  .mv-card {
    padding: 34px;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 576px) {
  .mission-vision-section {
    padding: 35px 0;
  }

  .mv-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .mv-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .mv-card {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .mv-card h3 {
    font-size: 1.5rem;
  }

  .mv-card p {
    font-size: 14px;
    line-height: 1.8;
  }

  .mv-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    margin-bottom: 22px;
  }

  .mv-icon i {
    font-size: 24px;
  }

  .mv-feature span {
    font-size: 14px;
  }
}

/* ================================= */
/* MOBILE APPLICATION SECTION */
/* ================================= */

.mobileapp-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

/* BADGE */
.mobileapp-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.mobileapp-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-top: 22px;
  margin-bottom: 22px;
}

.mobileapp-title span {
  color: #2563eb;
}

/* DESCRIPTION */
.mobileapp-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* FEATURES */
.mobileapp-features {
  margin-top: 28px;
}

.mobileapp-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.mobileapp-feature i {
  color: #2563eb;
  font-size: 18px;
}

.mobileapp-feature span {
  color: #334155;
  font-weight: 500;
}

/* BUTTONS */
.mobileapp-buttons {
  display: flex;
  gap: 16px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.mobileapp-btn-primary {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  border: none;
}

.mobileapp-btn-primary:hover {
  color: white;
  transform: translateY(-3px);
}

.mobileapp-btn-outline {
  border: 1px solid #dbeafe;
  color: #0f172a;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  background: white;
}

.mobileapp-btn-outline:hover {
  background: #f8fbff;
}

/* IMAGE */
.mobileapp-image-wrapper {
  position: relative;
}

.mobileapp-image {
  border-radius: 28px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* FLOATING CARD */
.mobileapp-floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: white;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  animation: floatAppCard 3s ease-in-out infinite;
}

.mobileapp-floating-card i {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.mobileapp-floating-card h5 {
  margin-bottom: 2px;
  font-weight: 700;
  color: #0f172a;
}

.mobileapp-floating-card span {
  color: #64748b;
  font-size: 14px;
}

/* FLOAT */
@keyframes floatAppCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ================================= */
/* APP SERVICES */
/* ================================= */

.appservices-section {
  padding: 20px 0 60px;
  background: white;
}

/* BADGE */
.appservices-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.appservices-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 22px;
}

.appservices-title span {
  color: #2563eb;
}

/* CARD */
.appservice-card {
  background: white;
  border-radius: 24px;
  padding: 35px 28px;
  text-align: center;
  transition: 0.4s ease;
  height: 100%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

.appservice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ICON */
.appservice-card i {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 34px;
}

/* TITLE */
.appservice-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

/* TEXT */
.appservice-card p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .mobileapp-section {
    padding: 45px 0;
  }

  .mobileapp-title {
    font-size: 2.4rem;
  }

  .appservices-title {
    font-size: 2.2rem;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 576px) {
  .mobileapp-section {
    padding: 35px 0;
  }

  .mobileapp-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .mobileapp-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .mobileapp-buttons {
    flex-direction: column;
  }

  .mobileapp-btn-primary,
  .mobileapp-btn-outline {
    width: 100%;
    text-align: center;
  }

  .mobileapp-floating-card {
    left: 10px;
    right: 10px;
    bottom: 15px;
    padding: 14px 16px;
  }

  .appservices-section {
    padding: 10px 0 35px;
  }

  .appservices-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .appservice-card {
    padding: 28px 22px;
  }

  .appservice-card h4 {
    font-size: 1.2rem;
  }

  .appservice-card p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ================================= */
/* TEAM SECTION */
/* ================================= */

.team-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
}

/* BADGE */
.team-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.team-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-top: 22px;
  margin-bottom: 18px;
}

.team-title span {
  color: #2563eb;
}

/* DESCRIPTION */
.team-description {
  max-width: 720px;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.9;
}

/* ================================= */
/* TEAM CARD */
/* ================================= */

.team-card {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  transition: 0.4s ease;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.team-image-wrapper {
  position: relative;
  overflow: hidden;
}

.team-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.5s ease;
}

.team-card:hover .team-image {
  transform: scale(1.08);
}

/* SOCIAL */
.team-social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  gap: 10px;
  opacity: 0;
  transition: 0.4s ease;
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.team-social a {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: white;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.team-social a:hover {
  background: #2563eb;
  color: white;
}

/* CONTENT */
.team-content {
  padding: 28px 24px;
  text-align: center;
}

.team-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.team-content span {
  color: #2563eb;
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}

.team-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 15px;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .team-section {
    padding: 45px 0;
  }

  .team-title {
    font-size: 2.3rem;
  }

  .team-image {
    height: 280px;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 576px) {
  .team-section {
    padding: 35px 0;
  }

  .team-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .team-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .team-image {
    height: 260px;
  }

  .team-content {
    padding: 24px 20px;
  }

  .team-content h4 {
    font-size: 1.2rem;
  }

  .team-content p {
    font-size: 14px;
  }
}

/* ================================= */
/* PORTFOLIO SECTION */
/* ================================= */

.portfolio-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

/* BADGE */
.portfolio-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.portfolio-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-top: 22px;
  margin-bottom: 18px;
}

.portfolio-title span {
  color: #2563eb;
}

/* DESCRIPTION */
.portfolio-description {
  max-width: 720px;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.9;
}

/* ================================= */
/* FILTER */
/* ================================= */

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.portfolio-filter button {
  border: none;
  background: white;
  color: #334155;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.portfolio-filter button:hover,
.portfolio-filter button.active {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
}

/* ================================= */
/* CARD */
/* ================================= */

.portfolio-card {
  background: white;
  border-radius: 26px;
  overflow: hidden;
  transition: 0.4s ease;
  height: 100%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.portfolio-image-wrapper {
  position: relative;
  overflow: hidden;
}

.portfolio-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s ease;
}

.portfolio-card:hover .portfolio-image {
  transform: scale(1.08);
}

/* OVERLAY */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

/* ICON */
.portfolio-overlay a {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: white;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  transform: translateY(20px);
  transition: 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay a {
  transform: translateY(0);
}

.portfolio-overlay a:hover {
  background: #2563eb;
  color: white;
}

/* CONTENT */
.portfolio-content {
  padding: 28px 24px;
}

.portfolio-content span {
  color: #2563eb;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 14px;
}

.portfolio-content h4 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.portfolio-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .portfolio-section {
    padding: 45px 0;
  }

  .portfolio-title {
    font-size: 2.4rem;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 576px) {
  .portfolio-section {
    padding: 35px 0;
  }

  .portfolio-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .portfolio-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .portfolio-filter {
    gap: 10px;
    margin-bottom: 35px;
  }

  .portfolio-filter button {
    padding: 10px 18px;
    font-size: 14px;
  }

  .portfolio-image {
    height: 230px;
  }

  .portfolio-content {
    padding: 24px 20px;
  }

  .portfolio-content h4 {
    font-size: 1.2rem;
  }

  .portfolio-content p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ================================= */
/* PRICING SECTION */
/* ================================= */

.pricing-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

/* BADGE */
.pricing-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.pricing-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-top: 22px;
  margin-bottom: 18px;
}

.pricing-title span {
  color: #2563eb;
}

/* DESCRIPTION */
.pricing-description {
  max-width: 720px;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.9;
}

/* ================================= */
/* CARD */
/* ================================= */

.pricing-card {
  background: white;
  border-radius: 28px;
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease;
  height: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.08);
}

/* POPULAR */
.pricing-popular {
  border: 2px solid #2563eb;
  transform: scale(1.03);
}

.pricing-popular:hover {
  transform: scale(1.03) translateY(-8px);
}

/* BADGE */
.popular-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  padding: 8px 40px;
  font-size: 13px;
  font-weight: 600;
  transform: rotate(45deg);
}

/* TOP */
.pricing-top {
  margin-bottom: 30px;
}

.pricing-plan {
  display: inline-block;
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.pricing-top h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.pricing-top p {
  color: #64748b;
  margin-bottom: 0;
  line-height: 1.8;
}

/* FEATURES */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #334155;
  font-weight: 500;
}

.pricing-features i {
  color: #2563eb;
  font-size: 18px;
}

/* BUTTON */
.pricing-btn {
  width: 100%;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  border-radius: 16px;
  padding: 15px;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.pricing-btn:hover {
  color: white;
  transform: translateY(-3px);
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .pricing-section {
    padding: 45px 0;
  }

  .pricing-title {
    font-size: 2.4rem;
  }

  .pricing-popular {
    transform: scale(1);
  }

  .pricing-popular:hover {
    transform: translateY(-8px);
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 576px) {
  .pricing-section {
    padding: 35px 0;
  }

  .pricing-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .pricing-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .pricing-card {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .pricing-top h2 {
    font-size: 2.4rem;
  }

  .pricing-features li {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* ================================= */
/* SEO SECTION */
/* ================================= */

.seo-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

/* BADGE */
.seo-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.seo-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-top: 22px;
  margin-bottom: 22px;
}

.seo-title span {
  color: #2563eb;
}

/* DESCRIPTION */
.seo-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* FEATURES */
.seo-features {
  margin-top: 28px;
}

.seo-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.seo-feature i {
  color: #2563eb;
  font-size: 18px;
}

.seo-feature span {
  color: #334155;
  font-weight: 500;
}

/* BUTTONS */
.seo-buttons {
  display: flex;
  gap: 16px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.seo-btn-primary {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  border: none;
}

.seo-btn-primary:hover {
  color: white;
  transform: translateY(-3px);
}

.seo-btn-outline {
  border: 1px solid #dbeafe;
  color: #0f172a;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  background: white;
}

.seo-btn-outline:hover {
  background: #f8fbff;
}

/* IMAGE */
.seo-image-wrapper {
  position: relative;
}

.seo-image {
  border-radius: 28px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* FLOAT CARD */
.seo-floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: white;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  animation: floatSeoCard 3s ease-in-out infinite;
}

.seo-floating-card i {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.seo-floating-card h5 {
  margin-bottom: 2px;
  font-weight: 700;
  color: #0f172a;
}

.seo-floating-card span {
  color: #64748b;
  font-size: 14px;
}

/* FLOAT */
@keyframes floatSeoCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ================================= */
/* MARKETING SERVICES */
/* ================================= */

.marketing-services-section {
  padding: 20px 0 60px;
  background: white;
}

/* BADGE */
.marketing-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.marketing-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 22px;
}

.marketing-title span {
  color: #2563eb;
}

/* CARD */
.marketing-card {
  background: white;
  border-radius: 24px;
  padding: 35px 28px;
  text-align: center;
  transition: 0.4s ease;
  height: 100%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

.marketing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ICON */
.marketing-card i {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 34px;
}

/* TITLE */
.marketing-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

/* TEXT */
.marketing-card p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .seo-section {
    padding: 45px 0;
  }

  .seo-title {
    font-size: 2.4rem;
  }

  .marketing-title {
    font-size: 2.2rem;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 576px) {
  .seo-section {
    padding: 35px 0;
  }

  .seo-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .seo-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .seo-buttons {
    flex-direction: column;
  }

  .seo-btn-primary,
  .seo-btn-outline {
    width: 100%;
    text-align: center;
  }

  .seo-floating-card {
    left: 10px;
    right: 10px;
    bottom: 15px;
    padding: 14px 16px;
  }

  .marketing-services-section {
    padding: 10px 0 35px;
  }

  .marketing-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .marketing-card {
    padding: 28px 22px;
  }

  .marketing-card h4 {
    font-size: 1.2rem;
  }

  .marketing-card p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ================================= */
/* UI UX SECTION */
/* ================================= */

.uiux-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

/* BADGE */
.uiux-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.uiux-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-top: 22px;
  margin-bottom: 22px;
}

.uiux-title span {
  color: #2563eb;
}

/* DESCRIPTION */
.uiux-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* FEATURES */
.uiux-features {
  margin-top: 28px;
}

.uiux-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.uiux-feature i {
  color: #2563eb;
  font-size: 18px;
}

.uiux-feature span {
  color: #334155;
  font-weight: 500;
}

/* BUTTONS */
.uiux-buttons {
  display: flex;
  gap: 16px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.uiux-btn-primary {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  border: none;
}

.uiux-btn-primary:hover {
  color: white;
  transform: translateY(-3px);
}

.uiux-btn-outline {
  border: 1px solid #dbeafe;
  color: #0f172a;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  background: white;
}

.uiux-btn-outline:hover {
  background: #f8fbff;
}

/* IMAGE */
.uiux-image-wrapper {
  position: relative;
}

.uiux-image {
  border-radius: 28px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* FLOAT CARD */
.uiux-floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: white;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  animation: floatUiuxCard 3s ease-in-out infinite;
}

.uiux-floating-card i {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.uiux-floating-card h5 {
  margin-bottom: 2px;
  font-weight: 700;
  color: #0f172a;
}

.uiux-floating-card span {
  color: #64748b;
  font-size: 14px;
}

/* FLOAT */
@keyframes floatUiuxCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ================================= */
/* UIUX SERVICES */
/* ================================= */

.uiux-services-section {
  padding: 20px 0 60px;
  background: white;
}

/* BADGE */
.uiux-services-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.uiux-services-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 22px;
}

.uiux-services-title span {
  color: #2563eb;
}

/* CARD */
.uiux-service-card {
  background: white;
  border-radius: 24px;
  padding: 35px 28px;
  text-align: center;
  transition: 0.4s ease;
  height: 100%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

.uiux-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ICON */
.uiux-service-card i {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 34px;
}

/* TITLE */
.uiux-service-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

/* TEXT */
.uiux-service-card p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .uiux-section {
    padding: 45px 0;
  }

  .uiux-title {
    font-size: 2.4rem;
  }

  .uiux-services-title {
    font-size: 2.2rem;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 576px) {
  .uiux-section {
    padding: 35px 0;
  }

  .uiux-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .uiux-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .uiux-buttons {
    flex-direction: column;
  }

  .uiux-btn-primary,
  .uiux-btn-outline {
    width: 100%;
    text-align: center;
  }

  .uiux-floating-card {
    left: 10px;
    right: 10px;
    bottom: 15px;
    padding: 14px 16px;
  }

  .uiux-services-section {
    padding: 10px 0 35px;
  }

  .uiux-services-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .uiux-service-card {
    padding: 28px 22px;
  }

  .uiux-service-card h4 {
    font-size: 1.2rem;
  }

  .uiux-service-card p {
    font-size: 14px;
    line-height: 1.8;
  }
}

/* ================================= */
/* WEB DEVELOPMENT SECTION */
/* ================================= */

.webdev-section {
  padding: 20px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  overflow: hidden;
}

/* BADGE */
.webdev-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.webdev-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
  margin-top: 22px;
  margin-bottom: 22px;
}

.webdev-title span {
  color: #2563eb;
}

/* DESCRIPTION */
.webdev-description {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 18px;
}

/* FEATURES */
.webdev-features {
  margin-top: 28px;
}

.webdev-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.webdev-feature i {
  color: #2563eb;
  font-size: 18px;
}

.webdev-feature span {
  color: #334155;
  font-weight: 500;
}

/* BUTTONS */
.webdev-buttons {
  display: flex;
  gap: 16px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.webdev-btn-primary {
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: white;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  border: none;
}

.webdev-btn-primary:hover {
  color: white;
  transform: translateY(-3px);
}

.webdev-btn-outline {
  border: 1px solid #dbeafe;
  color: #0f172a;
  border-radius: 14px;
  padding: 14px 28px;
  font-weight: 600;
  background: white;
}

.webdev-btn-outline:hover {
  background: #f8fbff;
}

/* IMAGE */
.webdev-image-wrapper {
  position: relative;
}

.webdev-image {
  border-radius: 28px;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* FLOAT CARD */
.webdev-floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: white;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  animation: floatCard 3s ease-in-out infinite;
}

.webdev-floating-card i {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

.webdev-floating-card h5 {
  margin-bottom: 2px;
  font-weight: 700;
  color: #0f172a;
}

.webdev-floating-card span {
  color: #64748b;
  font-size: 14px;
}

/* FLOAT */
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ================================= */
/* TECHNOLOGY SECTION */
/* ================================= */

.technology-section {
  padding: 20px 0 60px;
  background: white;
}

/* BADGE */
.tech-badge {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

/* TITLE */
.tech-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-top: 22px;
}

.tech-title span {
  color: #2563eb;
}

/* CARD */
.tech-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 28px;
  text-align: center;
  transition: 0.4s ease;
  height: 100%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.05);
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

/* ICON */
.tech-card i {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 34px;
}

/* TITLE */
.tech-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

/* TEXT */
.tech-card p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width: 991px) {
  .webdev-section {
    padding: 45px 0;
  }

  .webdev-title {
    font-size: 2.4rem;
  }

  .tech-title {
    font-size: 2.2rem;
  }
}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width: 576px) {
  .webdev-section {
    padding: 35px 0;
  }

  .webdev-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .webdev-description {
    font-size: 14px;
    line-height: 1.8;
  }

  .webdev-buttons {
    flex-direction: column;
  }

  .webdev-btn-primary,
  .webdev-btn-outline {
    width: 100%;
    text-align: center;
  }

  .webdev-floating-card {
    left: 10px;
    right: 10px;
    bottom: 15px;
    padding: 14px 16px;
  }

  .technology-section {
    padding: 10px 0 35px;
  }

  .tech-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .tech-card {
    padding: 28px 22px;
  }

  .tech-card h4 {
    font-size: 1.2rem;
  }

  .tech-card p {
    font-size: 14px;
    line-height: 1.8;
  }
}

.main-logo{
    height: 50px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 991px){
    .main-logo{
        height: 42px;
    }
}

