:root {
  --primary: #02203A;      /* Dark Navy Blue */
  --accent: #1EA6E9;       /* Bright Sky Blue */
  --accent-light: #4EC5F1; /* Light Ice Blue */
  --text-grey: #8C8F94;    /* Cool Grey */
  --bg-light: #F7F9FA;     /* Soft White Background */

  --font-main: "Poppins", sans-serif;
}


/* ---------- TOP HEADER ---------- */
.topbar {
  background: var(--primary);
  color: #ffffffcc;
  font-size: 0.87rem;
}

.topbar i {
  color: var(--accent-light);
  margin-right: 4px;
}

/* ---------- NAVBAR ---------- */
.custom-nav {
  background: #fff;
  padding: 12px 0;
}

/* Logo with drop shadow */
.nav-logo {
  filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.30));
  transition: 0.3s;
 
}

.nav-logo:hover {
  transform: scale(1.03);
}

/* Nav Links */
.nav-link {
  color: var(--text-grey);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: 0.3s ease;
}

/* Underline effect */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 3px;
  background: var(--accent);
  transition: 0.35s ease-in-out;
  border-radius: 50px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--accent);
}

/* Remove ugly glow on mobile toggle */
.navbar-toggler:focus {
  box-shadow: none;
}

.active{
    color: var(--primary) !important;
}


/* Accent text */
.text-accent {
  color: var(--accent);
}

/* Hero title */
.hero-title {
  font-size: 2.6rem;
  line-height: 1.3;
  color: var(--primary);
}

/* Subtext */
.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-grey);
}

/* Gradient Button */
.gradient-btn {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: 0.35s ease;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.18);
}

.gradient-btn:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.22);
}

/* Carousel image wrapper */
.hero-img-wrapper {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 6px 25px rgba(0,0,0,0.15);
}

/* Zoom animation */
.hero-img {
  transition: transform 0.7s ease;
}

.hero-img-wrapper:hover .hero-img {
  transform: scale(1.1);
}

/* Carousel indicators */
.carousel-indicators [data-bs-target] {
  background-color: var(--accent);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Section Title */
.section-title {
  font-size: 2rem;
  color: var(--primary);
}

/* Cards */
.why-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Top gradient border on hover */
.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.35s;
}

.why-card:hover::before {
  transform: scaleX(1);
}

/* Icon */
.why-card .icon {
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 15px;
}

/* Text */
.why-card h5 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-grey);
}

/* Hover effect */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
}

.brand-loop {
  background: #ffffff;
  padding: 10px 0;
  border-top: 2px solid var(--accent-light);
  border-bottom: 2px solid var(--accent-light);
  overflow: hidden;
}


/* ABOUT SECTION */
.about-section {
  background: #f5faff;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Gradient highlight text */
.highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Title */
.about-title {
  font-size: 2.4rem;
  color: var(--primary);
  line-height: 1.3;
}

/* Paragraph */
.about-text {
  color: var(--text-grey);
  font-size: 1.08rem;
  line-height: 1.6;
}

/* Image Box */
.about-img-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0px 12px 35px rgba(0,0,0,0.12);
  transition: 0.5s;
}

.about-img-box:hover {
  transform: translateY(-5px);
}

.about-img {
  width: 100%;
  transition: 0.6s ease;
}

.about-img-box:hover .about-img {
  transform: scale(1.05);
}

/* Bullet List */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.about-list i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Google Button – Multi-color */
.google-btn {
  background: #ffffff;
  border: 2px solid #4285F4;  /* Google Blue */
  color: #4285F4;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.google-btn:hover {
  background: #4285F4;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0px 7px 20px rgba(66,133,244,0.3);
}

/* Multi-color Google icon */
.g-icon {
  width: 22px;
  height: 22px;
}

/* Services Section */
.services-section {
    background: #ffffff;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    color: var(--primary);
}

/* Cards */
.service-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid transparent;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    transition: 0.35s ease;
}

