/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1f2235;
}

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

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

.header {
  padding: 25px 0;
  position: relative;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
}

.nav {
  display: flex;
  gap: 35px;
}

.nav a {
  text-decoration: none;
  color: #6c7281;
  font-weight: 500;
  transition: .3s;
}

.nav a.active,
.nav a:hover {
  color: #4f6df5;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.signin {
  text-decoration: none;
  color: #1f2235;
  font-weight: 500;
}

.signup {
  padding: 10px 22px;
  border-radius: 25px;
  background:#ffffff;
  color: #4f6df5;
  text-decoration: none;
  font-weight: 500;
  transition: .3s;
}

.signup:hover {
  background: #4f6df5;
  color: #fff;
}

/* ================= HERO ================= */

.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
}

.hero-content {
  width: 50%;
  z-index: 2;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #6c7281;
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.btn-primary {
  padding: 14px 32px;
  background: #4f6df5;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.btn-primary:hover {
  background: #3d57d8;
}

.call-box {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.call-box strong {
  color: #1f2235;
}

.call-box span {
  color: #6c7281;
  font-size: 13px;
}

/* ================= RIGHT SIDE IMAGES ================= */

.hero-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
}

/* Big Circle Wrapper */
.circle-wrapper {
  position: absolute;
  right: -150px;
  top: -60px;
  width: 720px;
  height: 620px;
}

/* Blue Circle SVG */
.shape-04 {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Hero Woman */
.hero-img {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 700px;
  z-index: 2;
}

/* Yellow Shape */
.shape-01 {
  position: absolute;
  top: 280px;
  right: 490px;
  width: 110px;
  z-index: 3;
}

/* Pink Waves */
.shape-03 {
  position: absolute;
  bottom: 50px;
  right: 300px;
  width: 120px;
  z-index: 3;
}

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

@media (max-width: 1100px) {

  .hero-content {
    width: 100%;
  }

  .hero-right {
    display: none;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ===============================
   SMALL FEATURES SECTION
=================================*/

.features {
  background: #f3f5fb;
  padding: 70px 0;
}

.features-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Each Item */
.feature-item {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 33%;
}

/* Icon Circle */
.feature-icon {
  width: 85px;
  height: 85px;
  min-width: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 34px;
}

/* Circle Colors */
.feature-icon.pink {
  background: #e85d7b;
}

.feature-icon.green {
  background: #23c16b;
}

.feature-icon.orange {
  background: #f48b54;
}

/* Text Area */
.feature-text h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1f2235;
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 15px;
  color: #6c7281;
  line-height: 1.6;
  max-width: 260px;
}

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

@media (max-width: 992px) {

  .features-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-item {
    width: 100%;
  }
}


/* ===============================
   ABOUT SECTION
=================================*/

.about {
  padding: 120px 0;
  background: #ffffff;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* ===============================
   IMAGE COLLAGE
=================================*/

.about-images {
  position: relative;
  display: flex;
  gap: 30px;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.img-top {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
}

.img-bottom {
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}

.right-column {
  display: flex;
  align-items: flex-start;
}

.img-large {
  width: 320px;
  height: 520px;
  object-fit: cover;
  border-radius: 14px;
}

/* ===============================
   SHAPES
=================================*/

.shape-pink {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 70px;
}

.shape-yellow {
  position: absolute;
  top: -20px;
  right: -40px;
  width: 80px;
}

.shape-blue {
  position: absolute;
  bottom: -60px;
  right: 60px;
  width: 180px;
  height: 90px;
  background: #4f6df5;
  border-radius: 180px 180px 0 0;
}

/* ===============================
   RIGHT CONTENT
=================================*/

.about-content {
  max-width: 520px;
}

.about-content h4 {
  color: #4f6df5;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-content h2 {
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
  color: #1f2235;
  margin-bottom: 25px;
}

.about-content p {
  color: #6c7281;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 35px;
}

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

.about-action {
  display: flex;
  align-items: center;
  gap: 20px;
}

.play-btn {
  width: 60px;
  height: 60px;
  background: #4f6df5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .3s;
}

.play-btn:hover {
  background: #3c57d8;
}

.play-icon {
  color: white;
  font-size: 18px;
  margin-left: 3px;
}

.play-text {
  font-weight: 600;
  letter-spacing: 1px;
  color: #1f2235;
}

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

@media (max-width: 1100px) {

  .about-wrapper {
    flex-direction: column;
  }

  .about-images {
    justify-content: center;
  }

  .about-content {
    text-align: center;
  }

  .about-action {
    justify-content: center;
  }
}


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

.team {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(
    to bottom,
    #f3f5fb 0%,
    #f3f5fb 55%,
    #ffffff 55%,
    #ffffff 100%
  );
  overflow: hidden;
}

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

.team-header {
  text-align: center;
  margin-bottom: 70px;
}

.team-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #1f2235;
  line-height: 1.3;
  margin-bottom: 20px;
}

.team-header p {
  max-width: 600px;
  margin: auto;
  color: #6c7281;
  font-size: 16px;
  line-height: 1.7;
}

/* ===============================
   TEAM GRID
=================================*/

.team-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.team-card {
  text-align: center;
  width: 300px;
}

.team-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

.team-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2235;
  margin-bottom: 6px;
}

.team-card span {
  font-size: 14px;
  color: #6c7281;
}

/* ===============================
   DECORATIVE SHAPES
=================================*/

.shape-circle {
  position: absolute;
  top: 80px;
  left: 18%;
  width: 40px;
  height: 40px;
  border: 5px solid #4f6df5;
  border-radius: 50%;
}

.shape-triangle-pink {
  position: absolute;
  top: 120px;
  right: 12%;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 45px solid #ef6a8a;
  transform: rotate(90deg);
}

.shape-triangle-orange {
  position: absolute;
  bottom: 170px;
  left: 12%;
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 40px solid #f48b54;
}

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

@media (max-width: 1100px) {

  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 90%;
    max-width: 400px;
  }

}


/* ===============================
   SERVICES SECTION
=================================*/

.services {
  padding: 120px 0;
  background: #ffffff;
}

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

.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #1f2235;
  line-height: 1.3;
  margin-bottom: 20px;
}

.services-header p {
  max-width: 650px;
  margin: auto;
  font-size: 16px;
  color: #6c7281;
  line-height: 1.7;
}

/* ===============================
   GRID LAYOUT
=================================*/

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 60px;
}

