* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Merriweather', sans-serif;
 
}

body {
  background: #fff;
  font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
}

/* 
.navbar {
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap:190px;
}


.logo img {
  height: 45px;
}


.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav-menu li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 25px; 
  transition: color 0.3s ease;
}


.nav-menu li a:hover {
  color: #1296f3;
}

.hamburger {
  width: 28px;
  height: 20px;
  display: none;
  position: relative;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #222;
  border-radius: 2px;
  transition: all 0.3s ease;
}


.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}


.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}


@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {

  .navbar {
    position: relative;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 100px 24px 24px;
    transition: left 0.35s ease;
    z-index: 9998;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li a {
    font-size: 18px;
  }

  .hamburger {
    display: flex;
    z-index: 9999;
  }
}



@media (min-width: 769px) and (max-width: 1023px) {

  .nav-container {
    padding: 16px 20px;
  }

  .logo img {
    height: 40px;   
  }

  .nav-menu {
    gap: 18px;   
  }

  .nav-menu li a {
    font-size: 14px;  
    white-space: nowrap; 
  }
} */




.banner-wrapper {
  position: relative;
  width: 100%;
  height: 80vh;                      /* Desktop height */
  background-image: url('images/homebanner.png');
  background-repeat: no-repeat;
  background-size: cover;            /* COVER */
  background-position: center 30%;   /* 👈 TOP CUT FIX */
  /* overflow: hidden; */
  border-radius: 30px;
  margin-top:100px;
 
}

.banner-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 90px;
  background: #fff;
  border-bottom-right-radius: 40px;
  z-index: 5;
}


.banner-bg {
  width: 100%;
  height:100vh;
  object-fit: cover;   
  background: #0f172a;   
  background-image: url('images/homebanner.png') center;
}

.banner-badge {
  position: absolute;
  bottom: 0;
  right: 60px;
  background: #ffffff;
  padding: 30px 30px 20px;
  border-top-left-radius: 180px;
  border-top-right-radius: 180px;
  z-index: 4;
  text-align: center;
  min-width: 300px;
}

/* LOGO */
.badge-logo {
  max-width: 140px;   /* logo size control */
  margin-bottom: 12px;
}

/* TEXT */
.banner-badge p {
  font-size: 18px;
  line-height: 1.5;
  color: #222;
  margin: 0;
}



@media (max-width: 768px) {
   .banner-wrapper {
    height: 280px;   /* mobile height */
    border-radius: 20px;
    border:none;
  }

  .banner-wrapper::before {
    width: 120px;
    height: 70px;
    border:none;

  }

  .banner-badge {
    right: 20px;
    padding: 26px 0px 5px;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
    min-width: 200px;
  }

  .banner-badge h3 {
    font-size: 22px;
  }

  .badge-logo {
    max-width: 100px;   /* mobile ke liye */
    width: 50%;
    margin-bottom: 10px;  /* adjust spacing */
  }
  .banner-badge p {
    font-size: 10.5px;
  }
}

@media (min-width: 1200px) {
  .banner-wrapper {
    height: 90vh;
    background-position: center 30%;
  }

  .badge-logo {
    max-width: 140px;    /* Full-size for desktops */
  }
}


@media (min-width: 769px) and (max-width: 1199px) {

  .banner-wrapper {
    height: 70vh;                  /* zyada stable */
    background-position: center center;
    border-radius: 26px;
  }

  .banner-badge {
    right: 40px;
    min-width: 260px;
    padding: 26px 0px 18px;
    border-top-left-radius: 150px;
    border-top-right-radius: 150px;
  }

 .badge-logo {
    max-width: 120px;    /* Slightly bigger for tablets */
  }

  .banner-badge p {
    font-size: 15px;
  }
}


.products-section {
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
}

.products-section h2 {
  font-size: 45px;
  margin-bottom: 10px;
}

.subtitle {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 14px;
  color: #555;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
} 