/* Hover Gradient Border */
.service-card:hover {
    border-top: 4px solid var(--accent);
    transform: translateY(-6px);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
}

/* Icons */
.service-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--accent);
}

/* Titles */
.service-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Description */
.service-card p {
    font-size: 0.95rem;
    color: var(--text-grey);
}

/* PARALLAX SECTION */
.parallax-section {
    background-image: url('img/bg.jpg'); /* Replace with your image */
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 580px;
    padding: 80px 20px;

    position: relative;
    overflow: hidden;
}

/* Dark overlay */
.parallax-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 40, 0.65);
    backdrop-filter: blur(2px);
}

/* Content on top */
.parallax-section .container {
    position: relative;
    z-index: 2;
}

/* Title */
.parallax-title {
    color: #fff;
    font-size: 2.3rem;
    line-height: 1.3;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.parallax-text {
    color: #e9eef5;
    font-size: 1.08rem;
    max-width: 650px;
    margin: 0 auto;
}


.products-section {
    background: #f7fbff;
}

/* Card */
.product-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    border-top: 4px solid transparent;
}

/* Hover Effect */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
    border-top: 4px solid var(--accent);
}

/* Image */
.product-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* Title */
.product-card h5 {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

/* Text */
.product-card p {
    color: var(--text-grey);
    font-size: 0.95rem;
}

/* Google Button */
.google-review-btn {
    background: #fff;
    border: 2px solid #4285F4;
    color: #4285F4;
    padding: 8px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.google-review-btn:hover {
    background: #4285F4;
    color: #fff;
}



/* Footer Section */
.footer-section {
    background: var(--primary);
    color: #ffffffcc;
}

.footer-logo {
    width: 200px;
    filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.25));
}

.footer-text {
    font-size: 0.95rem;
    margin-top: 10px;
    color: #e0e6eb;
    line-height: 1.6;
}

/* Titles */
.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li a {
    color: #e0e6eb;
    font-size: 0.97rem;
    display: block;
    padding: 5px 0;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

/* Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    color: #e0e6eb;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--accent-light);
    margin-right: 8px;
}

/* Line */
.footer-line {
    border-color: #ffffff33;
    margin-top: 20px;
}

/* Copyright */
.footer-bottom p {
    color: #e0e6eb;
    font-size: 0.9rem;
}

.designer-link {
    color: #4ec5f1;
    font-weight: 600;
}

.designer-link:hover {
    color: #fff;
}


/* Parallax Header */
.page-header {
    position: relative;
    background-image: url('img/bgs.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;   /* PARALLAX EFFECT */
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark Overlay */
.header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 40, 0.65);
}

/* Content */
.header-content {
    position: relative;
    z-index: 2;
}

/* Title */
.page-title {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 800;
}

.highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 1rem;
    color: #e4eaff;
}

.breadcrumb a {
    color: #aad4ff;
    text-decoration: none;
    transition: 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}


/* About Main Section */
.about-main {
    background: #f7fbff;
}

/* Image box */
.about-main-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0px 10px 28px rgba(0,0,0,0.12);
    transition: 0.5s ease;
}

.about-main-img:hover img {
    transform: scale(1.06);
}

.about-main-img img {
    width: 100%;
    transition: 0.5s;
}

/* Title */
.about-main-title {
    font-size: 2.2rem;
    color: var(--primary);
}

/* Text */
.about-main-text {
    color: #4d5966;
    font-size: 1.05rem;
    line-height: 1.6;
}


/* Mission & Vision Section */
.mission-vision-section {
    background: #ffffff;
}

/* Card */
.mv-card {
    background: #f7fbff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid transparent;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

/* Hover effect */
.mv-card:hover {
    transform: translateY(-6px);
    border-top: 4px solid var(--accent);
}

/* Icon */
.mv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
}

/* Title */
.mv-card h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
}

