body {
  font-family: 'Poppins', sans-serif;
   overflow-x: hidden;
  margin: 0;
  padding: 0;
  
}

/* TOP STRIP (INDIAN TOUCH) */
.top-strip {
  height: 3px;
  background: linear-gradient(to right, orange, white, green);
}

/* TOP BAR */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10%;
  background: #f4f6f9;
  font-size: 13px;
  color: #555;
}

.top-bar span {
  margin-right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* HEADER */
.header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px 10%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}
.country {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  cursor: pointer;
}

.country img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

/* Hover effect */
.country:hover {
  color: #184776;
}
/* LOGO */
.logo img {
  height: 80px;
  transition: 0.3s;
}

.logo img:hover {
  transform: scale(1.05);
}

/* NAV */
.nav {
  display: flex;
  justify-content: center;
}

.nav a {
  margin: 0 18px;
  text-decoration: none;
  color: #184776;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

/* HOVER ANIMATION */
.nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: #184776;
  transition: 0.3s;
}

.nav a:hover {
  color: #0f3054;
}

.nav a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.cta-btn {
  background: linear-gradient(135deg, #184776, #0f3054);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}


/* HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #184776;
  z-index: 10002;
}
@media (max-width: 768px) {
  .header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 5% !important;
  }

  .menu-toggle {
    display: block !important;
    position: relative;
    z-index: 10003;
  }

  .cta-btn {
    display: none !important;
  }

  /* MOBILE DRAWER */
  #navMenu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 260px !important;
    max-width: 80vw !important;
    height: 100vh !important;
    background: #fff !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 90px 25px 25px !important;
    gap: 20px !important;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15) !important;

    /* hide without stretching */
    transform: translateX(100%) !important;
    transition: transform 0.35s ease !important;

    z-index: 10001 !important;
  }

  #navMenu.active {
    transform: translateX(0) !important;
  }

  #navMenu a {
    width: 100%;
    margin: 0 !important;
    padding: 12px 0 !important;
    font-size: 18px !important;
    border-bottom: 1px solid #eee;
  }
}




/* ANIMATION */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
  
}
  .footer {
  background: #f8f9fb;
  padding-top: 50px;
  font-family: 'Poppins', sans-serif;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 10% 40px;
}

/* LOGO */
.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

/* TEXT */
.footer-col h3 {
  color: #184776;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #184776;
  padding-left: 5px;
}

/* ICONS */
.footer-col i {
  margin-right: 8px;
  color: #184776;
}

/* BOTTOM BAR */
.footer-bottom {
  background: #184776;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

/* SOCIAL ICONS */
.socials a {
  color: #fff;
  margin-left: 15px;
  font-size: 16px;
  transition: 0.3s;
}

.socials a:hover {
  color: #ffcc00;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-rows:  repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-rows:  1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* WHATSAPP FLOAT BUTTON */
/* Hide footer navigation on mobile */
@media (max-width: 768px) {
  .footer-col.navigation-col {
    display: none;
  }
}




/* Mobile footer layout */
@media (max-width: 768px) {
  .navigation-col {
    display: none;
  }

  .footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 5% 30px;
    text-align: left;
  }

  /* About full width on top */
  .about-col {
    grid-column: 1 / -1;
    text-align: center;
  }

  .about-col .footer-logo {
    margin: 0 auto 15px;
    display: block;
  }

  /* businesses and contact side by side */
  .business-col,
  .contact-col {
    display: block;
  }

  /* bottom bar cleaner */
  .footer-bottom {
    flex-direction: row !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 5%;
  }

  .socials {
    display: flex;
    gap: 10px;
  }

  .socials a {
    margin: 0;
  }
}


.more-products-btn {
 display: inline-block;
  margin: 30px auto 0;
  background: linear-gradient(135deg, #184776, #0f3054);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.more-products-btn svg {
  transition: transform 0.3s ease;
}

.more-products-btn:hover {
  transform: translateY(-2px);
}

.more-products-btn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .more-products-btn {
    display: inline-flex;
  }
}



/* HOVER EFFECT */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* PULSE ANIMATION */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  z-index: -1;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}



 .whatsapp-float {
  position: fixed !important;
  bottom: 90px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  z-index: 99999;
  text-decoration: none;

  animation: pulse 1.5s infinite;
}




/* MOBILE */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 22px;
    bottom: 70px;
    right: 15px;
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
.whatsapp-float i {
  color: white !important;
}
/* tagline with fade effect */






/* PRODUCTS */
.products {
  padding: 80px 10%;
  color: #0f3054;
  text-align: center;
  background: #f5f5f5;
}

.products h2 {
  font-size: 32px;
  font-weight: 600;
}

