* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "El Messiri", sans-serif;
}

body {
    background: #0b0f2a;
    color: #fff;
	font-family: "El Messiri", sans-serif;
	 overflow-x: hidden;
}

section {
    scroll-margin-top: 120px; /* adjust based on header height */
}
.container {
    width: 90%;
    margin: auto;
}

/* HEADER */
.header {
    background: linear-gradient(180deg, #0b0f2a, #0a0d24);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* TOP BAR */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #f3c623;
}

/* BASE */
.header {
    width: 100%;
    background: #0b1230;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* TOP */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    font-size: 14px;
}

.btn {
    background: #ff4d6d;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
}

/* NAV */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* SOCIAL */
.social-icons a {
    color: #fff;
    margin-left: 10px;
}

/* HAMBURGER (hidden desktop) */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone {
    color: #ff4d6d;
    font-weight: bold;
}

.btn {
    border: 1px solid #ff4d6d;
    padding: 8px 18px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #ff4d6d;
}

/* NAV BAR */
.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #f3c623;
}

/* SOCIAL ICONS */
.social-icons a {
    color: #ccc;
    margin-left: 15px;
    font-size: 14px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #f3c623;
}

/* SECTIONS (Demo) */
.section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    border-top: 1px solid #222;
}

/* HERO SECTION */
.hero {
    background: url('./img/bg-section-home.jpg') no-repeat center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
   
}

.hero-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-family: "El Messiri", sans-serif;
    font-size: 60px;
    color: #4da6ff;
    line-height: 1.2;
	 text-shadow: 0 0 15px rgba(77, 166, 255, 0.4);
}

.hero-text p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 400px;
}

.btn-primary {
    background: #ff4d6d;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    transition: 0.3s;
}
/* ROTATING IMAGE */
.hero-image img {
    width: 80%;
    max-width: 500px;
    
    animation: rotating 20s linear infinite;
}

/* ROTATION KEYFRAMES */
@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* STOP ON HOVER */
.hero-image img:hover {
    animation-play-state: paused;
}
.btn-primary:hover {
    background: #e63b5a;
}

/* HERO IMAGE */
.hero-image {
    width: 50%;
    text-align: center;
}

.hero-image img {
    width: 80%;
    max-width: 500px;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
}


/* ABOUT SECTION */
.about {
    background: #0b0f2a;
    padding: 80px 0;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    width: 40%;
}

.about-image img {
    width: 100%;
    border-radius: 50%;
}

/* TEXT */
.about-text {
    width: 60%;
}