/* Text */
.mv-card p {
    color: #4d5966;
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Main Section */
.services-main {
    background: #f7fbff;
}

/* Service Card */
.service-box {
    background: #fff;
    padding: 30px 22px;
    border-radius: 15px;
    text-align: center;
    border-top: 4px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

/* Hover Effect */
.service-box:hover {
    transform: translateY(-6px);
    border-top: 4px solid var(--accent);
    box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 15px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* Title */
.service-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Text */
.service-box p {
    color: #4d5966;
    font-size: 0.97rem;
    line-height: 1.6;
}


/* PRODUCTS GRID */
.products-grid {
    background: #f7fbff;
}

/* Make all cards same height */
.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-top: 4px solid transparent;
    transition: 0.35s ease;

    display: flex;
    flex-direction: column;
    height: 100%; /* equal height */
}

/* Hover */
.product-card:hover {
    transform: translateY(-6px);
    border-top: 4px solid var(--accent);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Product Image – AUTO HEIGHT */
.product-img {
    width: 100%;
    height: auto;        /* IMPORTANT: AUTO HEIGHT */
    aspect-ratio: 4/3;   /* keeps equal size look */
    object-fit: cover;   /* crop clean */
    border-radius: 12px;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

/* Hover image zoom */
.product-card:hover .product-img {
    transform: scale(1.05);
}

/* Title */
.product-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

/* Description */
.product-card p {
    color: #4d5966;
    font-size: 0.95rem;
    line-height: 1.6;

    flex-grow: 1; /* pushes button to bottom */
}

/* Order Button – Same Bottom Position */
.order-btn {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: 0.3s ease;
    margin-top: 15px;

    align-self: center; /* centers button */
    box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 20px rgba(0,0,0,0.25);
}


/* Background */
.contact-modern-section {
    background: linear-gradient(to bottom, #f0f6ff, #ffffff);
}

/* Section Title */
.contact-modern-title {
    font-size: 2.2rem;
    color: var(--primary);
}

.contact-modern-text {
    font-size: 1.05rem;
    color: #4d5966;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Info Blocks */
.info-block {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.info-block:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
}

.info-block i {
    font-size: 1.8rem;
    color: var(--accent);
}

.info-block h5 {
    margin: 0;
    font-weight: 700;
    color: var(--primary);
}

.info-block a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
}

/* Glass Form */
.glass-form-box {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.15);
}

.form-header {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Glass Inputs */
.glass-input {
    background: rgba(255,255,255,0.7);
    border-radius: 10px;
    border: 1px solid #dbe5f2;
    padding: 12px;
    transition: 0.3s ease;
}

.glass-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0,120,255,0.15);
}

/* MAP SECTION */
.map-section {
    background: #f7fbff;
}

/* Map Box Styling */
.map-wrapper {
    width: 100%;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

/* Hover elevation */
.map-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.22);
}

/* Iframe full fit */
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Card Box */
.dealer-logo-box {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.10);
    transition: 0.3s ease;
    text-align: center;
}

/* On Hover */
.dealer-logo-box:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 28px rgba(0,0,0,0.18);
}

/* FORCE SAME SIZE LOGOS */
.dealer-logo {
    width: 180px;     /* same width */
    height: 80px;     /* SAME HEIGHT for all logos */
    object-fit: contain;
    display: block;
    margin: 0 auto;
}


/* ==============================
   DIGITAL BUSINESS CARD SECTION
   ============================== */

/* Profile Card */
.profile-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 6px 25px rgba(0,0,0,0.12);
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    object-fit: cover;
    border: 4px solid var(--accent);
}

/* Rotary Premium Badge */
.rotary-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f7c978, #e6a735);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0px 6px 15px rgba(0,0,0,0.15);
}

.rotary-badge-logo {
    height: 32px;
    width: 32px;
    padding: 4px;
    background: #fff;
    border-radius: 50%;
    object-fit: contain;
}

.rotary-text {
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 0.95rem;
}

/* Right Side Heading Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Google Profile Button */
.btn-card {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff !important;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.2);
}