/* ===============================
   SERVICE ITEM
=================================*/

.service-item {
  text-align: left;
}

.service-item img {
  width: 40px;
  margin-bottom: 20px;
}

.service-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2235;
  margin-bottom: 12px;
}

.service-item p {
  font-size: 15px;
  color: #6c7281;
  line-height: 1.7;
  max-width: 280px;
}

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

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item {
    text-align: center;
  }

  .service-item p {
    margin: auto;
  }
}

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

.pricing {
  position: relative;
  padding: 120px 0;
  background: #f3f5fb;
  overflow: hidden;
}

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

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #1f2235;
  line-height: 1.3;
  margin-bottom: 20px;
}

.pricing-header p {
  max-width: 650px;
  margin: auto;
  color: #6c7281;
  font-size: 16px;
  line-height: 1.7;
}

/* ===============================
   TOGGLE SWITCH
=================================*/

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 70px;
  font-weight: 500;
}

.switch {
  position: relative;
  width: 50px;
  height: 24px;
}

.switch input {
  display: none;
}

.slider {
  position: absolute;
  cursor: pointer;
  background: #4f6df5;
  border-radius: 24px;
  width: 100%;
  height: 100%;
}

.slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 4px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
}

/* ===============================
   PRICING GRID
=================================*/

.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
}

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

.pricing-card {
  background: #ffffff;
  width: 320px;
  padding: 45px 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.pricing-card.active {
  transform: translateY(-10px);
}

.pricing-card h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #1f2235;
}

.price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 15px;
}

