.section-welcome .tit3 {
    font-size: 35px;
    color: #424242;
    font-weight: 500;
    text-transform: none;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-welcome p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    text-align: justify;
}

.section-welcome .txt4 {
    color: #333333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.section-welcome .txt4:hover {
    color: #ff6600;
}




/* ================= HEADER STRIP (WHITE BAR) ================= */
.wrap-menu-header {
  position: relative;
  width: 100%;
  height: 75px;
  background: #ffffff;
  z-index: 100;
  border-top: 5px solid #dd2828;

  /*  FONT SCOPE ONLY NAVBAR */
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================= HEADER CONTENT ================= */
.wrap_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo img {
  max-height: 53px;
 
}

/* Heading under logo
.logo-heading {
  text-align: center; 
  font-size: 21px;  
  color: #d13737;       
  margin-top: 2px;   
  font-weight: 400;  
  text-transform: capitalize;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
 */


 /* Heading next to logo */

.logo-heading {
  font-size: 25px;  
  color: #d13737;
  margin-left: 120px;  
  margin-top: -28px;    
  font-weight: 400;  
  text-transform: capitalize;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .wrap_header {
    flex-direction: row;      
    align-items: center;
    justify-content: flex-start;
  }

  .logo-heading {
    font-size: 20px;
    margin-left: 50px;      
    margin-top: 0;
    text-align: left;
  }
}

/* Extra small mobile (max-width: 480px) */
@media (max-width: 480px) {
  .logo img {
    max-height: 45px;         
  }

  .logo-heading {
    font-size: 18px;
    margin-left: 110px; 
    margin-top: -24px;  
    font-size: 20px;    
  }
}



/* ================= MENU ================= */
.main_menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main_menu > li {
  position: relative;
}

/* ================= MAIN NAV LINKS ================= */
.main_menu > li > a {
  text-decoration: none;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 15px 12px;
  text-transform: uppercase;
  display: block;
  transition: color 0.25s ease;
}

.main_menu > li > a:hover,
.main_menu > li.active > a {
  color: #ec1d25;
}

/* ================= PRODUCT DROPDOWN ================= */
.has-product-dropdown {
  position: relative;
}

/* DROPDOWN BASE */
.product-dropdown {
  position: absolute;
  top: 100%;
  left: 0;

  width: 240px;
  max-width: 320px;
  padding: 10px;
  box-sizing: border-box;

  background: #ffffff;
  border-radius: 1px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  display: flex;
  flex-direction: column;

  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;

  z-index: 999;
}

/* CLICK OPEN */
.has-product-dropdown.open > .product-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= DROPDOWN LINKS ================= */
.product-dropdown a {
  display: block;
  color: #222;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.5;

  padding: 6px 12px;
  margin-bottom: 10px;

  transition: all 0.2s ease;
}

.product-dropdown a:last-child {
  margin-bottom: 0;
}

.product-dropdown a:hover {
  color: #ec1d25;
  padding-left: 16px;
}

/* ================= NESTED SUB DROPDOWN ================= */
.has-sub-dropdown {
  position: relative;
}

/* SUB DROPDOWN BASE */
.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;

  width: 200px;
  max-width: 300px;
  padding: 10px;
  box-sizing: border-box;

  background: #ffffff;
  border-radius: 1px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);

  display: flex;
  flex-direction: column;

  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;

  z-index: 1000;
}

/* CLICK OPEN SUB */
.has-sub-dropdown.open > .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* SUB DROPDOWN LINKS */
.sub-dropdown a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.4;

  padding: 8px 10px;
  margin-bottom: 8px;

  color: #222;
  text-decoration: none;
  transition: all 0.2s ease;
}

.sub-dropdown a:last-child {
  margin-bottom: 0;
}

.sub-dropdown a:hover {
  color: #ec1d25;
  padding-left: 14px;
}

/* ================= MOBILE TOGGLE BUTTON ================= */

.mobile-toggle {
  display: none;
  width: 30px;
  height: 22px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  top: -4px;   /* 🔥 halka sa upar */
}

.mobile-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: #111;
  border-radius: 2px;
  transition: 0.3s ease;
}


/* ================= TABLET & MOBILE ================= */
@media (max-width: 991px) {

  .wrap-menu-header {
    height: auto;
    padding: 12px 0;
  }

  .wrap_header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  /* Logo */
  .logo img {
    max-height: 55px;
  }

  /* Toggle Right Side */
  .mobile-toggle {
    display: flex;
    margin-left: auto;
  }

  /* Hide menu initially */
  .wrap_menu {
    width: 100%;
    display: none;
  }

  .wrap_menu.active {
    display: block;
    margin-top: 15px;
  }
}
@media (max-width: 991px) {

  .wrap_header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  /* Toggle Button */
  .mobile-toggle {
    display: flex;
    margin-left: auto;
    position: relative;
    transform: translateY(-30px);  
  }

}