.slider-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
    overflow: visible;
}

.slider {
  display: flex;
  gap: 30px;
  scroll-behavior: smooth;
  overflow-x: auto;
  padding: 10px 0; /* reduce vertical white space */
}


.slider::-webkit-scrollbar {
  display: none;
}

.card {
  min-width: 360px;
  background: #fff;
  display: flex;
  flex-direction: column;
  border:none;
}

.card,
.card img {
  border-radius: 0 !important;
}

/* .card:hover {
  transform: translateY(-6px);
} */

.card img {
  width: 100%;
  height: 220px;        /* 👈 rectangle height */
  object-fit: cover;   /* image stretch nahi hogi */
  display: block;

  filter: brightness(0.95);
  transform: none;     /* 👈 scale hataya */
}



.card-info {
  background: #0b5ed7;
  color: #fff;

  margin: -30px 15px 16px;
  padding: 18px 18px 18px;

  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;

  text-align: center;
  z-index: 5;
  position: relative;
  height:260px;

  display: flex;
  flex-direction: column;
}


.card-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 12px 0 8px;
  line-height: 1.25;
  border-bottom: 1.5px solid rgba(255,255,255,0.7);
  padding-bottom: 6px;
}

.card-info p {
  font-size: 12px;
  line-height: 1.55;
  margin-top: 8px;
  margin-bottom: 0;     /* 👈 bottom extra space remove */
  flex-grow: 0;         /* 👈 yahi main fix */
}



.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 100;

  /* CENTER CONTENT */
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  line-height: 1;
}

.prev {
  left: -60px;
}

.next {
  right: -60px;
}



@media (min-width: 1200px) {
  .card {
    min-width: 420px;
  }

  .card img {
    height: 250px;
  }
}

@media (min-width: 1024px) {
  .slider {
    overflow-x: hidden;     /* desktop pe scroll off */
  }

  .card {
    min-width: calc(25% - 22px); /* ✅ 4 cards exactly */
  }

  .card img {
    width: 100%;
    height: 220px;
  }

  .card-info {
    /* min-height: 260px;          */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

@media (max-width: 1023px) {
  .slider {
    overflow-x: auto;
  }

  .card {
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .card {
    min-width: 280px;
  }

  .card img {
    height: 220px;
  }

  .prev { left: 10px; }
  .next { right: 10px; }
}

/* Mobile view adjustments */
@media (max-width: 768px) {
  .slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0;
    overflow: visible;
  }

  .slider {
    display: flex;
    gap: 10px; /* Reduce gap */
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
    width: 100%;
  }

  .slider::-webkit-scrollbar {
    display: none;
  }

  /* Card Styling */
  .card {
    min-width: 100%; /* Full width for each card */
    background: #fff;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0 10px;
  }

  .card img {
    width: 100%;
    height: 200px; /* Adjust image height for mobile */
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
  }

  .card-info {
    background: #0b5ed7;
    color: #fff;
    margin: -20px 0 16px;
    padding: 16px 15px 8px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-align: center;
    z-index: 5;
    position: relative;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .card-info h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 12px 0 8px;
    line-height: 1.25;
    border-bottom: 1.5px solid rgba(255,255,255,0.7);
    padding-bottom: 6px;
  }

  .card-info p {
    font-size: 11px;
    line-height: 1.55;
    margin-top: 8px;
    margin-bottom: 0;
    flex-grow: 0;
  }

  /* Navigation arrows */
  .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    width: 35px; /* Smaller arrow size */
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
  }

  .prev {
    left: 10px; /* Adjust positioning */
  }

  .next {
    right: 10px; /* Adjust positioning */
  }
}





.feature-banner {
  max-width: 1200px;
  margin: -50px auto 50px;
  background: #3b455a;
  border-radius: 28px;
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 40px;
  color: #fff;
}

/* IMAGE SIDE */
.feature-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT SIDE */
.feature-content {
  flex: 1;
}

.feature-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-content .desc {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 14px;
}

.feature-content .meta {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 22px;
}

/* BUTTON */
.feature-btn {
  display: inline-block;
  padding: 10px 22px;
  border: 1.5px solid #fff;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.feature-btn:hover {
  background: #fff;
  color: #3b455a;
}


@media (max-width: 768px) {
  .feature-banner {
    flex-direction: column;
    padding: 20px;
    margin-left: 15PX;
    margin-right: 15px;
  }

  .feature-content h2 {
    font-size: 26px;
  }

  .feature-image {
    width: 100%;
  }
}


.microban-banner {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* IMAGE */
.microban-image {
  flex: 1;
  border-radius: 26px;
  overflow: hidden;
}

.microban-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.microban-content {
  flex: 1;
}

.microban-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}

.microban-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 14px;
}