.price h2 {
  font-size: 38px;
  font-weight: 700;
}

.price span {
  font-size: 14px;
  color: #6c7281;
}

.note {
  font-size: 14px;
  color: #6c7281;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 25px;
}

.btn.pink {
  background: #ef6a8a;
  color: #fff;
}

.btn.blue {
  background: #4f6df5;
  color: #fff;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.pricing-card ul li {
  font-size: 14px;
  color: #6c7281;
  margin-bottom: 10px;
}

.trial {
  font-weight: 500;
  color: #1f2235;
}

/* ===============================
   SHAPES
=================================*/

.shape-yellow {
  position: absolute;
  top: 60px;
  left: -40px;
  width: 80px;
  height: 80px;
  background: #f7c600;
  border-radius: 0 80px 80px 0;
}

.shape-blue {
  position: absolute;
  bottom: 0;
  right: 40px;
  width: 90px;
  height: 90px;
  background: #4f6df5;
  border-radius: 90px 90px 0 0;
}

.shape-waves {
  position: absolute;
  top: 200px;
  right: 200px;
  width: 60px;
  height: 40px;
  background: repeating-linear-gradient(
    to bottom,
    #ef6a8a,
    #ef6a8a 4px,
    transparent 4px,
    transparent 8px
  );
}

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

@media (max-width: 1100px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
  }
}


/* ===============================
   PROJECTS SECTION
=================================*/

.projects {
  padding: 120px 0;
  background: #f3f5fb;
}

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

.projects-header {
  text-align: center;
  margin-bottom: 40px;
}

.projects-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #1f2235;
  line-height: 1.3;
  margin-bottom: 20px;
}

.projects-header p {
  max-width: 650px;
  margin: auto;
  color: #6c7281;
  font-size: 16px;
  line-height: 1.7;
}

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

.projects-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.projects-tabs button {
  padding: 10px 22px;
  border-radius: 25px;
  border: none;
  background: #f3f5fb;
  font-weight: 500;
  cursor: pointer;
  color: #6c7281;
  transition: 0.3s;
}

.projects-tabs button.active {
  background: #4f6df5;
  color: #fff;
}

/* ===============================
   GRID LAYOUT
=================================*/

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 30px;
}

/* Card Base */
.project-card {
  overflow: hidden;
  border-radius: 14px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Variations */
.project-card.small {
  height: 260px;
}

.project-card.tall {
  grid-row: span 2;
  height: 100%;
}

.project-card.wide {
  grid-column: span 2;
}

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

@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card.wide,
  .project-card.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ===============================
   TESTIMONIALS SECTION
=================================*/

.testimonials {
  padding: 120px 0;
  background: #f3f5fb;
}

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

.testimonials-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonials-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #1f2235;
  margin-bottom: 20px;
}

.testimonials-header p {
  max-width: 650px;
  margin: auto;
  color: #6c7281;
  font-size: 16px;
  line-height: 1.7;
}

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

.testimonial-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 60px;
  background: #ffffff;
  padding: 50px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Left Image */
.testimonial-left img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
}

/* Right Content */
.testimonial-right {
  flex: 1;
}

.quote-mark {
  font-size: 80px;
  color: #d9dde7;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 20px;
  font-style: italic;
  color: #6c7281;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Footer */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-footer h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2235;
  margin-bottom: 6px;
}

.testimonial-footer span {
  font-size: 14px;
  color: #6c7281;
}

/* Vertical Right Border */
.testimonial-border {
  position: absolute;
  right: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #4f6df5 50%,
    #ef6a8a 50%
  );
  border-radius: 0 14px 14px 0;
}

/* ===============================
   NAVIGATION
=================================*/

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #dcdfe6;
  background: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.testimonial-nav button:hover {
  background: #4f6df5;
  color: #fff;
  border-color: #4f6df5;
}

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

