
/* ================= NEW SOCIAL ICON DESIGN ================= */

.social-icons{
  display:flex;
  gap:12px;
  align-items:center;
}

/* ===== SLIM TRACKING BUTTON ===== */

/* Base style */
.social-icon{
  width:40px;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;            /* rounded square = premium */
  font-size:15px;
  color:#333;
  background:#aeacb1;
  text-decoration:none;
  transition:all 0.3s ease;
  box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

/* Hover */
.premium-track-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(237,198,37,0.55);
  color:#000;
}


/* Brand hover colors */
.social-icon.wa:hover{
  background:#25D366;
  color:#fff;
}

.social-icon.fb:hover{
  background:#1877F2;
  color:#fff;
}

.social-icon.ig:hover{
  background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
  color:#fff;
}

.social-icon.in:hover{
  background:#0A66C2;
  color:#fff;
}

.social-icon.tw:hover{
  background:#000;
  color:#fff;
}

.social-icon.yt:hover{
  background:#df0606;
  color:#aca6a6;
}
/* Hover animation */
.social-icon:hover{
  transform:translateY(-3px) scale(1.05);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* ===== FORCE SOCIAL ICONS TO EXTREME RIGHT ===== */

.navbar-actions{
  margin-left:auto;       /* full right */
}

.social-icons{
  display:flex;
  gap:5px;
   padding-left:140px;
}






.hero-tagline{
  font-size:50px;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  white-space:normal;
  margin-top:10px;
  overflow: visible !important;


  background:linear-gradient(90deg,#EDC625,#EDC625);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
@media(max-width:576px){
  .hero-tagline{
    font-size:14px;
    letter-spacing:1px;
  }
}

.hero-tagline1{
  font-size:50px;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  white-space:normal;
  margin-top:10px;
  overflow: visible !important;

  background:linear-gradient(90deg,#EDC625,#EDC625);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
@media(max-width:576px){
  .hero-tagline{
    font-size:14px;
    letter-spacing:1px;
  }
}

.hero-tagline2{
  font-size:50px;
  font-weight:600;
  letter-spacing:1.5px;
  text-transform:uppercase;
  white-space:normal;
  margin-top:10px;
  overflow: visible !important;

  background:linear-gradient(90deg,#EDC625,#EDC625);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}
@media(max-width:576px){
  .hero-tagline{
    font-size:14px;
    letter-spacing:1px;
  }
}

img.main-logo{
    width: 500px !important;
    height: auto !important;
}


.elementor-element-7c6ed9a2{
    background:#711CA6 !important;
}






/* ===== FOOTER BOTTOM STRIP ===== */
.footer-bottom-4{
    width:100%;
    background:#5a1e8c; /* Purple dark – footer matching */
    padding:16px 0;
    border-top:1px solid rgba(255,255,255,0.15);
}

/* Layout */
.footer-bottom-wrapper-4{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

/* Copyright text */
.footer-bottom-wrapper-4 p{
    margin:0;
    font-size:14px;
    color:#ffffff;
    letter-spacing:0.2px;
}

/* Powered by */
.powered-by{
    font-size:13px;
    color:#f7efd4;
}

.powered-by a{
    color:#EDC625;
    font-weight:500;
    text-decoration:none;
}

.powered-by a:hover{
    text-decoration:underline;
}

/* Social icons */
.social-menu{
    display:flex;
    align-items:center;
}

.social-menu a{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left:10px;
    background:rgba(255,255,255,0.12);
    border-radius:50%;
    color:#ffffff;
    font-size:15px;
    transition:0.3s ease;
}

.social-menu a:hover{
    background:#ffd166;
    color:#3a0a63;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
    .footer-bottom-wrapper-4{
        flex-direction:column;
        text-align:center;
    }

    .social-menu{
        margin-top:10px;
    }
}

/* ================= END NEW SOCIAL ICON DESIGN ================= */





/* =========================
   PARTNER GRID
/* =========================
   PARTNER GRID
========================= */
.partner-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:30px;
  max-width:1200px;
  margin:0 auto;
  padding:40px 20px;
}

/* =========================
   CARD (DESKTOP DEFAULT)
========================= */
.partner-card{
  position:relative;
  background:#fff;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  overflow:hidden;
  height:300px; /* desktop */
}

/* =========================
   LOGO
========================= */
.partner-logo{
  height:140px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.partner-logo img{
  max-width:85%;
  max-height:80px;
  object-fit:contain;
}

/* =========================
   BUTTON
========================= */
.partner-toggle{
  width:100%;
  border:none;
  background:#711CA6;
  color:#fff;
  font-size:15px;
  font-weight:600;
  padding:14px;
  cursor:pointer;
}

/* =========================
   DETAILS (OVERLAY PANEL)
========================= */
.partner-info{
  position:absolute;
  inset:0;
  background:#EDC625;
  padding-top:0px;
  transform:translateY(100%);
  transition:transform .4s ease;
  overflow-y:auto;
}

.partner-card.active .partner-info{
  transform:translateY(0);
}

/* =========================
   DETAILS LIST
========================= */
.partner-info ul{
  list-style:none;
  padding:20px;
  margin:0;
}

.partner-info li{
  font-size:14px;
  padding:8px 0;
  border-bottom:1px dashed #ddd;
}

.partner-info li span{
  font-weight:600;
  display:block;
  color:#444;
}

.partner-info a{
  color:#6f2bd9;
  text-decoration:none;
}

/* =========================
   TABLET (≤1024px)
========================= */
@media (max-width:1024px){
  .partner-grid{
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
  }

  .partner-card{
    height:320px;
  }
}

/* =========================
   MOBILE (≤767px)
========================= */
@media (max-width:767px){

  .partner-grid{
    grid-template-columns:1fr;
    gap:20px;
    padding:30px 15px;
  }

  .partner-card{
    height:auto; /* 🔥 important for mobile */
  }

  .partner-logo{
    height:120px;
    padding:15px;
  }

  .partner-logo img{
    max-height:70px;
  }

  .partner-toggle{
    font-size:14px;
    padding:12px;
  }

  .partner-info{
    padding-top:40px;
  }

  .partner-info li{
    font-size:13px;
  }
}

/* =========================
   SMALL MOBILE (≤480px)
========================= */
@media (max-width:480px){
  .partner-logo{
    height:100px;
  }

  .partner-info ul{
    padding:15px;
  }
}



/* =========================
   CLOSE BUTTON
========================= */
.partner-close{
  position:absolute;
  top:10px;
  right:12px;
  width:26px;
  height:26px;
  border:none;
  border-radius:50%;
  background:#fff;
  color:#333;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  z-index:10;
  box-shadow:0 2px 6px rgba(0,0,0,0.25);
}

/* hover feel */
.partner-close:hover{
  background:#f2f2f2;
}

/* mobile adjust */
@media (max-width:767px){
  .partner-close{
    top:8px;
    right:10px;
    width:24px;
    height:24px;
    font-size:16px;
  }
}


/* =================
   END PARTNER GRID 







================= *//* ================= HERO SECTION GAP FIX ONLY ================= */




.header-right-element {
    display: flex;
    align-items: center;
    margin-left: 20px;   /* ← yahan value adjust karo */
}


/* Modern button */
.btn-track {
    padding: 8px 18px;              /* slim & clean */
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;             /* modern rounded */
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #f7c600, #e6b800);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    white-space: nowrap;
}

.btn-track {
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #f7c600, #e6b800);
    transition: background 0.3s ease,
                color 0.3s ease,
                box-shadow 0.3s ease,
                transform 0.2s ease;
}
.btn-track:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(128, 0, 128, 0.35);
    background: linear-gradient(135deg, #7b2ff7, #9f5cff);
    color: #ffd400; /* yellow text */
}



/* Mobile responsive */
@media (max-width: 768px) {
    .btn-track {
        padding: 6px 14px;
        font-size: 13px;
    }
}












/* HERO STATIC BASE */
.hero-static {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* CONTENT */
.hero-content {
    max-width: 650px;
}

.hero-title {
    color: #7b2ff7;
    font-size: 52px;
    margin-bottom: 15px;
}

.hero-subtitle {
    color: #f7c600;
    font-size: 36px;
    line-height: 1.2;
}

.hero-subtitle span {
    display: block;
}

.hero-text {
    color: #ffffff;
    margin-top: 15px;
    line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-static {
        padding: 80px 20px 60px;
        text-align: center;
    }

    .hero-content {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 26px;
    }
}





/* ================= LOGO STRIP (UNDER TRACKING BUTTON) ================= */

.hero-wrapper {
  position: relative; /* 🔑 anchor for absolute logo strip */
}

/* LOGO STRIP */
.logo-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;                 /* tracking button ke niche */
  padding: 10px 0;
  background: #ffffff;
  z-index: 5;
}

/* MARQUEE */
.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* FADE EDGES */
.logo-marquee::before,
.logo-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.logo-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

/* MOVING TRACK */
.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-scroll 5s linear infinite; /* 🔥 faster */
}

/* PAUSE ON HOVER */
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

/* LOGOS (HEIGHT + WIDTH LOCK) */
.logo-track img {
  height: 55px;
  max-height: 55px;
  max-width: 150px;
  width: auto;
  margin: 0 35px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.logo-track a:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.08);
}

/* ANIMATION */
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================= MOBILE FIX (VERY IMPORTANT) ================= */
@media (max-width: 768px) {

  /* hero ko auto height */
  .hero-wrapper,
  .hero-1,
  .single-slide {
    height: auto !important;
    min-height: auto !important;
  }

  /* logo strip ko normal flow me lao */
  .logo-strip {
    position: relative !important;
    bottom: auto;
    margin-top: 10px;
    padding: 12px 0;
  }

  .logo-track img {
    height: 40px;
    max-height: 40px;
    max-width: 120px;
    margin: 0 20px;
  }
}

/* ===== FINAL LOGO SIZE CONTROL ===== */

/* Desktop */
.logo-track img {
  height: 42px !important;
  max-height: 42px;
  max-width: 120px;
  margin: 0 22px;
}

/* Tablet */
@media (max-width: 1024px) {
  .logo-track img {
    height: 38px !important;
    max-width: 110px;
    margin: 0 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .logo-track img {
    height: 32px !important;
    max-width: 95px;
    margin: 0 16px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .logo-track img {
    height: 28px !important;
    max-width: 85px;
    margin: 0 14px;
  }
}


/* ================= END LOGO STRIP FINAL ================= */





/* ===== BASE ===== */
.menu-item.dropdown {
  position: relative;
}

/* toggle */
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

/* ===== DROPDOWN BOX ===== */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #f6c21c;
  border-radius: 8px;
  padding: 6px 0;
  min-width: 90px;
  width: max-content;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* vertical list */
.dropdown-menu li {
  list-style: none;
  display: block;
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #5a00c8;
  white-space: nowrap;
}



/* ===== DESKTOP (hover) ===== */
@media (min-width: 992px) {
  .menu-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ===== MOBILE (click) ===== */
@media (max-width: 991px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    transform: none;
    margin-top: 6px;
    display: none;
  }

  .menu-item.dropdown.active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

/* ===== ARROW FIX ===== */
.menu-item-has-children > a::after {
  display: none !important;
}

.arrow {
  font-size: 12px;
}











/* ===== MOBILE SOCIAL ICONS - ALWAYS VISIBLE ===== */
.mobile-social-icons {
    display: none;
}

@media (max-width: 991px) {

    /* parent menu ko relative banao */
    .mobile-menu,
    .offcanvas-menu,
    .menu-wrapper {
        position: relative;
        min-height: 100vh;
        padding-bottom: 140px;
    }

    .mobile-social-icons {
        display: flex;
        position: absolute;
        bottom: 20px;
        left: 0;
        right: 0;
        justify-content: center;
        gap: 14px;
        padding-top: 16px;
        border-top: 1px solid rgba(255,255,255,0.25);
        z-index: 999;
    }

    .mobile-social-icons a {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: #ffffff;
        color: #6a1bb9;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    }

    .mobile-social-icons a:hover {
        background: #f6c21c;
        color: #000;
        transform: translateY(-4px) scale(1.05);
    }

    /* WhatsApp highlight */
    .mobile-social-icons a.whatsapp {
        background: #25D366;
        color: #fff;
    }
}

















/* ===== SERVICES SECTION ===== */
.services-section {
  /* padding: 60px 20px; */
  background: #6a00c8; /* brand purple */
  padding-left: 50px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.service-card {
  background: #7a1fd1;
  border-radius: 14px;
  overflow: hidden;
  transition: all .3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

/* IMAGE (CHHOTI IMAGE) */
.service-img {
  height: 160px;              /* 🔥 yahin se image control */
  background-size: cover;
  background-position: center;
}

/* CONTENT */
.service-content {
  padding: 18px;
  color: #fff;
  
}
h3 {
    color: #f7c600;
}

.service-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: .9;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-img {
    height: 150px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-img {
    height: 140px;
  }
}

