/* ===================== Reset & Base ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background: #6d28d9;
  min-height: 100vh;
}

/* ===================== Header / Navbar ===================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(109, 40, 217, 0.95);
  backdrop-filter: blur(10px);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: white;
  font-size: 28px;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  padding: 5px 0;
  transition: 0.3s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: white;
  transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-consult {
  color: white;
  border: 2px dashed rgba(255, 255, 255, 0.6);
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-consult:hover {
  background: white;
  color: #6d28d9;
}

.hamburger {
  display: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  transition: 0.3s;
}

.hamburger:hover {
  transform: scale(1.1);
}

.mobile-btn {
  display: none;
}

/* ===================== Mobile Navbar ===================== */
@media(max-width:900px) {
  .hamburger {
    display: block;
  }

  .desktop-btn {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #4c1d95;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    display: flex;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 22px;
    margin: 10px 0;
  }

  .mobile-btn {
    display: block;
    margin-top: 20px;
  }
}

/* ===================== Hero Section ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 5% 50px;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 2;
}

.hero-content {
  flex: 1;
  color: white;
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 40px;
  max-width: 550px;
}

/* Hero Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #6b21a8;
  color: white;
  border: none;
  padding: 16px 35px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

.video-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-icon {
  width: 50px;
  height: 50px;
  border: 1.5px dotted white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
}

.video-btn:hover .play-icon {
  background: #fff;
  color: #6200ea;
  border-style: solid;
  transform: scale(1.1);
}

.video-btn span {
  font-weight: 600;
  transition: color 0.3s ease;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
}

.buy-now-badge {
  position: absolute;
  top: 20%;
  right: -20px;
  background: #8cc63f;
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dot {
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
}

.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.fade-in {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width:992px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

/*=====================SERVICE SECTION=========================*/

/* Modern Services Section */
.services {
  padding: 100px 5%;
  background: #f5f3ff;
  /* soft lavender-ish background */
  text-align: center;
  color: #333;
}

.services-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.sub-title {
  color: #7c3aed;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.sub-title::after {
  content: '~~~~~~~~';
  display: block;
  color: #7c3aed;
  opacity: 0.3;
  margin-top: 4px;
}

.services-header h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #4c1d95;
}

.header-desc {
  color: #6b7280;
  line-height: 1.6;
  max-width: 600px;
  margin: auto;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Modern Card Design */
.service-card {
  background: linear-gradient(135deg, #ede9fe, #f3f0ff);
  padding: 40px 30px;
  border-radius: 20px;
  /* soft round corners */
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.15);
  transition: all 0.5s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Soft Flow Animation on Hover */
.service-card::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: rgba(124, 58, 237, 0.05);
  border-radius: 50%;
  top: -50%;
  left: -50%;
  transition: all 0.7s ease;
  z-index: 0;
}

.service-card:hover::before {
  transform: scale(1.2) translate(10%, 10%);
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 25px 45px rgba(124, 58, 237, 0.2);
}

/* Icon */
.service-icon {
  font-size: 50px;
  margin-bottom: 20px;
  color: #7c3aed;
  z-index: 1;
  position: relative;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(10deg);
}

/* Heading & Text */
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #4c1d95;
  z-index: 1;
  position: relative;
}

.service-card p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 25px;
  z-index: 1;
  position: relative;
}

/* Learn More */
.learn-more {
  color: #7c3aed;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
  z-index: 1;
  position: relative;
}

.learn-more:hover {
  color: #4c1d95;
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .service-card {
    padding: 30px 20px;
  }

  .services-header h2 {
    font-size: 28px;
  }

  .header-desc {
    font-size: 14px;
  }
}

/*====================ABOUT US=====================*/


/* --- About Section Styling --- */
.about-section {
  padding: 100px 5%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.about-container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 60px;
  /* Image ebong Text er moddhe space */
}

