* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* HEADER */
.topbar, .navbar {
    position: relative;
    z-index: 10;
}

/* TOPBAR FIX */
.topbar {
    background: linear-gradient(90deg,#1e3a8a,#2563eb);
    color: #fff;
    padding: 10px 60px;
    display: flex;
    justify-content: space-between; /* 🔥 FIX */
    align-items: center;
    font-size: 14px;
}

/* REMOVE DEFAULT LINK BLUE COLOR */
.topbar a {
    color: #fff;
    text-decoration: none;
}

.topbar a:hover {
    text-decoration: underline; /* optional */
}


/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px 60px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* LOGO FINAL FIX */
.logo {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* PREVENT WRAPPING */
    gap: 6px;
    text-decoration: none;
}

/* LOGO IMAGE */
.logo img {
    height: 42px;   /* balanced size */
    width: auto;
    display: block;
}

/* LOGO TEXT */
.logo span {
    display: inline-block; /* IMPORTANT */
    white-space: nowrap;   /* PREVENT BREAK */
    font-size: 22px;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;        /* FIX vertical shift */
    margin: 0;
    padding: 0;
}

/* LOGO TEXT */
.logo span {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 1px;
    line-height: 1;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #1e293b;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* REMOVE PURPLE VISITED */
nav a:visited {
    color: #1e293b;
}

/* HOVER EFFECT */
nav a:hover {
    color: #2563eb;
}

/* UNDERLINE ANIMATION */
nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #2563eb;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* HERO */
.hero {
    position: relative;
    background: linear-gradient(135deg,#2563eb,#1e40af);
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
    color: white;

    min-height: 700px; /* FIX HEIGHT */
    display: flex;
    align-items: center;
    justify-content: center;
}

.underline-word {
    border-bottom: 5px solid orange;
    padding-bottom: 3px;
}

.italic-word {
    font-style: italic;
    margin-right: 8px; /* adds clean space after word */
}
/* SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
}

/* SLIDES */
.slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    position: relative;
}

/* CONTENT */
.hero-content {
    margin-bottom: 30px;
}

/* FIX IMAGE AREA */
.hero-image {
    height: 420px; /* SAME HEIGHT FOR ALL SLIDES */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* IMAGE FIX (VERY IMPORTANT) */
.hero-image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;

    animation: floatImage 5s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
}

/* SINGLE CLEAN ANIMATION */
@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* ICONS (KEEP SAME) */
.hero-icon {
    position: absolute;
    width: 50px;
    animation: float 5s ease-in-out infinite;
    pointer-events: none;
}

.facebook { top: 30%; left: 10%; }
.instagram { top: 30%; right: 10%; }
.youtube { bottom: 20%; left: 10%; }
.twitter { bottom: 20%; right: 10%; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* ITALIC WORDS (ONLY BANNER) */
.italic-word {
    font-style: italic;
}

/* KEEP YOUR EXISTING HERO LAYOUT */
.slide .hero-content,
.slide .hero-image {
  position: relative;
}

/* FLOAT ANIMATION (LIKE YOUR CURRENT IMAGE) */
.hero-image img {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* FLOATING ICONS */
.hero-icon {
    position: absolute;
    width: 50px;
    animation: float 5s ease-in-out infinite;
    pointer-events: none;
}

.facebook { top: 30%; left: 10%; }
.instagram { top: 30%; right: 10%; }
.youtube { bottom: 20%; left: 10%; }
.twitter { bottom: 20%; right: 10%; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* HERO IMAGE FLOAT */
.hero-image img {
    width: 950px;
    max-width: 95%;
    margin-top: 60px;
    animation: floatImage 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
}

@keyframes floatImage {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* COMMON SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
}

.section-tag::after {
    content: "";
    width: 40px;
    height: 3px;
    background: orange;
    display: block;
    margin: 6px auto;
    border-radius: 2px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

/* CATEGORIES */
.categories {
    padding: 100px 60px;
    background: #f8fafc;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #1e293b;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.green{background:#84cc16;}
.orange{background:#f97316;}
.blue{background:#3b82f6;}
.purple{background:#a855f7;}
.yellow{background:#facc15;color:#000;}
.darkblue{background:#1e40af;}
.gold{background:#f59e0b;}

/* SERVICES */
.services-pro {
    padding: 100px 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.service-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.service-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.service-card .icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg,#2563eb,#1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.service-card p {
    margin-left: 60px;
    color: #64748b;
    font-size: 14px;
}

/* MOBILE */
@media(max-width:768px){
    .category-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }
}

.industries {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1e3a8a,#2563eb); /* same vibe as banner */
  color: #fff;
}

.industries h2 {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 600;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.industry-box {
  padding: 25px 20px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}

.industry-box:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* FIX OVERLAP */
.industries {
  padding-bottom: 100px;
}

.contact-section {
  padding: 100px 0; /* remove left/right space */
  background: #f5f7fb;
}

/* HEADER STYLE (MATCH INDUSTRIES) */
.contact-heading {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #1e293b;
}

/* FULL WIDTH ALIGN FIX */
.contact-container {
  display: flex;
  width: 100%;              /* FULL WIDTH */
  max-width: 1200px;        /* control size */
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* LEFT */
.contact-left {
  width: 35%;
  background: #fff;
  color: #000;
  padding: 40px;
}

.subtext {
  color: #555;
  margin-bottom: 20px;
}

/* CALENDAR */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

.calendar-grid span {
  padding: 10px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}

.calendar-grid .active {
  background: #2563eb;
  color: #fff;
}

/* RIGHT */
.contact-right {
  width: 65%;
  padding: 40px;
}

.row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.row input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 10px;
}

textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  margin-bottom: 25px;
  padding: 10px;
}

/* BUTTON CENTERED */
button {
  background: #2563eb;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  display: block;
  margin: 0 auto; /* center button */
}

button:hover {
  background: #1e40af;
}

/* CALENDAR */
.calendar {
  margin-top: 20px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-top: 15px;
}

.calendar-grid span {
  padding: 8px;
  text-align: center;
  border-radius: 50%;
  cursor: pointer;
}

.calendar-grid .active {
  background: #2563eb;
  color: #fff;
}

/* RIGHT PANEL */
.contact-right {
  width: 65%;
  padding: 40px;
}

.row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.row input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 10px;
}

textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 10px;
}

button {
  background: #2563eb;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
}

button:hover {
  background: #1e40af;
}

.footer {
  background: #1e40af;
  color: #fff;
  padding: 80px 20px 20px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  color: #cbd5f5;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #cbd5f5;
}

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #2563eb;
}

footer a {
    color: #fff;              /* force white */
    text-decoration: none;    /* remove underline */
}

footer a:hover {
    text-decoration: underline; /* optional */
}

/* SOCIAL ICONS */
.socials a {
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
}

.socials a:hover {
  color: #2563eb;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #94a3b8;
}

.footer-bottom a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #2563eb;
}

/* MOBILE */
@media(max-width:768px){
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    /* HERO */
    .hero {
        padding: 80px 15px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.4;
    }

    .hero-image {
        height: auto;
    }

    .hero-image img {
        max-width: 90%;
    }

    /* HIDE FLOATING ICONS (OPTIONAL) */
    .hero-icon {
        display: none;
    }

    /* SERVICES / INDUSTRIES GRID */
    .services-grid,
    .industry-grid {
        grid-template-columns: 1fr;
    }

    /* CONTACT FORM */
    .contact-container {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .row {
        flex-direction: column;
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

}
/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        text-align: center;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

}
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 999;
}

.whatsapp-text {
    background: #ffffff;
    color: #1e293b;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.whatsapp-btn {
    background: #25D366;
    color: #fff;
    font-size: 22px;
    padding: 14px 16px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

/* ========================= */
/* ABOUT HERO (SAME AS HOME BUT SHORTER) */
/* ========================= */

.about-hero {
    padding: 60px 20px;     /* reduced height */
    min-height: 60vh;       /* smaller than homepage */
}

.about-hero .hero-content h1 {
    font-size: 36px;
}

.about-hero .hero-content p {
    font-size: 15px;
    opacity: 0.9;
}


/* ========================= */
/* ABOUT CONTENT */
/* ========================= */

.about-content {
    padding: 60px 10%;
    background: #f8fafc;
}

.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.about-text h3 {
    margin-top: 20px;
    font-size: 20px;
}

.about-text p {
    color: #475569;
    line-height: 1.7;
}

.about-text ul {
    margin-top: 10px;
    padding-left: 20px;
}

.about-text ul li {
    margin-bottom: 8px;
}


/* ========================= */
/* ABOUT IMAGE */
/* ========================= */

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 90%;
    max-width: 400px;
    border-radius: 0;              /* remove rounded look */
    object-fit: contain;
}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-hero {
        padding: 50px 15px;
        min-height: auto;
    }

    .about-hero .hero-content h1 {
        font-size: 26px;
    }
}

/* WHY US SECTION */
.why-us {
    padding: 60px 10%;
    text-align: center;
    background: #f8fafc;
}

.why-us h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: #f1f5f9;
    padding: 30px 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.why-card i {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 15px;
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.why-card p {
    font-size: 14px;
    color: #475569;
}

.why-card:hover {
    transform: translateY(-5px);
    background: #e2e8f0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* Influencer
/* STATS */
.stats {
    padding: 50px 10%;
    background: #f1f5f9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
}

.stat-box h2 {
    font-size: 32px;
    color: #2563eb;
}

.stat-box p {
    color: #475569;
}

/* INDUSTRY GRID */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 15px;
}

.industry-grid div {
    background: #2563eb;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
}

/* JOIN SECTION */
.join-section {
    text-align: center;
    padding: 60px 10%;
}

.join-btn {
    background: #2563eb;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 15px;
}

/* SERVICE SECTION */
.service-section {
    padding: 60px 10%;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.service-text p {
    color: #475569;
    margin-bottom: 15px;
}

.service-text ul li {
    margin-bottom: 8px;
}

.service-image {
    flex: 1;
    text-align: center;
}

.service-image img {
    width: 100%;
    max-width: 400px;
}

/* MOBILE */
@media (max-width: 768px) {
    .service-row {
        flex-direction: column;
        text-align: center;
    }
}

/* CONTACT PAGE */
.contact-page {
    padding: 60px 10%;
}

.contact-wrapper {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.info-box i {
    color: #2563eb;
}

.contact-form-box {
    flex: 1;
}

.contact-form-box form input,
.contact-form-box form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
}

.row {
    display: flex;
    gap: 10px;
}

button {
    background: #2563eb;
    color: #fff;
    padding: 12px;
    border: none;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }
}