/* ================= SMALL MOBILE ================= */
@media (max-width: 576px) {

  .mobile-toggle {
    width: 26px;
    height: 20px;
    top: -2px;   /* slightly adjusted */
  }

  .mobile-toggle span {
    height: 2px;
  }

  .logo img {
    max-height: 48px;
  }
}


/* ================= TOGGLE ANIMATION ================= */

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}



/* ================= MOBILE ================= */
@media (max-width: 991px) {

  .main_menu {
    flex-direction: column;
    padding: 0 20px;
  }

  .main_menu li {
    width: 100%;
    border-bottom: 1px solid #e2e2e2;
  }

  .main_menu a {
    font-size: 14px;
    padding: 14px 0;
  }

  .product-dropdown,
  .sub-dropdown {
    position: static;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .has-product-dropdown.open > .product-dropdown,
  .has-sub-dropdown.open > .sub-dropdown {
    display: block;
  }
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 991px) {

  /* Header height auto */
  .wrap-menu-header {
    height: auto;
    padding: 10px 0;
  }

  /* Header content stack */
  .wrap_header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Logo resize */
  .logo img {
    max-height: 55px;
  }

  /* MAIN MENU STACK */
  .main_menu {
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
  }

  .main_menu > li {
    width: 100%;
    border-bottom: 1px solid #e6e6e6;
  }

  .main_menu > li:last-child {
    border-bottom: none;
  }

  /* NAV LINKS */
  .main_menu > li > a {
    width: 100%;
    padding: 14px 0;
    font-size: 14px;
  }

  /* PRODUCT DROPDOWN (MOBILE) */
  .product-dropdown {
    position: static;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    padding: 5px 0 10px;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .has-product-dropdown.open > .product-dropdown {
    display: block;
  }

  /* PRODUCT DROPDOWN LINKS */
  .product-dropdown a {
    font-size: 14px;
    padding: 8px 10px;
    margin-bottom: 6px;
  }

  /* SUB DROPDOWN */
  .sub-dropdown {
    position: static;
    width: 100%;
    max-width: 100%;
    box-shadow: none;
    padding-left: 10px;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .has-sub-dropdown.open > .sub-dropdown {
    display: block;
  }

  .sub-dropdown a {
    font-size: 14px;
    padding: 6px 10px;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 576px) {

  .wrap-menu-header {
    padding: 1px 0;
  }

  .logo img {
    max-height: 48px;
  }

  .main_menu {
    padding: 0 15px;
  }

  .main_menu > li > a {
    font-size: 13px;
    padding: 12px 0;
  }

  .product-dropdown a,
  .sub-dropdown a {
    font-size: 13px;
  }
}

/* Nav section End */




/* Banar section start */


.slick-dots,
.slick-dots li,
.slick-dots li button,
.slick-dots li button:before {
    display: none !important;
    content: none !important;
}

/* Important Slick Fix */
.slick-track {
    display: flex !important;
}

.slick-slide {
    height: auto !important;
}

.slick-slide > div {
    width: 100%;
    height: 100%;
}

/* Prevent cutting issue */
.slick-list {
    overflow: hidden;
}

/* Banner Slide */
.item-slick1 {
    position: relative;
    width: 100% !important;
    min-height: 55vh;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
}

/* Dark Overlay */
.item-slick1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
    z-index: 1;
}

/* Content above overlay */
.wrap-content-slide1 {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 100px 20px;
}
/*  NEVER PAUSE ANIMATION ON HOVER */
.section-slide:hover .animated,
.slick-slider:hover .animated,
.slick-track:hover .animated {
    animation-play-state: running !important;
}


/*Hide banar section */

@media (max-width: 480px) {
    .section-slide {
        display: none !important;
    }
}


/* Hide banar section */
.rashmi-banner {
    display: none;
}



/* Mobile new banar */



.rashmi-banner {
    display: none;
}

@media (max-width: 480px) {

    .rashmi-banner {
        display: block;
        position: relative;
        width: 100%;
        height: 400px;
        overflow: hidden;
    }

    .rashmi-slider {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .rashmi-slide {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;

        opacity: 0;
        transition: opacity 1.2s ease-in-out;
    }

    .rashmi-slide.active {
        opacity: 1;
        z-index: 2;
    }

    /* Premium dark gradient overlay */
    .rashmi-slide::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.5),
            rgba(0,0,0,0.2)
        );
        z-index: 1;
    }

    .rashmi-content {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 20px;

        opacity: 0;
        transform: translateY(25px);
        transition: all 0.9s ease;
    }

    .rashmi-slide.active .rashmi-content {
        opacity: 1;
        transform: translateY(0);
    }

    /* Smaller elegant text */
    .rashmi-title {
        font-size: 49px;
        font-weight: 600;
        margin-bottom: 10px;
        font-style: italic;
        letter-spacing: 1px;
    }

    .rashmi-text {
        font-size: 53px;
        line-height: 1.6;
        opacity: 0.95;
        color: #ffffff;
        font-weight: 600;
    }

    /* Background Images */
    .rashmi-slide-1 {
        background-image: url("../images/Home/Banar-home-11.jpg");
    }

    .rashmi-slide-2 {
        background-image: url("../images/Home/Home-Banar-22.jpg");
    }

    .rashmi-slide-3 {
        background-image: url("../images/Home/Home-Banar-33.jpg");
    }
}
/* ================= LAPTOP TO 2200px SCREEN FIX ================= */
@media (min-width: 1024px) and (max-width: 2500px) {

    .section-slide {
        height: 92vh;
    }

    .item-slick1 {
        height: 92vh !important;
        min-height: 92vh !important;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .wrap-content-slide1 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Text scaling for bigger screens */
    .caption1-slide1 {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .caption2-slide1 {
        font-size: 82px;
        line-height: 1.15;
    }

}


 /* Banar section End*/





/* product section start */

.wrap-pic-blo1{
  border: 1px solid rgba(119,119,119,0.2);
  box-sizing: border-box;
}
.wrap-text-blo1{
    text-align: center;
}

.wrap-text-blo1 h4{
    font-size: 17px;
    font-weight: 500;
}

/* product section start */




/* 
   Our Clients Section
 */

.our-clients {
    padding: 60px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.client-title {
    text-align: center;
    font-size: 36px;
    font-weight: 550;
    margin-bottom: 40px;

    color: #535252;
    letter-spacing: 1px;
}

/* Slider wrapper */
.client-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Track (JS move karega isko) */
.client-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

/* Single logo box */
.client-logo {
    width: 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo image */
.client-logo img {
    max-width: 260px;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.1s ease;
}

/* Hover effect */
.client-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}



@media (max-width: 991px) {
    .client-logo {
        width: 170px;
        height: 100px;
    }

    .client-logo img {
        max-width: 140px;
    }
}

@media (max-width: 575px) {
    .client-title {
        font-size: 26px;
    }

    .client-track {
        gap: 25px;
    }

    .client-logo {
        width: 140px;
        height: 90px;
    }

    .client-logo img {
        max-width: 120px;
    }
}

/* Our client section End*/




/* Static images overlay section start */

.section-intro .header-intro {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}


.section-intro .header-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); 
  z-index: 1;
}

/* TEXT ABOVE OVERLAY */
.section-intro .header-intro > * {
  position: relative;
  z-index: 2;
}

/* static image overlay section start */




/*Footer section start */

.footer-modern {
    background: linear-gradient(180deg, #0e0e0e, #000);
    color: #ccc;
    padding: 60px 0 0;
    font-family: "Segoe UI", sans-serif;
}

.footer-modern .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ---------- Top Nav ---------- */
.footer-top-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding-bottom: 35px;
    border-bottom: 1px solid #222;
}

.footer-top-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    position: relative;
}

.footer-top-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f5a623;
    transition: 0.3s;
}