@media (max-width: 992px) {

  .testimonial-card {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-footer {
    flex-direction: column;
    gap: 20px;
  }

  .testimonial-border {
    display: none;
  }

}

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

.counter {
  position: relative;
  padding: 100px 0;
  background: #f3f5fb;
  overflow: hidden;
}

/* Subtle curved pattern (right side effect) */
.counter::after {
  content: "";
  position: absolute;
  right: -200px;
  top: 0;
  width: 600px;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
}

/* ===============================
   GRID
=================================*/

.counter-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.counter-item {
  flex: 1;
}

.counter-item h2 {
  font-size: 52px;
  font-weight: 700;
  color: #1f2235;
  margin-bottom: 10px;
}

.counter-item p {
  font-size: 16px;
  color: #6c7281;
}

/* ===============================
   SHAPES
=================================*/

/* Yellow ring (top center-left) */
.shape-yellow-ring {
  position: absolute;
  top: 30px;
  left: 30%;
  width: 40px;
  height: 40px;
  border: 6px solid #f7c600;
  border-radius: 50%;
}

/* Blue half circle (top-right) */
.shape-blue-half {
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  background: #4f6df5;
  border-radius: 0 0 0 90px;
}

/* Pink triangle (bottom-left) */
.shape-pink-triangle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 60px solid #ef6a8a;
  border-top: 40px solid transparent;
  border-bottom: 40px solid transparent;
}

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

@media (max-width: 992px) {
  .counter-grid {
    flex-direction: column;
    gap: 40px;
  }
}


/* ===============================
   CLIENTS SECTION
=================================*/

.clients {
  padding: 120px 0 100px;
  background: #f3f5fb;
}

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

.clients-header {
  text-align: center;
  margin-bottom: 70px;
}

.clients-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #1f2235;
  margin-bottom: 20px;
}

.clients-header p {
  max-width: 650px;
  margin: auto;
  font-size: 16px;
  color: #6c7281;
  line-height: 1.7;
}

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

.clients-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.clients-logos a {
  flex: 1;
  text-align: center;
}

.clients-logos img {
  max-height: 40px;
  max-width: 120px;
  opacity: 0.5;
  transition: 0.3s ease;
}

/* Subtle hover effect like screenshot */
.clients-logos img:hover {
  opacity: 1;
}

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

@media (max-width: 992px) {
  .clients-logos {
    justify-content: center;
    gap: 50px;
  }

  .clients-logos a {
    flex: 0 0 30%;
  }
}

@media (max-width: 600px) {
  .clients-logos a {
    flex: 0 0 45%;
  }
}


/* ===============================
   BLOG SECTION
=================================*/

.blog-section {
  padding: 120px 0;
  background: #f3f5fb;
}

/* Container */
.container {
  width: 1200px;
  max-width: 95%;
  margin: auto;
}

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

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 46px;
  font-weight: 700;
  color: #1f2235;
  margin-bottom: 18px;
}

.section-header p {
  max-width: 650px;
  margin: auto;
  font-size: 16px;
  color: #6c7281;
  line-height: 1.8;
}

/* ===============================
   BLOG GRID
=================================*/

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

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

.blog-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

/* Image */
.blog-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* Body */
.blog-body {
  padding: 28px;
}

/* Meta */
.blog-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 18px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6c7281;
}

.meta-item img {
  width: 16px;
  opacity: 0.7;
}

/* Title */
.blog-body h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.blog-body h3 a {
  color: #1f2235;
  text-decoration: none;
  transition: 0.3s;
}

.blog-body h3 a:hover {
  color: #4f6df5;
}

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

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}



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

.contact-section {
  position: relative;
  padding: 120px 0;
  background: #f3f5fb;
  overflow: hidden;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 46px;
  font-weight: 700;
  color: #1f2235;
  margin-bottom: 15px;
}

.section-header p {
  max-width: 650px;
  margin: auto;
  font-size: 16px;
  color: #6c7281;
  line-height: 1.8;
}

/* ===============================
   WRAPPER
=================================*/

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

/* ===============================
   LEFT INFO CARD
=================================*/

.contact-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.info-block {
  margin-bottom: 25px;
}

