@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* --- VARIABLES & RESET --- */
:root {
  --primary: #0d253f;
  --color-primary-base: #101b33;
  --color-primary-dark: #1e3361;
  --accent: #00b4d8;
  --text-main: #1a1a1a;
  --text-light: #555;
  --bg-light: #f8f9fa;
  --bg-lighter: #f9fbfd;
  --color-dark: #111;
  --white: #ffffff;
  --color-accent: #0fb9e2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- NAVBAR --- */
.navbar {
  width: 1240px;
  height: 80px;
  padding: 0px 30px;
  margin: auto;
  background: #ffffff;
  color: #1c222b;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 1;
  position: relative;
  top: 15px;
}

.logo {
  font-weight: 700;
  width: 162px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.nav-links a:hover {
  color: var(--accent);
}

.navbar button {
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.navbar button:hover {
  background: var(--accent);
  font-size: 13.5px;
}

/* Navbar Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

/* .dropbtn span {
  font-size: 12px;
  margin-left: 5px;
} */

.dropbtn {
  display: flex;
  align-items: center;
  /* gap: 6px;  */
}

.dropbtn .arrow {
  font-size: 25px;
  transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
  transform: rotate(180deg);
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  z-index: 1000;
  list-style: none;
  text-align: left;
  transition: all 0.3s ease-in;
}

.dropdown-content li {
  width: 100%;
  margin: 0;
}

.dropdown-content li a {
  color: #333;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease-in;
  white-space: nowrap;
}

.dropdown-content li a:hover {
  background-color: #f0f6fa;
  color: #0da8d1;
}

.dropdown:hover .dropdown-content {
  display: block;
}
/* --- HERO SECTION --- */

.hero {
  background-color: #f8faff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
header {
  padding: 80px 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

header::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(100, 100, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-subtitle {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 1.5rem;
  color: #050a18;
  line-height: 1.15;
  margin-bottom: 25px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 95%;
}

.hero-content ul {
  margin: 0px 0 25px 0;
  padding-left: 10px;
}

.hero-content ul li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #050a18;
  /* font-weight: 500; */
  display: flex;
  align-items: flex-start;
}

.hero-content ul li::before {
  content: "•";
  color: #050a18;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
  margin-right: 15px;
  margin-top: -2px;
}

/* .btn {
  display: inline-block;
  background-color: #050a18;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  width: fit-content;
  transition: transform 0.2s ease, box-shadow 0.3s;
  box-shadow: 0 10px 20px rgba(5, 10, 24, 0.2);
  text-decoration: none;
}

.btn:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 180, 216, 0.3);
} */

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.software-img {
  width: 80%;
}

.mobile-img {
  width: 95%;
}

/* --- WHY US SECTION --- */
.why-us {
  padding: 70px 0;
  background: linear-gradient(127deg, #f3f9ff 0%, #f4fcff 100%);
  text-align: center;
}

.why-content {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-content h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--primary);
}

.why-content .main-desc {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 400;
  color: var(--primary);
}

.btn-dark {
  display: inline-block;
  background-color: #050a18;
  color: var(--white);
  padding: 16px 45px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-dark:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* --- PROCESS SECTION --- */

.process-section {
  margin-top: 35px;
}

.process-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.intro-left h2 {
  font-size: 34px;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.2;
}

.intro-right p {
  font-size: 18px;
  color: #4a5b6d;
  line-height: 1.6;
}

.process-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  align-items: flex-start;
}

/* --- Left Side: Text --- */
.process-steps {
  width: 45%;
  padding-right: 40px;

  padding-top: 25vh;
  padding-bottom: 25vh;
}

.step-block {
  min-height: 45vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  opacity: 0.2;
  transform: translateY(20px);
  transition: all 0.5s ease;
  margin-bottom: 20px;
}

.step-block.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Typography --- */
.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.step-number {
  font-size: 2.9rem;
  font-weight: 800;
  color: #cbd5e1;
  line-height: 1;
  flex-shrink: 0;
}

.step-block.active .step-number {
  color: var(--accent);
}

.step-block h3 {
  font-size: 2rem;
  color: var(--primary);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

.step-block p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.9;
  max-width: 95%;
}

.process-steps {
  width: 45%;
  padding-right: 40px;
  padding-top: 25vh;
  padding-bottom: 25vh;
}

.process-visuals {
  width: 55%;
  height: calc(100vh - 80px);
  position: sticky;
  top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
}

.img-stack {
  width: 100%;
  height: 450px;
  position: relative;
}

.img-stack img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.img-stack img.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/*
#start-project {
  padding: 80px 9%;
  background: var(--color-white);
}

.start-project-box {
  background: linear-gradient(135deg, var(--color-primary-dark), #2e4577);
  border-radius: 16px;
  padding: 60px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.start-project-content {
  max-width: 634px;
  color: var(--white);
}

.start-project-content h2 {
  font-size: 42px;
  line-height: 53px;
  font-weight: 600;
  margin-bottom: 20px;
}

.start-project-content p {
  font-size: 20px;
  line-height: 30px;
  color: #e5e7eb;
  margin-bottom: 26px;
}

.start-btn {
  background: var(--white);
  color: var(--color-primary-base);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.start-btn:hover {
  background: #dbe6f1;
  font-size: 19px;
}

.start-project-video {
  background: var(--color-white);
  padding: 21px;
  border-radius: 18px;
}

.start-project-video video {
  width: 345px;
  height: 268px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}
*/
/* --- FOOTER --- */
#main-footer {
  background: var(--bg-lighter);
  padding: 70px 9% 30px;
  color: var(--color-dark);
  font-family: "Poppins";
}

.footer-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col li:hover {
  color: var(--color-accent);
}

.footer-col p,
.footer-col li {
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
  cursor: pointer;
}

.footer-logo {
  width: 160px;
  margin-bottom: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item p:hover {
  color: var(--color-accent);
}

.social-links img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.social-links img:hover {
  width: 36px;
  height: 36px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  text-align: center;
  font-size: 13px;
  color: #252525;
}
.flag-img {
  width: 16px;
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
}

.contact-block strong {
  display: flex;
  align-items: center;
  gap: 6px;
}
.flag-img {
  width: 16px;
  height: auto;
  margin-right: 6px;
  vertical-align: middle;
}

.contact-block strong {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-links a {
  color: #070707;
  font-size: 18px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #555;
}

/* SUPPORT AND MAINTENANCE SERVICE START */
.support-services {
  padding: 40px 0;
  background: linear-gradient(127deg, #e1f0ff 0%, #ffffff 100%);
}

.service-header h2 {
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}

.service-header p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.support-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  margin-top: 50px;
}

.support-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.support-card {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.support-card:hover,
.support-card.active {
  border-left: 5px solid var(--accent);
  /* transform: translateY(-6px); */
}

.support-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--primary);
}

.support-card p {
  font-size: 15px;
  color: var(--text-light);
}

.support-service img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* APP TYPES SECTION */
.app-types {
  padding: 30px 0 50px;
  background: #f8f9fb;
}

.app-header.center {
  text-align: center;
  /* max-width: 850px; */
  margin: 0 auto 60px;
}

.app-header.center h2 {
  font-size: 44px;
  margin-bottom: 15px;
}

.app-header.center p {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.app-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.app-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.app-card:hover {
  transform: translateY(-8px);
}

.app-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.app-card .tag {
  display: inline-block;
  font-size: 13px;
  background: #eef1f6;
  color: #333;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.app-card p {
  color: #555;
  margin-bottom: 20px;
}

.app-card ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.app-card ul li {
  margin-bottom: 10px;
  color: #444;
}

.app-card.highlighted {
  background: #22466c;
  color: #fff;
}

.app-card.highlighted p,
.app-card.highlighted li {
  color: #eaeaff;
}

.app-card.highlighted .tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* BUTTON */
.btn-outline {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 30px;
  border: 2px solid #303c88;
  color: #303c88;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.app-card.highlighted .btn-outline {
  border-color: #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #303c88;
  color: #fff;
}

.active-btn:hover {
  background: #0d253f;
}

/* UI/UX SECTION */
.uiux-section {
  padding: 80px 0;
  background: #ffffff;
}

.uiux-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.uiux-content {
  max-width: 520px;
}

.uiux-content .uiux-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  background: #eef1f6;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  color: #333;
}

.uiux-content h2 {
  font-size: 30px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.uiux-content h2 span {
  color: #1f3cff;
}

.uiux-content p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 10px;
}

.uiux-content h4 {
  font-size: 17px;
  margin: 18px 0 8px;
}

.uiux-content ul {
  padding-left: 18px;
  margin-bottom: 14px;
}

.uiux-content ul li {
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

.uiux-highlight {
  font-size: 14.5px;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
}

.uiux-cta {
  margin-top: 16px;
}

.uiux-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Custom Software Development FAQ */
/* .faq-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
  font-weight: 600;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 22px;
  font-weight: bold;
}

.faq-answer {
  padding: 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 20px;
}
.arrow {
  font-size: 18px;
  font-weight: bold;
  transition: transform 0.25s ease;
}

.faq-item .arrow {
  transform: rotate(90deg);
}

.faq-item.active .arrow {
  transform: rotate(270deg);
} */

/* Testimonials  SECTION START*/

#clients {
  padding: 0 9%;
  background: white;
  text-align: center;
}

#clients h2 {
  font-size: 48px;
  margin-bottom: 50px;
  line-height: 58px;
  font-weight: 600;
  margin-top: 41px;
}

.clients-wrapper {
  display: flex;
  gap: 40px;
  overflow-x: hidden;
  scroll-behavior: auto;
  padding-bottom: 10px;
}

.testimonial-card {
  /* background: var(--gradient-primary); */
  background: #f5f7f9;

  border-radius: 15px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  color: #1e3361;
  min-width: 838px;
  margin: 10px;
  user-select: none;
  -webkit-user-select: none;
}

.testimonial-left img {
  width: 247px;
  height: 210px;
  border-radius: 11px;
  object-fit: cover;
  margin-bottom: 8px;
  gap: 20px;
  pointer-events: none;
  user-select: none;
}

.testimonial-card:active {
  cursor: grabbing;
}

.testimonial-left h4 {
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  color: black;
}

.testimonial-left span {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #1e3361;
}

.testimonial-content {
  text-align: left;
}

.testimonial-content p {
  font-size: 18px;
  color: #1e3361;
  line-height: 28px;
  text-align: justify;
}

.testimonial-content {
  position: relative;
  padding: 40px;
  z-index: 1;
  overflow: hidden;
}

.testimonial-content::before,
.testimonial-content::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 146px;
  background-image: url(../images/quote.svg);
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
}

.testimonial-content::before {
  top: 10px;
  left: 10px;
}
.testimonial-content::after {
  bottom: 10px;
  right: 10px;
  transform: rotate(180deg);
}

.client-controls {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.client-controls button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid black;
  background: white;
  color: #1e3361;
  font-size: 18px;
  cursor: pointer;
}

.client-controls .next {
  background: #1e3361;
  color: white;
}

.clients-track {
  display: flex;
  will-change: transform;
}

/* CUSTOM SOFTWARE SECTION START */

/* COMMON HEADING */
.software-insight-heading {
  text-align: center;
  padding: 45px 15px 0px;
}
.software-insight-section {
  margin: 65px auto;
}

.software-insight-heading h2 {
  font-size: 48px;
  font-weight: 600;
  color: #0b2c3d;
}

.software-insight-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  /* align-items: stretch;  */
  gap: 60px;
}

.software-insight-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.insight-block {
  margin-bottom: 24px;
}

.insight-block h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #123c52;
}

.insight-block p {
  font-size: 16.5px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

.software-insight-image {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}
.software-insight-image img {
  width: 470px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .software-insight-wrapper {
    flex-direction: column;
  }

  .software-insight-image img {
    height: auto;
  }

  .software-insight-heading h2 {
    font-size: 26px;
  }
}

/* CUSTOM SOFTWARE SECTION END */

/* WEB DEV SECTION START */
.ux-section {
  padding: 0px 20px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.ux-content {
  max-width: 1200px;
  margin: auto;
}

.ux-content h2 {
  font-size: 48px;
  font-weight: 600;
  color: #0b2545;
  margin-bottom: 20px;
}

.ux-tagline {
  font-size: 20px;
  font-weight: 500;
  color: #213c60;
  margin-bottom: 25px;
}

.ux-description {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.uiux-section {
  padding: 22px 20px 70px 20px;
  background: #fff;
}

.uiux-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.uiux-content {
  flex: 1;
}

.uiux-content h4 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2545;
  margin-bottom: 20px;
}

.uiux-content ul {
  padding-left: 18px;
  margin-bottom: 25px;
}

.uiux-content ul li {
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.7;
}

/* CTA */
.ui-btn-dark {
  display: inline-block;
  padding: 12px 28px;
  background: #0b2545;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
}

/* RIGHT IMAGE */
.uiux-visual {
  flex: 1;
  text-align: right;
}

.uiux-visual img {
  max-width: 100%;
  height: auto;
}

/*  Responsive */
@media (max-width: 768px) {
  .uiux-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .uiux-visual {
    text-align: center;
  }

  .uiux-content ul {
    text-align: left;
    display: inline-block;
  }
}

/* WEB DEV SECTION END */

/* CRM SECTION START */

.crm-section-heading {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
}

.crm-insight-heading {
  text-align: center;
  padding: 45px 15px 0;
}

.crm-insight-section {
  margin: 65px auto;
  padding: 0 20px;
}

.crm-insight-heading h2 {
  font-size: 48px;
  font-weight: 600;
  color: #0b2c3d;
}

.crm-insight-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 60px;
}

.crm-custom {
  gap: 80px;
}

.crm-insight-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

.crm-insight-block {
  margin-bottom: 24px;
  flex: 1;
}

.crm-insight-block h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #123c52;
}

.crm-insight-block p {
  font-size: 16.5px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

.crm-insight-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}

.crm-insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .crm-insight-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .crm-insight-image img {
    height: auto;
    width: 100%;
  }
}

@media (max-width: 576px) {
  .crm-section-heading {
    font-size: 32px;
  }

  .crm-insight-block h3 {
    font-size: 20px;
  }

  .crm-insight-block p {
    font-size: 15px;
  }
}

/* CRM SECTION END */