.footer-top-nav a:hover::after {
    width: 100%;
}

/* ---------- Middle ---------- */
.footer-middle {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 45px;
    padding: 45px 0;
}

.footer-block h4 {
    color: #fff;
    margin-bottom: 22px;
    font-size: 18px;
    letter-spacing: 0.8px;
}

/* ---------- Products ---------- */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.product-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-grid li {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
}

.product-grid li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #f5a623;
    transition: 0.3s;
}

/* Hover Animation */
.product-grid li:hover {
    color: #fff;
    transform: translateX(6px);
}

.product-grid li:hover::before {
    color: #fff;
}

/* ---------- Social ---------- */
.footer-social {
    text-align: left;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #333;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #f5a623;
    color: #111;
    border-color: #f5a623;
    transform: translateY(-3px);
}

/* ---------- Bottom ---------- */
.footer-bottom {
    text-align: center;
    padding: 18px 10px;
    background: #000;
    font-size: 14px;
    color: #999;
    border-top: 1px solid #222;
}


.footer-bottom .design-by {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #777;
}

.footer-bottom .design-by strong {
    color: #f5a623;
    font-weight: 500;
}



/* Tablets & small laptops */
@media (max-width: 1024px) {
    .footer-middle {
        grid-template-columns: 1.5fr 1fr;
        gap: 35px;
    }

    .product-grid {
        gap: 25px;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .footer-top-nav {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-middle {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

    .product-grid ul {
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .footer-modern {
        padding: 45px 0 0;
    }

    .footer-top-nav a {
        font-size: 14px;
    }

    .footer-block h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-grid li {
        font-size: 13px;
    }

    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .footer-bottom {
        font-size: 13px;
    }

    .footer-bottom .design-by {
        font-size: 12px;
    }
}

/* Extra Small Devices - HARD FIX */
@media (max-width: 480px) {

    /* Global fix */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
        max-width: 100%;
    }

    html, body {
        width: 100%;
        overflow-x: hidden !important;
    }

    .footer-modern {
        width: 100%;
        overflow-x: hidden;
    }

    .footer-modern .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Top nav */
    .footer-top-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-top-nav a {
        font-size: 12px;
        white-space: nowrap;
    }

    /* Middle */
    .footer-middle {
        width: 100%;
        text-align: left;
    }

    .footer-block {
        width: 100%;
    }

    .footer-block h4 {
        text-align: left;
    }

    /* Products */
    .product-grid {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-grid ul {
        width: 100%;
        text-align: left;
    }

    /* Social */
    .footer-social {
        width: 100%;
        text-align: left;
    }

    .social-icons {
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
        flex-wrap: wrap;
    }

    /* Bottom */
    .footer-bottom {
        width: 100%;
        text-align: left;
        padding-left: 15px;
        padding-right: 15px;
    }
}




@media (max-width: 991px) {
  #myBtn {
    display: flex !important;  /* force show in responsive */
  }
}





/* footer section start*/

.site-footer{
  position: relative;
  background: url("../images/Home/Banar-2.jpg") center/cover no-repeat;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Overlay */
.footer-overlay{
  position: absolute;
  inset: 0;
  background: rgba(1, 20, 34, 0.85);
  z-index: 1;
}

/* =========================
   FOOTER CONTAINER
========================= */
.footer-container{
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px 40px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* =========================
   FOOTER COLUMNS
========================= */
.footer-col h3{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

.footer-col p{
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.85;
}

/* =========================
   LINKS
========================= */
.footer-links,
.footer-contact{
  list-style: none;
  margin: 0;
  padding: 0;
}
/* Contact List Gap */
.footer-contact li {
  margin-bottom: 8px;   
  line-height: 1.6;    
}

/* Last item ke baad extra gap na aaye */
.footer-contact li:last-child {
  margin-bottom: 0;
}


.footer-links li,
.footer-contact li{
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-links a{
  color: #ffffff;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links a:hover{
  opacity: 1;
  padding-left: 6px;
}

/* =========================
   SOCIAL ICONS – PREMIUM
========================= */
.footer-social{
  display: flex;
  gap: 16px;
}

.footer-social a{
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);

  transition: all 0.35s cubic-bezier(.22,1,.36,1);
}

/* Brand colors */
.footer-social .whatsapp{ background: rgba(37,211,102,0.25); }
.footer-social .facebook{ background: rgba(24,119,242,0.25); }
.footer-social .instagram{
  background: linear-gradient(
    45deg,
    rgba(245,133,41,0.25),
    rgba(221,42,123,0.25),
    rgba(129,52,175,0.25)
  );
}
.footer-social .youtube{ background: rgba(255,0,0,0.25); }

/* Hover effect */
.footer-social a:hover{
  transform: translateY(-6px) scale(1.08);
  background: #ffffff;
  color: #003A66;
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
  position: relative;
  z-index: 2;
  margin-top: 10px;
  padding: 20px;
  text-align: center;
  font-size: 14px;

  background: rgba(0, 0, 0, 0.25);
  opacity: 0.85;

  /* top thin white border */
  border-top: 1px solid rgba(255, 255, 255, 1);

  /* text color */
  color: #ffffff;
}

/* Design by text */
.footer-bottom .design-by{
  color:#ffffff;
}

/* Footer link */
.footer-bottom a{
  color:#ffffff;
  text-decoration: none;
}

.footer-bottom a:hover{
  text-decoration: underline;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px){
  .footer-container{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px){
  .footer-container{
    grid-template-columns: 1fr;
  }

  .footer-social{
    justify-content: center;
  }
}
.footer-bottom {
  font-size: 14px;
  text-align: center;
  padding: 12px 10px;
}

.design-by {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  opacity: 0.85;
}

.design-by a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

.design-by a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .footer-social {
    justify-content: flex-start;   
    gap: 12px;                   
    padding-left: 0;              
    margin-left: 0;
  }

  .footer-social a {
    margin-left: 0;                
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .footer-social {
    gap: 10px;
  }
}


/* ===============================
   PRODUCT DROPDOWN ACTIVE LINK
================================ */

.product-dropdown a.active{

  color:#ff0000;
  font-weight:500;
}