/* FOOTER */
.microban-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}

.microban-footer img {
  height: 42px;
}

/* BUTTON */
.microban-btn {
  background: #0b5ed7;
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.microban-btn:hover {
  background: #084298;
}


@media (max-width: 768px) {
  .microban-banner {
    flex-direction: column;
    gap: 24px;
    margin-left: 15PX;
    margin-right: 15px;
  }

  .microban-content h2 {
    font-size: 22px;
  }

  .microban-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}


.resource-header {
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 0 20px;
}

.resource-header h2 {
  margin-top: 20px;
  font-family: 'Merriweather', serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #000;
}

.resource-header p {
  font-size: 25px;
  color: #444;
  margin: 0;
  line-height: 1.5;
}


@media (max-width: 768px) {
  .resource-header h2 {
    font-size: 22px;
  }

  .resource-header p {
    font-size: 13px;
  }
}



.resources-grid {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.resource-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.resource-item.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.resource-img {
  flex: 1;
}

.resource-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

/* CONTENT */
.resource-content {
  flex: 1;
}

.resource-content h3 {
  font-family: 'Merriweather', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.resource-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 14px;
}

.resource-content ul {
  padding-left: 18px;
  margin-bottom: 16px;
}

.resource-content ul li {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 6px;
}

/* BUTTON */
.resource-btn {
  display: inline-block;
  background: #0b5ed7;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.resource-btn:hover {
  background: #084298;
}


@media (max-width: 768px) {
  .resource-item,
  .resource-item.reverse {
    flex-direction: column;
  }

  .resource-img img {
    height: 220px;
  }

  .resource-content h3 {
    font-size: 20px;
  }
}

.site-footer {
  background: #3c4a5e;
  color: #fff;

  padding-top:60px;
  padding-bottom:10px;
  padding-left:20px;
  padding-right:20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;   /* 🔑 MAIN FIX */
  gap: 150px;
}

/* LEFT SIDE */
.footer-left {
  flex: 1.3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* margin-left: 40px; */
}

.footer-logo {
  max-width: 180px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 18px;
}

.footer-divider {
  width: 260px;      /* 👈 screenshot jaisa */
  height: 2px;
  background: #fff;
  margin-bottom: 18px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #fff;
  color: #3c4a5e;
}

/* RIGHT SIDE */
.footer-right {
  flex: 1;
  display: flex;
  gap: 90px;
  align-items: flex-start;   /* 🔑 VISIT & LINKS same line */
  margin-top: 70px;
}

.footer-col h4 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  opacity: 0.9;
}

.footer-col ul li a:hover {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right {
    gap: 40px;
  }

  .footer-divider {
    width: 180px;
  }
}
.footer-bottom {
  margin-top: 10px;
  /* margin-bottom:0px; */
  /* padding: 8px 0px; */
  text-align: center;
 
  font-size: 18px;
  color: #ffffff;
}

.footer-bottom p {
  margin: 20px;
  
}

.footer-bottom strong {
  font-weight: 700;
}


.designer-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.designer-link:hover {
  opacity: 0.8;
}