.info-block h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1f2235;
}

.info-block p {
  font-size: 14px;
  color: #6c7281;
}

.contact-info hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #e5e7f2;
}

.social h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #f3f5fb;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: #1f2235;
  font-size: 14px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #4f6df5;
  color: #ffffff;
}

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

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group.full {
  grid-column: span 2;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #6c7281;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 8px;
  border: 1px solid #d9deea;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

input:focus,
textarea:focus {
  border-color: #4f6df5;
}

/* Button */
.form-btn {
  text-align: center;
  margin-top: 20px;
}

.form-btn button {
  padding: 14px 35px;
  border-radius: 30px;
  border: none;
  background: #4f6df5;
  color: #ffffff;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.form-btn button:hover {
  background: #3c56d8;
}

/* ===============================
   DECORATIVE SHAPES
=================================*/

.shape-yellow {
  position: absolute;
  top: 80px;
  left: 0;
  width: 90px;
  height: 90px;
  background: #f7c600;
  border-radius: 50%;
}

.shape-blue {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: #4f6df5;
  border-radius: 120px 0 0 0;
}

.shape-waves {
  position: absolute;
  right: 200px;
  top: 200px;
  width: 60px;
  height: 40px;
  background: repeating-linear-gradient(
    to bottom,
    #ff6b81,
    #ff6b81 2px,
    transparent 2px,
    transparent 6px
  );
  opacity: 0.6;
}

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

@media (max-width: 992px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }
}

/* ===============================
   CTA SECTION
=================================*/

.cta-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, #4f6df5 0%, #5c75f6 100%);
  overflow: hidden;
}

/* Container */
.container {
  width: 1200px;
  max-width: 95%;
  margin: auto;
}

/* ===============================
   WRAPPER
=================================*/

.cta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* ===============================
   CONTENT
=================================*/

.cta-content h2 {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 550px;
  line-height: 1.8;
}

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

.cta-btn a {
  display: inline-block;
  padding: 15px 40px;
  background: #ffffff;
  color: #1f2235;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn a:hover {
  background: #f3f5fb;
}

/* ===============================
   WAVE DECORATION
=================================*/

.cta-wave {
  position: absolute;
  right: 0;
  top: 0;
  width: 500px;
  height: 100%;
  background: radial-gradient(circle at right, rgba(255,255,255,0.15) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.25;
}

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

@media (max-width: 992px) {
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-content p {
    margin: auto;
  }
}

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

.footer {
  background: #ffffff;
  padding: 80px 0 40px;
  font-family: 'Poppins', sans-serif;
}

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

/* ===============================
   TOP SECTION
=================================*/

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

/* ===============================
   BRAND COLUMN
=================================*/

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #4f6df5;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.footer-brand p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
}

/* ===============================
   FOOTER LINKS
=================================*/

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111827;
}

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

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #6b7280;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #4f6df5;
}

/* ===============================
   NEWSLETTER
=================================*/

.newsletter p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 15px;
}

.newsletter-box {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 30px;
  overflow: hidden;
  background: white;
}

.newsletter-box input {
  border: none;
  padding: 12px 18px;
  flex: 1;
  outline: none;
  font-size: 14px;
}

.newsletter-box button {
  background: transparent;
  border: none;
  padding: 0 18px;
  cursor: pointer;
  font-size: 16px;
  color: #4f6df5;
}

/* ===============================
   DIVIDER
=================================*/

.footer-divider {
  height: 1px;
  background: #ffffff;
  margin: 40px 0;
}

/* ===============================
   BOTTOM SECTION
=================================*/

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
}

.bottom-left {
  display: flex;
  gap: 25px;
}

.bottom-left a {
  text-decoration: none;
  color: #6b7280;
}

.bottom-left a:hover {
  color: #4f6df5;
}

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

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f4f8;
    color: #3b5bdb;
    font-size: 16px;
    transition: 0.3s ease;
}

.social-icons a:hover {
    background: #3b5bdb;
    color: #fff;
}