/* Image Side */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  /* Image er corner rounded korar jonno */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Content Side */
.about-content {
  flex: 1;
}

.about-subtitle {
  color: #6d28d9;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

/* Subtitle er nicher dashed line */
.about-subtitle::after {
  content: '-----------';
  display: block;
  color: #6d28d9;
  opacity: 0.3;
  letter-spacing: 2px;
}

.about-title {
  font-size: 42px;
  font-weight: 800;
  color: #2d3748;
  line-height: 1.2;
  margin-top: 15px;
  margin-bottom: 25px;
}

.about-short-desc {
  font-size: 18px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 20px;
}

.about-long-desc {
  font-size: 16px;
  color: #718096;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Gradient Learn More Button */
.btn-learn {
  display: inline-block;
  background: linear-gradient(to right, #8e2de2, #4a00e0);
  color: white;
  text-decoration: none;
  padding: 15px 35px;
  font-weight: 700;
  border-radius: 5px;
  transition: 0.3s ease;
  box-shadow: 0 10px 20px rgba(109, 40, 217, 0.2);
}

.btn-learn:hover {
  background: #000000;
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

/* --- Responsive for Mobile & Tablet --- */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    /* Mobile e image upore, text niche thakbe */
    text-align: center;
    gap: 40px;
  }

  .about-title {
    font-size: 32px;
  }
}


/*==============WHAT WE DO===================*/
/* --- What We Do Section --- */
.what-we-do {
  padding: 100px 5%;
  background-color: #f9faff;
  /* Halka gray background */
}

.wwd-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.wwd-content {
  flex: 1;
}

.wwd-image {
  flex: 1;
  text-align: right;
}

.wwd-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
}

.wwd-subtitle {
  color: #6d28d9;
  font-weight: 600;
  margin-bottom: 10px;
}

.wwd-subtitle::after {
  content: '---------';
  display: block;
  opacity: 0.3;
  letter-spacing: 2px;
}

.wwd-title {
  font-size: 38px;
  font-weight: 800;
  color: #2d3748;
  margin: 15px 0;
  line-height: 1.2;
}

.wwd-desc {
  color: #718096;
  margin-bottom: 30px;
  font-size: 16px;
}

/* Accordion Items Style */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: #ffffff;
  padding: 18px 25px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid transparent;
}

.accordion-item span {
  font-weight: 600;
  color: #4a5568;
  font-size: 17px;
}

.accordion-item i {
  color: #cbd5e0;
  font-size: 20px;
  transition: 0.3s;
}

.accordion-item:hover {
  border-color: #6d28d9;
  transform: translateX(10px);
  /* Shundor animation */
}

.accordion-item:hover i {
  color: #6d28d9;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .wwd-container {
    flex-direction: column;
    text-align: center;
  }

  .wwd-image {
    order: -1;
  }

  /* Mobile e chhobi upore thakbe */
  .wwd-image img {
    max-width: 100%;
  }

  .accordion-item:hover {
    transform: none;
  }
}

/*==========================SERVICE======================*/

/* --- Offer Section Styling --- */
.offer-section {
  padding: 80px 5%;
  background-color: #ffffff;
  text-align: center;
}

.offer-header {
  max-width: 800px;
  margin: 0 auto 50px;
}

.offer-subtitle {
  color: #6d28d9;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
  font-size: 16px;
}

/* Subtitle dashed line from image */
.offer-subtitle::after {
  content: '-----------';
  display: block;
  opacity: 0.3;
  letter-spacing: 2px;
}

.offer-title {
  font-size: 36px;
  font-weight: 800;
  color: #2d3748;
  margin: 15px 0;
}

.offer-desc {
  color: #718096;
  font-size: 15px;
  line-height: 1.6;
}

/* 6-Card Grid Fix */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* PC-te 3-ti card */
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card Styling */
.offer-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 4px;
  /* Image-er moto square-ish rounded */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: left;
  /* Image-e text left alignment-e ache */
  border: 1px solid #f0f0f0;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