.about-text h4 {
	 color: #ff4d6d;
     font-family: "El Messiri", sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-text h2 {
    font-family: "El Messiri", sans-serif;
    font-size: 36px;
}

.about-text p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* BUTTON OUTLINE */
.btn-outline {
    border: 1px solid #ff4d6d;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    display: inline-block;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #ff4d6d;
}


/* RESPONSIVE */
@media(max-width: 768px) {
    .hero-content,
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text,
    .hero-image,
    .about-text,
    .about-image {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 40px;
    }
}
/* INTENT SECTION */
.intent {
    background: url('./img/bg-section-forecast.jpg') no-repeat;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

/* DARK OVERLAY */
.intent::before {
    content: "";
    position: absolute;
    inset: 0;
   
}

.intent-content {
    position: relative;
    max-width: 900px;
    margin: auto;
}

/* HEADING */
.intent h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 25px;
}

/* TEXT */
.intent p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* OPTIONAL GLOW EFFECT */
.intent h2 {
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}
/* CARDS TEXT FIX */
.card p {
    font-size: 13px;
    line-height: 1.8;
    color: #e0e0e0;
}

/* MATCH DESIGN SPACING */

.cosmic-section {
   
    padding-top: 30px;
	padding-bottom: 10px;
    color: #fff;
    text-align: center;
	  background: url('./img/bg-section-home.jpg') no-repeat;
}

/* TITLE */
.title {
    font-size: 28px;
    color: #ff4d6d;
    margin-bottom: 10px;
    font-family: "El Messiri", sans-serif;
}

.divider {
    width: 60px;
    height: 2px;
    background: #ccc;
    margin: 0 auto 60px;
}

/* CARDS */
.card-row {
    display: flex;
    justify-content: center;
    align-items: stretch; /* IMPORTANT */
    gap: 40px;
    margin: 0 auto 100px;
    max-width: 1100px;
}

.info-card {
    width: 300px;
    display: flex;
    flex-direction: column;
}

.card-box {
    flex: 1; /* equal height */
}
/* CIRCLE IMAGE */
.circle-img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid;
    margin-bottom: -60px;
    z-index: 2;
    position: relative;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CARD BOX */
.card-box {
    padding: 80px 20px 30px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(8px);
    border: 1px solid;
    font-size: 12.5px;
    line-height: 1.7;
}

/* COLORS */
.blue .circle-img { border-color: #4da6ff; }
.blue .card-box { border-color: #4da6ff; }

.pink .circle-img { border-color: #ff4d6d; }
.pink .card-box { border-color: #ff4d6d; }

/* DIFFERENCE */
.difference {
    max-width: 1000px;
    /*margin: 0 auto 60px;*/
    display: grid;
    grid-template-columns: 1fr 1.5fr 120px;
    align-items: center;
    gap: 30px;
}

.difference h3 {
    font-size: 28px;
    text-align: right;
	color: #ff4fa3;
}

.difference p {
    font-size: 14px;
    text-align: left;
}

.difference img {
    width: auto;
}

/* USP */


/* IMAGE ROW */
.usp-track {
    display: flex;
    gap: 20px;
}

.usp-track img {
    width: 180px;
    height: 180px;
    object-fit: cover;
}

/* BUTTON CENTER */




/* SECTION BACKGROUND (ONLY HERE) */
.usp-section {
  display: flex;
  height: 600px;
  overflow: hidden;
  background: #0b0f2a;
}

/* LEFT BACKGROUND IMAGE */
.usp-left {
  width: 40%;
  background: url("./img/bg-section-service.jpeg") center/cover no-repeat;
  position: relative;
}
.usp-top h3{
	position: absolute;
    color: #ff4fa3;
}
.usp-columns{
	float: right;
    position: relative;
}
/* DARK OVERLAY */
.usp-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* RIGHT SIDE */
.usp-right {
 width: 60%;
    padding: 0px 0px;
    position: relative;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
}

/* TEXT */
.usp-top {
  /*position: relative;*/
  z-index: 2;
  `/*margin-bottom: 40px;*/
}

.tag {
  color: #ccc;
  font-size: 14px;
}

.usp-top h2 {
  font-size: 42px;
  color: #ff4fa3;
  margin: 10px 0;
}

.desc {
  color: #aaa;
  max-width: 350px;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #ff4fa3;
  border-radius: 25px;
  color: white;
  text-decoration: none;
}

.btn:hover {
  background: #ff4fa3;
}

/* CAROUSEL */
.usp-carousel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

/* TRACK (AUTO SCROLL) */
.carousel-track {
  display: flex;
  gap: 30px;
  animation: scroll 20s linear infinite;
}

.carousel-track img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

/* SMOOTH INFINITE SCROLL */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.card-box p {
    font-size: 13.5px;
}

.usp-controls button:hover {
    background: #ff4d6d;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .card-row,
    .difference,
    .usp-section {
        flex-direction: column;
        text-align: center;
    }

    .difference h3,
    .difference p {
        text-align: center;
    }
}

.team-section {
  padding: 100px 20px;
  background: #0b0f2a;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.team-title {
  text-align: center;
  color: #ff4fa3;
  margin-bottom: 80px;
  font-size: 28px;
}

/* ROW */
.team-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.team-row.reverse {
  flex-direction: row-reverse;
}

/* IMAGE FRAME */
.team-img {
  width: 260px;
  height: 260px;
  padding: 15px;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ddd;
}

/* BORDER COLORS */
.team-img.blue {
  border: 6px solid #3fa9ff;
}

.team-img.pink {
  border: 6px solid #ff4fa3;
}

/* TEXT */
.team-content {
  max-width: 500px;
}

.team-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.team-content .role {
  color: #ff4fa3;
  font-size: 14px;
  margin-bottom: 15px;
}

.team-content .role span {
  color: #f5c542;
  font-size: 13px;
}

.team-content p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .team-row {
    flex-direction: column;
    text-align: center;
  }

  .team-row.reverse {
    flex-direction: column;
  }
}

.testimonial-section {
  
  background: linear-gradient(to bottom, #0b0f2a, #0a0d22);
  color: white;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* TITLE */
.title {
  color: #ff4fa3;
  font-size: 28px;
}

.subtitle {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 50px;
}

/* WRAPPER */
.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.line {
    background-color: #fff;
    display: inline-block;
    height: 1px;
    position: relative;
    width: 270px;
}
.line::before {
    background-color: #fff;
    border-radius: 2px;
    content: "";
    display: inline-block;
    height: 5px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
}
/* CARDS */
.cards {
  display: flex;
  gap: 30px;
}

.card {
  width: 260px;
  background: #0d1333;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.card.active {
  transform: scale(1.05);
}

/* BG IMAGE */
.card-bg img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

/* PROFILE */
.profile {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.profile img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid white;
}

/* TEXT */
.card h4 {
  margin-top: 50px;
}

.card span {
  color: #ff4fa3;
  font-size: 12px;
}

.card p {
  font-size: 13px;
  color: #ccc;
}

/* ARROWS */
.arrow {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* QUOTE SECTION */
.quote-section {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* TEXT */
.quote-text h3 {
  color: #f5c542;
  font-size: 26px;
}

.quote-text p {
  max-width: 400px;
  color: #ccc;
  margin: 20px 0;
}

.quote-text span {
  color: #3fa9ff;
}
.quote-section .quote-text {
	text-align:center;
}

/* IMAGE */
.quote-img img {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 8px solid #0b0f2a;
}

/* RESPONSIVE */
@media(max-width:768px){
  .cards {
    flex-direction: column;
  }

  .quote-section {
    flex-direction: column;
  }
}
/* SCROLL BUTTON */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;

    background: #ff4d6d;
    color: #fff;
    border: none;

    width: 45px;
    height: 45px;
    border-radius: 50%;

    font-size: 16px;
    cursor: pointer;

    display: none; /* hidden initially */

    transition: 0.3s;
}

/* HOVER EFFECT */
#scrollTopBtn:hover {
    background: #e63b5a;
    transform: translateY(-3px);
}

/* FOOTER */
.footer {
    background: #070b1f;
    padding: 60px 0 20px;
    color: #ccc;
}

/* LAYOUT */
.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

/* LOGO */
.logo-col img {
    width: 150px;
}

/* HEADINGS */
.footer-col h4 {
    color: #4da6ff;
    margin-bottom: 15px;
    font-size: 14px;
}
.footer-col h4 {
    text-shadow: 0 0 8px rgba(77,166,255,0.4);
}

/* LINKS */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* CONTACT TEXT */
.footer-col p {
    font-size: 13px;
    line-height: 1.6;
}

/* SOCIAL */
.footer .social-icons {
    margin-top: 10px;
}

.footer .social-icons a {
    color: #aaa;
    margin-right: 10px;
    font-size: 13px;
    transition: 0.3s;
}

.footer .social-icons a:hover {
    color: #4da6ff;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 12px;
    color: #888;
}

.footer-bottom span {
    color: #4da6ff;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .info-card {
    width: auto;
    flex-direction: column;
}
}
.usp-carousel::after {
    content: "Swipe →";
    display: block;
    text-align: center;
    font-size: 12px;
    color: #aaa;
    margin-top: 5px;
}

@media (max-width: 1024px) {

    .usp-section {
        grid-template-columns: 300px 1fr;
        padding: 40px 20px;
    }

    .usp-left img {
        height: 400px;
    }

    .usp-right {
        padding-left: 30px;
    }

    .carousel-track img {
        width: 180px;
        height: 180px;
    }

    .usp-carousel {
        margin-left: -120px; /* reduce overlap */
    }
}
@media (max-width: 768px) {
.info-card {
    width: auto;
    flex-direction: column;
}
    .usp-section {
        display: block;
        padding: 20px;
    }

    /* LEFT IMAGE TOP */
    .usp-left {
        margin-bottom: 20px;
    }

    .usp-left img {
        width: 100%;
        height: auto;
    }

    /* RIGHT FULL WIDTH */
    .usp-right {
        margin-left: 0;
        padding: 0;
    }

    /* TEXT CENTER */
    .usp-top h3 {
        text-align: center;
    }

    .usp-columns {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* 🚨 REMOVE OVERLAP */
    .usp-carousel {
        margin-left: 0;
    }

    /* FULL WIDTH CAROUSEL */
    .usp-carousel-wrapper {
        overflow: hidden;
    }

    .carousel-track {
        gap: 15px;
    }

    .carousel-track img {
        width: 45vw;
        height: 45vw;
    }

    /* BUTTON CENTER */
    .prev, .next {
        position: static;
        transform: rotate(45deg);
        margin: 10px;
    }

    .usp-carousel {
        justify-content: center;
        flex-direction: column;
    }
}
@media (max-width: 480px) {
.info-card {
    width: auto;
    flex-direction: column;
}
    .usp-columns p {
        font-size: 13px;
    }

    .carousel-track img {
        width: 80%;
        height: auto;
    }
}
.prev, .next {
    position: relative;
   
    left: 0;

    width: 40px;
    height: 40px;

    border: 1px solid #ff4d6d;
    background: transparent;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: rotate(45deg);
}

/* ICON FIX (important) */
.prev span, .next span {
    transform: rotate(-45deg); /* make arrow straight */
    display: inline-block;
    color: #fff;
    font-size: 16px;
}

.next {
    left: 35px;
}
.prev:hover, .next:hover {
    background: #ff4d6d;
}
.usp-top {
    margin-top: 40px;
}

/* GRID LAYOUT */
.usp-grid {
    display: grid;
    grid-template-columns: 135px 1fr;
    gap: 10px;
    align-items: start;
}

/* LEFT HEADING */
.usp-left-heading h3 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
}

/* RIGHT TEXT */
.usp-right-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #ddd;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .usp-left-heading h3 {
        font-size: 26px;
    }
}
.usp-left-heading {
    border-left: 3px solid #e91e63;
    /* padding-left: 15px; */
    margin-bottom: 25px;
}
.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.usp-carousel-wrapper {
    overflow: hidden; /* MUST */
    width: 400px; /* shows 2 images */
}
.tag {
  position: relative;
  padding-right: 20px;
}

.tag::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 80px;
  background: #fff;
}

/* TABLET */
@media (max-width: 1024px) {
    nav ul {
        gap: 15px;
    }
    .info-card {
    width: auto;
    flex-direction: column;
}
}

/* MOBILE */
@media (max-width: 768px) {

    /* STACK TOP */
    .header-top {
        flex-direction: column;
        gap: 10px;
    }

    .header-right {
        flex-direction: column;
        gap: 10px;
    }

    /* SHOW HAMBURGER */
    .menu-toggle {
        display: block;
    }

    /* HIDE MENU */
    nav {
        
        top: 100%;
        left: 0;
        width: 100%;
        background: #0b1230;
        display: none;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    /* SHOW MENU WHEN ACTIVE */
    nav.active {
        display: block;
    }

    /* NAV BAR ALIGN */
    .nav-bar {
        position: relative;
    }

    /* SOCIAL BELOW */
    .social-icons {
        display: none;
    }
    .info-card {
    width: auto;
    flex-direction: column;
}
}
/* SECTION */

/* IMAGE */


/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .difference {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "image"
      "text";
    text-align: center;
    padding: 40px 15px;
  }

  .difference .tag {
    font-size: 24px;
  }

  .difference img {
    width: 250px;
    justify-self: center;
  }

  .difference p {
    font-size: 14px;
    max-width: 100%;
  }
}
.diff-text {
  flex: 1;
}

.diff-img {
  flex: 1;
  text-align: right;
}
.difference img {
  transition: transform 0.4s ease;
}

.difference img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .diff-img {
    text-align: center;
  }
}
/* ===== MAIN LAYOUT FIX ===== */
.usp-section {
  display: flex;
  flex-wrap: wrap; /* IMPORTANT */
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  overflow: hidden;
}

/* LEFT IMAGE */
.usp-left {
  flex: 0 0 40%;   /* fixed width */
  max-width: 40%;
}

.usp-left img {
  width: 100%;
  height: auto;
  display: block;
}

/* RIGHT CONTENT */
.usp-right {
  flex: 0 0 55%;
  max-width: 55%;
}

/* ===== USP TEXT GRID ===== */
.usp-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
}



.usp-right-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* ===== CAROUSEL FIX ===== */
.usp-carousel {
  position: relative;
  margin-top: 0px;
  overflow: hidden;
  width: 100%; /* IMPORTANT */
  margin-bottom: 40px;
}

/* TRACK */
.carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  will-change: transform;
}

/* IMAGE SIZE FIX */
.carousel-track img {
  width: calc(50% - 10px); /* 2 images visible */
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

/* BUTTONS */


/* ================= TABLET ================= */
@media (max-width: 992px) {

  .usp-section {
    flex-direction: column;
  }

  .usp-left,
  .usp-right {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .usp-left img {
    max-width: 300px;
    margin: 0 auto;
  }

  .usp-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .usp-section {
    padding: 40px 15px;
  }

  .usp-left img {
    max-width: 250px;
  }

  .usp-left-heading h3 {
    font-size: 24px;
  }

  .usp-right-text p {
    font-size: 14px;
  }

  .carousel-track img {
    width: 80%; /* show 1 image */
    margin: 0 auto;
  }

  .usp-carousel button {
    width: 30px;
    height: 30px;
  }
}