/* Section background fix */
.digital-card-section {
    background: #f8fbff;
}



/* Section Background */


/* Slider */
.brand-client-slider {
    display: flex;
    gap: 25px;
    overflow: hidden;
    white-space: nowrap;
    padding-top: 10px;
}

/* Card */
.brand-client-card {
    min-width: auto;
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    text-align: center;
}

/* CARD HOVER DARK EFFECT */
.brand-client-card:hover {
    transform: scale(1.06);
    background: #1a1a1a;
}

.brand-client-card:hover .brand-client-name {
    color: #fff;
}

/* Image */
.brand-client-img {
    width: auto;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

/* Name — inside the card, text wrapping */
.brand-client-name {
    margin-top: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);

    white-space: normal;
    word-wrap: break-word;

    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.brand-client-slider {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    -ms-overflow-style: none;   /* hide scrollbar IE */
    scrollbar-width: none;      /* hide scrollbar Firefox */
}
.brand-client-slider::-webkit-scrollbar {
    display: none;              /* hide scrollbar Chrome */
}

/* Review Loop Container */
.review-loop {
    display: flex;
    gap: 20px;
    overflow: hidden;
    white-space: nowrap;
    will-change: transform;
}

/* Review Card */
.review-card {
    width: 330px;
    flex-shrink: 0;
    background: #f7fbff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
}

.review-card:hover {
    transform: translateY(-4px);
}

/* Header */
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.4rem;
}

.stars {
    color: #fbbc04;
    font-size: 1.1rem;
}

.review-card p {
    color: #444;
    font-size: 0.95rem;
}


.review-card {
    background: #f7fbff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    color: var(--primary);
}

.stars {
    color: #fbbc04;
    font-size: 1.1rem;
}

.review-card p {
    color: #555;
    margin-top: 10px;
    font-size: 0.95rem;
}

.review-card {
    background: #f7fbff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--accent-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stars {
    color: #fbbc04;
}


.hero-logo-loop {
    width: 100%;
    overflow: hidden;
    padding: 14px 0;
    background: #ffffffdd;
    backdrop-filter: blur(4px);
}

/* Track */
.hero-logo-track {
    display: flex;
    gap: 0;                      /* NO GAP */
    align-items: center;
    width: max-content;
}

/* Logo wrapper */
.hero-logo {
    padding: 0 40px;             /* space around each logo */
}

/* Logo style */
.hero-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.18));
    transition: 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.08);
}




/* Control Buttons */
.client-controls {
    display: flex;
    gap: 10px;
}

.client-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-size: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 14px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: 0.3s ease;
}

.client-btn:hover {
    background: var(--accent);
    transform: scale(1.1);
}


/* --- client carousel --- */
.client-slider-wrapper {
  overflow: hidden;
  position: relative;
  padding-bottom: 6px;
}

.client-track {
  display: flex;
  gap: 20px;
  transition: transform .6s cubic-bezier(.22,.9,.3,1);
  will-change: transform;
}

.client-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.08);
    text-align: center;
    padding: 12px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;       /* IMAGE TOP + NAME BOTTOM */
    align-items: center;
    justify-content: flex-start;
}


.client-card-img {
    width: 100%;
    height: auto;                 /* AUTO HEIGHT */
    object-fit: contain;          /* NO CROPPING */
    border-radius: 10px;
    display: block;
}

.client-card-name {
  margin-top: 10px;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  line-height: 1.2;
}

/* control buttons top-right */
.client-controls {
  display: flex;
  gap: 10px;
}
.client-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  cursor: pointer;
}
.client-btn:hover { transform: scale(1.06); background: var(--accent); }

/* responsive tweaks */
@media (max-width: 767.98px) {
  .client-card-img { height: 180px; }
  .client-btn { width: 40px; height: 40px; }
}


/* Wrapper */
.client-slider-wrapper {
    overflow: hidden;
    position: relative;
    padding-bottom: 6px;
}