/* Icon individual colors as per image */
.card-icon.cyan {
  color: #4fd1c5;
}

.card-icon.pink {
  color: #f687b3;
}

.card-icon.blue {
  color: #4299e1;
}

.card-icon.purple {
  color: #9f7aea;
}

.card-icon.indigo {
  color: #667eea;
}

.card-icon.teal {
  color: #38b2ac;
}

.offer-card h3 {
  font-size: 20px;
  color: #2d3748;
  font-weight: 700;
  margin-bottom: 15px;
}

.offer-card p {
  color: #718096;
  font-size: 14px;
  line-height: 1.6;
}

/* --- Responsive for Tablet & Mobile --- */
@media (max-width: 1024px) {
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet-e 2-ti card */
  }
}

@media (max-width: 768px) {
  .offer-grid {
    grid-template-columns: 1fr;
    /* Mobile-e 1-ti card */
  }

  .offer-card {
    text-align: center;
    /* Mobile-e center alignment bhalo lage */
  }
}

/*====================Project=======================*/

/* --- Portfolio Section Styling --- */
.portfolio-section {
  background-color: #ffffff;
  padding-bottom: 80px;
}

.portfolio-bg-curve {
  background: #6d28d9;
  /* Purple Background */
  padding: 100px 5%;
  border-radius: 0 0 50% 50% / 0 0 10% 10%;
  /* Image-er moto curve shape */
  color: white;
}

.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.port-subtitle {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.8;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.port-subtitle::after {
  content: '-----------';
  display: block;
  opacity: 0.3;
}

.port-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 30px;
}

/* Filter Menu */
.portfolio-filter {
  display: flex;
  list-style: none;
  gap: 30px;
  margin-bottom: 50px;
}

.portfolio-filter li {
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.8;
}

.portfolio-filter li.active,
.portfolio-filter li:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 8px;
}

/* Project Grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* PC-te 4-ti image */
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background: white;
  border-radius: 5px;
  overflow: hidden;
  height: 350px;
  /* Card height fix */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Image jeno stretch na hoy */
}

.project-card:hover {
  transform: translateY(-10px);
}

/* --- Responsive for Tablet & Mobile --- */
@media (max-width: 1024px) {
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Tablet-e 2-ti image */
  }
}

@media (max-width: 768px) {
  .project-grid {
    grid-template-columns: 1fr;
    /* Mobile-e 1-ti image */
  }

  .portfolio-filter {
    flex-wrap: wrap;
    /* Mobile-e menu jeno niche niche bose */
    gap: 15px;
  }

  .port-title {
    font-size: 30px;
  }
}

/*===============NEW CODE FOR DIANAMIC======================*/

.project-card {
  width: 100%;
  height: 300px;
  /* Fixed height jate shob gulo ekshathe bhalo lage */
  overflow: hidden;
  display: block;
  /* Nishchit korun jate display none na hoye thake */
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Image jeno frame-e perfect bose */
}

/* Filter korle jeta dorkar nai seta hide hobe */
.project-card.hide {
  display: none;
}


/*=======================COMMENT OR REVEW =====================*/