.underline {
  width: 50px;
  height: 2px;
  background: #000;
  margin: 10px auto 40px;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card p {
  padding: 12px;
  font-weight: 600;
}

/* HOVER */
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* BUTTON */
.more-products-btn {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #184776, #0f3054);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.more-products-btn:hover {
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {

  .products {
    padding: 50px 5%;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .product-card img {
    height: 120px;
  }

  .product-card p {
    font-size: 13px;
  }

  .mobile-hide {
    display: none;
  }

  .more-products-btn {
    display: inline-flex;
    
    
    
  }
  
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .mobile-hide {
    display: none;
  }

  .more-products-btn {
    display: inline-block;
  }
}


























/* SOCIAL FLOAT */
.social-float {
  position: fixed;
  right: 20px;
  top: 30%;
  /* bottom: 160px;  above WhatsApp */
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.social-float a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.social-float a:hover {
  transform: translateY(-4px) scale(1.08);
}

/* COLORS */
.social-float .facebook {
  background: #1877f2;
}

.social-float .instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-float .linkedin {
  background: #0077b5;
}

/* MOBILE */
@media (max-width: 768px) {
  .social-float {
    right: 15px;
    top:34%;
  }

  .social-float a {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* ENQUIRY TAB */
.enquiry-tab {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 240px;
  background: linear-gradient(180deg, #184776, #0f3054);
  border-left: none;
  clip-path: polygon(0 0, 100% 12%, 100% 88%, 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 4px 6px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.enquiry-tab span {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
}

/* SLIDE FORM */
.enquiry-form {
  position: fixed;
  left: -320px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 0 16px 16px 0;
  box-shadow: 4px 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 9998;
  transition: left 0.4s ease;
}

.enquiry-form.active {
  left: 58px;
}

.enquiry-form h3 {
  margin: 0 0 20px;
  color: #184776;
  font-size: 22px;
}

.enquiry-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.enquiry-form input {
  width: 90%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
}

.enquiry-form input:focus {
  border-color: #184776;
}

.enquiry-form button[type="submit"] {
  background: linear-gradient(135deg, #184776, #0f3054);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}

.enquiry-form button[type="submit"]:hover {
  opacity: 0.95;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #555;
}

/* MOBILE */
@media (max-width: 768px) {
  .enquiry-tab {
    width: 40px;
    height: 240px;
  }

  .enquiry-form {
    width: 220px;
    padding: 24px 16px;
  }

  .enquiry-form.active {
    left: 48px;
  }
  
}




/* FINAL MOBILE OVERFLOW FIX */
html,
body {
  overflow-x: hidden !important;
}

/* keep all fixed elements inside screen */
@media (max-width: 768px) {
  /* social icons */
  

  .social-float a {
   
    box-shadow: none !important;
  }

  /* whatsapp */
  .whatsapp-float {
   
  }

  .whatsapp-float::before {
    display: none !important; /* pulse causes overflow */
  }

  /* enquiry tab */
  .enquiry-tab {
   
    left: 0 !important;
    box-shadow: none !important;
  }

  .enquiry-tab span {
    
  }

  /* products grid */
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .product-card img {
    height: 120px !important;
  }
}










/* Explore button */
.explore-btn {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #184776, #0f3054);
  color: #fff;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.explore-btn:hover {
  transform: translateY(-2px);
}

.explore-btn svg {
  transition: transform 0.3s ease;
}

.explore-btn:hover svg {
  transform: translateX(4px);
}





























/* ABOUT SECTION */
.about-section {
  padding: 80px 10%;
  background: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT */
.about-text h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #184776;
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.7;
}

/* OWNER BOX */
.owner-box {
  margin-top: 25px;
  padding: 20px;
  background: #f5f8fc;
  border-left: 4px solid #184776;
  border-radius: 8px;
}

.owner-box h3 {
  margin-bottom: 10px;
  color: #184776;
}

/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 60px 5%;
    text-align: center;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .owner-box {
    text-align: left;
  }
}









/* CLIENTS SECTION */
.clients {
  padding: 80px 10%;
  text-align: center;
  background: #f8f9fb;
}

/* GRID */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* CARD */
.client-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* LOGO */
.client-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

/* NAME */
.client-card h3 {
  margin-bottom: 10px;
  color: #184776;
}

/* STARS */
.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXT */
.client-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .clients {
    padding: 60px 5%;
  }
}













/* SECTION */
.testimonial-section {
  padding: 80px 10%;
  background: #f8f9fb;
  text-align: center;
}

/* SLIDER */
.testimonial-slider {
  display: flex;
  gap: 25px;
  overflow: hidden;
  margin-top: 40px;
}

/* CARD */
.testimonial-card {
  min-width: 350px;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-6px);
}

/* CLIENT */
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.client-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h3 {
  margin: 0;
  font-size: 16px;
}

.client-info span {
  font-size: 13px;
  color: #777;
}

/* STARS */
.stars {
  color: #ffc107;
  margin-bottom: 10px;
}

/* TITLE */
.testimonial-card h4 {
  margin: 10px 0;
  font-size: 18px;
}

/* TEXT */
.testimonial-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-card {
    min-width: 200px;
  }

  .testimonial-section {
    padding: 60px 5%;
  }
}






.moving-strip {
  width: 100%;
  background: #184776;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.strip-content {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 18s linear infinite;
  font-weight: 500;
}

@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}





.logo-strip {
  background: #f8f9fb;
  overflow: hidden;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  gap: 60px;
  animation: scrollLogos 20s linear infinite;
}

.logo-track img {
  height: 50px;
  object-fit: contain;
  opacity: 0.8;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}




.highlight-strip {
  background: linear-gradient(90deg, #ff9800, #ff5722);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: 600;
  animation: pulseBg 2s infinite alternate;
}

@keyframes pulseBg {
  from { opacity: 0.9; }
  to { opacity: 1; }
}