/* Sliding Track */
.client-track {
    display: flex;
    gap: 20px;
    transition: transform .6s cubic-bezier(.22, .9, .3, 1);
    will-change: transform;
}

/* === PREMIUM CARD (STYLE 4) === */
.client-card {
    width: 260px;
    height: 270px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 6px 22px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* IMAGE BOX */
.client-img-box {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* AUTO HEIGHT LOGO */
.client-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* NAME BAR */
.client-name-bar {
    background: var(--primary);
    color: #fff;
    padding: 10px 10px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: .3px;
    border-radius: 100px;
}

/* BUTTONS */
.client-controls {
    display: flex;
    gap: 10px;
}

.client-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: #fff;
    font-size: 1.2rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.client-btn:hover {
    transform: scale(1.1);
    background: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .client-card {
        width: 80%;
        height: 260px;
    }
    .client-img-box {
        height: 170px;
    }
}


/* SECTION SPACING */
.expert-works-section {
    background: #f9f9f9;
}

/* LEFT SLIDER */
.works-slider-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.10);
}

.works-slider-track {
    display: flex;
    transition: transform .7s ease;
}

.works-slide {
    min-width: 100%;
}

.works-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
}

/* RIGHT CONTENT */
.expert-content h2 {
    font-size: 2rem;
}

.expert-list {
    list-style: none;
    padding-left: 0;
}

.expert-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.expert-list i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 1.2rem;
}

/* MOBILE */
@media (max-width:768px) {
    .works-slide img {
        height: 250px;
    }
}


.ro-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 6px 22px rgba(0,0,0,0.10);
}

/* Single slider */
.ro-img-box {
    position: relative;
    width: 100%;
    height: 280px;                 /* Box fixed */
    background: #f3f3f3;
    border-radius: 14px;
    overflow: hidden;
}

.ro-single-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.ro-single-img {
    position: absolute;
    inset: 0;
    margin: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;           /* NO crop */
    opacity: 0;
    transition: opacity .5s ease;
}

.ro-single-img.active {
    opacity: 1;
}

/* Buttons */
.ro-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .3s;
}

.ro-prev { left: 10px; }
.ro-next { right: 10px; }

.ro-btn:hover {
    background: var(--primary);
}

/* Titles */
.ro-title {
    margin-top: 15px;
    font-weight: 700;
}

.ro-desc {
    color: #666;
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    animation: floatUpDown 2.2s ease-in-out infinite;
    transition: 0.3s ease;
    text-decoration: none;
    left: 28px;   /* moved to LEFT */
    right: auto;  /* remove right */
}

/* WhatsApp Icon */
.whatsapp-icon {
    width: 56px;
    height: 56px;
}

/* Floating Animation */
@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
    100% { transform: translateY(0); }
}

/* Hover Glow */
.whatsapp-float:hover {
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    transform: scale(1.08);
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #000;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: 0.3s ease;
    white-space: nowrap;
}

/* Tooltip arrow */
.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #000;
}

/* Hover show tooltip */
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}


/* Go To Top Button */
.go-top {
    position: fixed;
    right: 28px;
    bottom: 90px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 6px 22px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
    z-index: 999;
}

/* Show on scroll */
.go-top.show {
    opacity: 1;
    visibility: visible;
}

/* Hover glow */
.go-top:hover {
    transform: scale(1.1);
    background: var(--accent);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}


/* Section background */
.certificate-section {
    background: linear-gradient(135deg,#f8fbff,#eef3f9);
}

/* Card */
.certificate-card {
    position: relative;
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: .4s ease;
}

/* Hover premium lift */
.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.18);
}

/* Image auto size */
.certificate-img {
    width: 100%;
    height: auto;          /* AUTO HEIGHT */
    object-fit: contain;   /* NO CROP */
    border-radius: 12px;
}

/* Badge */
.cert-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width:768px){
    .certificate-card {
        padding: 15px;
    }
}