.testimonial-section {
  position: relative;
  padding: 120px 0;
  background: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.testi-curve {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  background: #6d28d9;
  /* Deep Blue-ish Purple from image */
  border-radius: 0 0 50% 50% / 0 0 40% 40%;
}

.testi-container {
  width: 90%;
  max-width: 1000px;
  z-index: 5;
  text-align: center;
}

.testi-subtitle {
  color: #7c4dff;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.testi-subtitle::after {
  content: '----------';
  display: block;
  opacity: 0.3;
  margin-top: -5px;
}

.testi-title {
  font-size: 42px;
  font-weight: 800;
  color: #2d3748;
  margin-bottom: 15px;
}

.testi-header-desc {
  color: #718096;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Floating Avatars Layout */
.client-avatars {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 50px;
  height: 150px;
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0.6;
}

/* Image position variations like the image */
.av-side {
  transform: translateY(-30px);
}

.av-mid {
  transform: translateY(-10px);
}

.avatar.active {
  width: 110px;
  height: 110px;
  opacity: 1;
  border: 5px solid #6237ff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The Big Centered Box */
.testi-box {
  background: #cddbff;
  padding: 60px 80px;
  border-radius: 15px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.quote-arrow {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  background: #fff;
}

.feedback-text {
  font-size: 18px;
  color: #718096;
  line-height: 1.8;
  margin-bottom: 30px;
}

.client-name {
  font-size: 24px;
  font-weight: 700;
  color: #333;
}

.client-role {
  color: #7c4dff;
  font-weight: 600;
  margin-top: 5px;
}


/*==========================price plen =====================*/
/* --- Pricing Section Styling --- */
.pricing-section {
  padding: 100px 5%;
  background-color: #fff;
  text-align: center;
}

.pricing-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.price-subtitle {
  color: #6d28d9;
  font-weight: 600;
}

.price-subtitle::after {
  content: '-----------';
  display: block;
  opacity: 0.3;
}

.price-title {
  font-size: 38px;
  font-weight: 800;
  color: #2d3748;
  margin: 20px 0;
}

.price-desc {
  color: #718096;
  line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border: 1px solid #f1f1f1;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(109, 40, 217, 0.1);
}

/* Card Top Header */
.card-top {
  background-color: #f3ebff;
  /* Halka purple background */
  color: #6d28d9;
  padding: 20px;
  font-size: 24px;
  font-weight: 700;
}

.card-body {
  padding: 40px 20px;
}

.price-value {
  font-size: 45px;
  font-weight: 800;
  color: #6d28d9;
  margin-bottom: 30px;
}

.price-value span {
  font-size: 25px;
  vertical-align: top;
}

.price-value sub {
  font-size: 14px;
  color: #718096;
  font-weight: 400;
}

.price-features {
  list-style: none;
  margin-bottom: 35px;
}

.price-features li {
  padding: 10px 0;
  color: #4a5568;
  font-size: 15px;
}

/* Select Plan Button */
.select-btn {
  background: linear-gradient(to right, #6d28d9, #9333ea);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.select-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}


/*==================logo==================*/

/* --- Partner Section Styling --- */
.partner-section {
  background-color: #f9f9f9;
  /* Halka gray background image-er moto */
  padding: 60px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  /* Logo guloke soman bhabe choriye dibe */
  align-items: center;
  flex-wrap: wrap;
  /* Mobile-e niche niche chole jabe */
  gap: 30px;
}

.partner-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 150px;
}

.partner-logo img {
  max-width: 140px;
  /* Logo-r size control korar jonno */
  height: auto;
  filter: grayscale(100%);
  /* Shob logo-ke gray korar jonno */
  opacity: 0.5;
  /* Halka dekhanor jonno image-er moto */
  transition: all 0.3s ease;
}

/* Hover korle logo original color ba highlight hobe */
.partner-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  .partner-section {
    padding: 40px 20px;
  }

  .partner-logo {
    min-width: 100px;
  }

  .partner-logo img {
    max-width: 100px;
  }
}



/*====================MESSAGE========================*/

/* --- Contact Section Styling --- */
.contact-section {
  padding: 100px 5%;
  background-color: #fcfcfc;
  /* Halka off-white background */
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-card {
  background: #ffffff;
  width: 100%;
  max-width: 1000px;
  padding: 60px;
  border-radius: 5px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
  /* Soft shadow image-er moto */
  text-align: center;
}

.contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #313e50;
  margin-bottom: 40px;
}

/* Input Fields Layout */
.input-group-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Tin-ti field ek line-e */
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 25px;
  background-color: #f4f7fa;
  /* Halka blue-gray tint image-er moto */
  border: none;
  border-radius: 3px;
  font-size: 15px;
  outline: none;
  color: #333;
}

.contact-form textarea {
  margin-bottom: 30px;
  resize: none;
}

/* Button Styling */
.btn-container {
  display: flex;
  justify-content: center;
}

.send-btn {
  background: linear-gradient(to right, #6d28d9, #9333ea);
  /* Purple gradient button */
  color: #ffffff;
  padding: 15px 45px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 5px 15px rgba(109, 40, 217, 0.3);
}

.send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.4);
}

/* --- Responsive for Mobile --- */
@media (max-width: 768px) {
  .contact-card {
    padding: 40px 20px;
  }

  .input-group-row {
    grid-template-columns: 1fr;
    /* Mobile-e niche niche bosbe */
  }

  .contact-title {
    font-size: 24px;
  }
}


/*=====================FOTTER+====================*/
.modern-footer {
  background: #0f0c29;
  /* Dark gradient base */
  background: linear-gradient(to right, #24243e, #302b63, #0f0c29);
  position: relative;
  padding-top: 100px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

/* Wave Decoration */
.footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.footer-wave .shape-fill {
  fill: #ffffff;
  /* Page er background color er sathe mil thakbe */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
}

/* Glassmorphism Effect for Box */
.footer-box h3 {
  font-size: 22px;
  margin-bottom: 25px;
  color: #9333ea;
  font-weight: 700;
}

.f-logo {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.f-logo span {
  color: #9333ea;
}

.footer-box p {
  color: #ccc;
  line-height: 1.8;
  font-size: 14px;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 12px;
}

.footer-box ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-box ul li a:hover {
  color: #9333ea;
  padding-left: 8px;
}

/* Social Icons Modern Style */
.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #fff;
  transition: 0.4s;
  backdrop-filter: blur(5px);
}

.social-icons a:hover {
  background: #9333ea;
  transform: rotate(360deg);
}

/* Newsletter Modern Input */
.f-subscribe {
  display: flex;
  margin-top: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.f-subscribe input {
  background: transparent;
  border: none;
  padding: 10px 15px;
  color: #fff;
  outline: none;
  width: 100%;
}

.f-subscribe button {
  background: #9333ea;
  border: none;
  width: 50px;
  height: 40px;
  border-radius: 25px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.f-subscribe button:hover {
  background: #fff;
  color: #9333ea;
}

/* Bottom Bar */
.footer-bottom-bar {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #888;
}

.footer-bottom-bar span {
  color: #9333ea;
  font-weight: 600;
}

/*=============================================================================testiminial slider=================*/

:root {
  --primary-purple: #7b61ff;
  --bg-light-blue: #dee8ff;
}

.testimonial-section {
  background-color: #fff;
  overflow: hidden;
}

/* অ্যাভাটার ডিজাইন */
.testimonial-swiper {
  width: 100%;
  max-width: 600px;
  padding: 40px 0;
}

.avatar-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.4s;
  filter: grayscale(100%);
  opacity: 0.6;
  border: 4px solid transparent;
}

/* সেন্টার বা একটিভ অ্যাভাটার */
.swiper-slide-active .avatar-img {
  width: 100px;
  height: 100px;
  filter: grayscale(0%);
  opacity: 1;
  border-color: var(--primary-purple);
  box-shadow: 0 10px 20px rgba(123, 97, 255, 0.3);
}

/* টেস্টমোনিয়াল বক্স */
.testi-box {
  background: var(--bg-light-blue);
  max-width: 800px;
  border-radius: 20px;
  position: relative;
  transition: 0.5s;
}

/* বক্সের ওপরের অ্যারো */
.quote-arrow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid var(--bg-light-blue);
}

.client-name {
  font-size: 22px;
}

.testi-subtitle {
  letter-spacing: 2px;
  text-transform: uppercase;
}