/* HEADER */
.header .topbar {
    background-color: #1F4A69;
}
.branding {
    padding: 15px 0;
    background: #fff;
}

/* LOGO */
.logo img {
    max-height: 70px !important;
     margin-right: 8px !important;
} 

/* NAV CENTER */
.navmenu {
    margin-left: auto;
    margin-right: auto;
}

/* ===== Navbar ===== */
.navmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}

.navmenu ul li {
  position: relative;
}

.navmenu ul li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  transition: 0.3s;
}

.navmenu ul li a:hover,
.navmenu ul li a.active {
  color: #0d6efd;
}

/* ===== Submenu ===== */
.navmenu .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  z-index: 999;
}

.navmenu .submenu li {
  width: 100%;
}

.navmenu .submenu li a {
  padding: 12px 20px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.navmenu .submenu li a:hover {
  background: #f4f7ff;
  color: #0d6efd;
  padding-left: 25px;
}

/* Show submenu on hover */
.navmenu .dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===== Mobile ===== */
@media (max-width: 991px) {

  .navmenu ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .navmenu .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding-left: 15px;
    display: none;
  }

  .navmenu .dropdown:hover .submenu {
    display: block;
  }

  .navmenu .submenu li a {
    padding: 10px 15px;
  }
}

/* RIGHT BUTTON */
.header-btn {
    margin-right: -50px;
}

.quote-btn {
    display: inline-block;
    background: #EE742C;
    color: #fff;
    padding: 10px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.quote-btn:hover {
    background: #084298;
    color: #fff;
}

/* MOBILE */
@media only screen and (max-width: 991px) {

    .header-btn {
        display: none;
    }

    .navmenu ul {
        gap: 20px;
    }
}
/* ===================================
   ORAL CARE SLIDER CSS
=================================== */

 .banner-heading{
    position: absolute;
    top: 40%;
    left: 7%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #fff;
    z-index: 2;
}

.banner-heading h2{
    margin: 0;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 4px 25px rgba(0,0,0,0.35);
}

.banner-heading h2 span{
    display: block;
    margin-top: 10px;
    color: #7fe6ff;
    font-weight: 700;
}

.banner-heading p{
    margin-top: 35px;
    font-size: 22px;
    line-height: 1.8;
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    max-width: 600px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
    border-left: 4px solid #f47b20;
    padding-left: 20px;
}

/* Tablet */
@media(max-width:991px){
    .banner-heading h2{
        font-size: 42px;
    }

    .banner-heading p{
        font-size: 18px;
        line-height: 1.7;
    }
}

/* Mobile */
@media(max-width:767px){
    .banner-heading{
        left: 20px;
        right: 20px;
        max-width: 100%;
    }

    .banner-heading h2{
        font-size: 28px;
        line-height: 1.2;
    }

    .banner-heading p{
        margin-top: 20px;
        font-size: 15px;
        line-height: 1.6;
        padding-left: 15px;
    }
}
/* ===== SLIDER AREA ===== */
.oralcare-slider-area {
    position: relative;
    overflow: hidden;
    padding-top: 0px;
	padding-bottom: 20px!important;
}

/* ===== SLIDE BACKGROUND ===== */
.oralcare-slide-bg {
    position: relative;
    height: auto;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}




.oralcare-content{
    position: absolute;
    top: 77%;
    left: 7%;
    transform: translateY(-50%);
    display: flex;
    gap: 30px;
    z-index: 10;
}

.oralcare-btn{
    background: #f58220;
    color: #fff;
    padding: 16px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.oralcare-btn:hover{
    background: #ff9a3c;
    color: #fff;
}
/* ===== HEADING ===== */
.oralcare-content h2 {
    font-size: 42px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

/* BLUE TEXT */
.oralcare-content h2 span {
    color: #EE742C;
}

/* ===== SUBTITLE ===== */
.oralcare-content h4 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 35px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.7);
}

/* ===== BUTTON ===== */
.oralcare-btn {
    display: inline-block;
    background: #EE742C;
    color: #fff;
    padding: 16px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(13,110,253,0.4);
}

.oralcare-btn:hover {
    background: #0056d2;
    color: #fff;
    transform: translateY(-3px);
}

/* ===== ARROWS ===== */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 1;
}

.carousel-control-prev span,
.carousel-control-next span {
    width: 55px;
    height: 55px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev i,
.carousel-control-next i {
    font-size: 32px;
    color: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 991px) {

    .oralcare-slide-bg {
        height: 65vh;
        min-height: 500px;
    }

    .oralcare-content h2 {
        font-size: 42px;
    }

    .oralcare-content h4 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {

    .oralcare-slide-bg {
        height: 55vh;
        min-height: 420px;
    }

    .oralcare-content h2 {
        font-size: 30px;
    }

    .oralcare-content h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .oralcare-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}
/* clinet logo */
	 .logo-slider{
    background:#f5f5f5;
 
		 
    position:relative;
}

.logo-slider .swiper-slide{
    display:flex;
    justify-content:center;
    align-items:center;
}

.logo-slider .swiper-slide img{
    max-width:180px;
    height:120px;
    object-fit:contain;
    transition:0.3s;
}

.logo-slider .swiper-slide img:hover{
    transform:scale(1.05);
}

.swiper-button-next,
.swiper-button-prev{
    color:#d9d9d9;
}

.swiper-pagination-bullet{
    width:8px;
    height:8px;
    background:#cfcfcf;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#000;
}

@media(max-width:768px){
   

    .logo-slider .swiper-slide img{
        max-width:120px;
        height:120px;
    }
}
/* ===================================
   MAHAVIR ABOUT SECTION CSS
=================================== */

/*======================================
 About Section
======================================*/

.mahavir-about-section{
    background:#f8fafc;
    overflow:hidden;
	padding-top: 30px;
}

.mahavir-about-image{
    position:relative;
}

.mahavir-about-image img{
    width:100%;
    height:700px;
    object-fit:cover;
    border-radius:25px;
}

/* Experience Box */

.experience-box{
    position:absolute;
    bottom:30px;
    left:30px;
    background:#EE742C;
    color:#fff;
    padding:20px 30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.experience-box h2{
    margin:0;
    font-size:42px;
    font-weight:700;
    line-height:1;
}

.experience-box span{
    font-size:15px;
}

/* Content */

.mahavir-about-content{
    padding-left:20px;
}

.about-tag{
    display:inline-block;
    background:#e8f1ff;
    color:#EE742C;
    font-size:14px;
    font-weight:600;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:20px;
    letter-spacing:1px;
}
.client-tag{
    display:table;
    margin:0 auto 20px;
    background:#e8f1ff;
    color:#EE742C;
    font-size:14px;
    font-weight:600;
    padding:8px 18px;
    border-radius:50px;
    letter-spacing:1px;
}
/* Mobile */
@media (max-width: 767px){

    .client-tag{
        font-size:12px !important;
        padding:6px 14px !important;
        margin:10px auto 15px !important;
        letter-spacing:0.5px !important;
        border-radius:30px !important;
    }
}

/* Small Mobile */
@media (max-width: 480px){

    .client-tag{
        font-size:11px !important;
        padding:5px 12px !important;
        margin:10px auto 12px !important;
    }
}
.mahavir-about-content h2{
    font-size:42px;
    font-weight:700;
    line-height:1.3;
    color:#111827;
    margin-bottom:20px;
}

.about-text{
    color:#6b7280;
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;
}

/* Highlight Boxes */

.highlight-box{
    display:flex;
    align-items:flex-start;
    gap:15px;
    background:#fff;
    padding:18px;
    border-radius:16px;
    transition:0.3s ease;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    height:100%;
}

.highlight-box:hover{
    transform:translateY(-5px);
}

.highlight-box i{
    font-size:28px;
    color:#EE742C;
}

.highlight-box h5{
    font-size:18px;
    font-weight:600;
    margin-bottom:6px;
    color:#111827;
}

.highlight-box p{
    margin:0;
    color:#6b7280;
    font-size:14px;
    line-height:1.7;
}

/* Button */

.mahavir-btn{
    display:inline-block;
    background:#EE742C;
    color:#fff;
    padding:14px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s ease;
}

.mahavir-btn:hover{
    background:#111827;
    color:#fff;
}

/* Responsive */

@media(max-width:991px){

    .mahavir-about-content{
        padding-left:0;
        margin-top:20px;
    }

    .mahavir-about-content h2{
        font-size:32px;
    }

    .experience-box{
        padding:15px 22px;
    }

    .experience-box h2{
        font-size:32px;
    }
}
/*get in touch*/
/* =========================
   CONTACT SECTION STYLE
========================= */

.contact-section-custom {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-wrapper-custom {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    background: #fff;
}

/* LEFT SIDE */
.contact-content-custom {
    width: 50%;
    padding: 70px 60px;
    background: #ffffff;
}

.contact-content-custom h2 {
    font-size: 42px;
    font-weight: 700;
    color: #EE742C;   /* your website blue */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-content-custom p {
    font-size: 17px;
    line-height: 30px;
    color: #666;
    margin-bottom: 45px;
    max-width: 520px;
}

/* INFO BOX */
.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info-item {
   
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-info-icon {
    width: 58px;
    height: 58px;
    background: #EE742C;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(11,60,93,0.2);
}

.contact-info-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
    text-transform: uppercase;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 16px;
    line-height: 28px;
    color: #555;
    margin: 0;
    text-decoration: none;
}

.contact-info-text a:hover {
    color: #0b3c5d;
}

/* RIGHT MAP */
.contact-map-custom {
    width: 50%;
    min-height: 650px;
}

.contact-map-custom iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* RESPONSIVE */
@media only screen and (max-width: 991px) {

    .contact-content-custom,
    .contact-map-custom {
        width: 100%;
    }

    .contact-content-custom {
        padding: 50px 30px;
    }

    .contact-info-item {
        width: 100%;
    }

    .contact-content-custom h2 {
        font-size: 32px;
    }

    .contact-map-custom {
        min-height: 450px;
    }
}
.pg-why-section{
    padding:90px 0;
    background:#f8fafc;
    position:relative;
    overflow:hidden;
}

.pg-section-title{
    margin-bottom:60px;
}

.pg-section-title span{
    display:inline-block;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    color:#EE742C;
    margin-bottom:10px;
}

.pg-section-title h2{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.pg-section-title p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    font-size:16px;
    line-height:28px;
}

.pg-why-box{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:all 0.4s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    border:1px solid #eef2f7;
}

.pg-why-box:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

.pg-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#EE742C,#1F4A69);
    display:flex;
    align-items:center;
    justify-content:center;
}

.pg-icon i{
    color:#fff;
    font-size:38px;
}

.pg-why-box h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
    color:#0f172a;
}

.pg-why-box p{
    color:#64748b;
    font-size:15px;
    line-height:28px;
    margin:0;
}

@media(max-width:991px){

    .pg-section-title h2{
        font-size:34px;
    }

    .pg-why-box{
        padding:35px 25px;
    }
}

@media(max-width:767px){

    .pg-why-section{
        padding:70px 0;
    }

    .pg-section-title h2{
        font-size:28px;
    }

    .pg-icon{
        width:75px;
        height:75px;
    }

    .pg-icon i{
        font-size:30px;
    }

    .pg-why-box h3{
        font-size:21px;
    }
}
/*products*/
.pg-products-section{
    padding:30px 0;
    background:#f8fafc;
}

.pg-products-title{
    text-align:center;
    margin-bottom:60px;
}

.pg-subtitle{
    display:inline-block;
    color:#EE742C;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:12px;
}

.pg-products-title h2{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.pg-products-title p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    font-size:16px;
    line-height:28px;
}

.pg-product-card{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    height:100%;
    transition:0.4s ease;
    position:relative;
    border:1px solid #edf2f7;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.pg-product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

.pg-product-img{
    overflow:hidden;
    height:240px;
}

.pg-product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}

.pg-product-card:hover .pg-product-img img{
    transform:scale(1.08);
}

.pg-product-content{
    padding:28px;
}

.pg-product-content h3{
    font-size:24px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:15px;
}

.pg-product-content p{
    color:#64748b;
    font-size:15px;
    line-height:27px;
    margin-bottom:25px;
}

.pg-product-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.pg-product-bottom h4{
    margin:0;
    font-size:28px;
    font-weight:800;
    color:#EE742C;
}

.pg-product-btn{
    display:inline-block;
    padding:12px 24px;
    background:linear-gradient(135deg,#EE742C,#00b4d8);
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.4s ease;
}

.pg-product-btn:hover{
    background:#0f172a;
    color:#fff;
}

.pg-product-tag{
    position:absolute;
    top:18px;
    right:18px;
    background:#EE742C;
    color:#fff;
    padding:7px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
    z-index:2;
}

.featured-product{
    border:2px solid #EE742C;
}

@media(max-width:991px){

    .pg-products-title h2{
        font-size:34px;
    }

    .pg-product-img{
        height:220px;
    }
}

@media(max-width:767px){

    .pg-products-section{
        padding:70px 0;
    }

    .pg-products-title h2{
        font-size:28px;
    }

    .pg-product-content{
        padding:22px;
    }

    .pg-product-content h3{
        font-size:21px;
    }

    .pg-product-bottom{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }
}
/*makeing packing*/
/* =========================
   PREMIUM SECTION
========================= */

.pg-premium-section{
    position: relative;
    padding: 0px 0;
    background: #f5f7fa;
    overflow: hidden;
    padding-top: 20px;
}

/* Background Shape */
.pg-premium-section::before{
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(10, 77, 162, 0.06);
    border-radius: 50%;
}

.pg-premium-heading{
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.pg-tagline{
    display: inline-block;
    padding: 8px 18px;
    background: rgba(10, 77, 162, 0.08);
    color: #EE742C;
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.pg-premium-heading h2{
    font-size: 54px;
    font-weight: 800;
    line-height: 1.2;
    color: #111;
    margin-bottom: 22px;
}

.pg-premium-heading p{
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

/* Premium Card */
.pg-premium-card{
    position: relative;
    background: #fff;
    padding: 45px 35px;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.pg-premium-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Number */
.pg-card-number{
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 55px;
    font-weight: 800;
    color: rgba(10, 77, 162, 0.06);
}

/* Icon */
.pg-card-icon{
    width: 80px;
    height: 80px;
    background:linear-gradient(135deg,#EE742C,#00b4d8);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(10,77,162,0.25);
}

.pg-card-icon i{
    color: #fff;
    font-size: 32px;
}

/* Title */
.pg-premium-card h3{
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
}

/* Text */
.pg-premium-card p{
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media(max-width:991px){

    .pg-premium-heading h2{
        font-size: 42px;
    }

}

@media(max-width:767px){

    .pg-premium-section{
        padding: 70px 0;
    }

    .pg-premium-heading h2{
        font-size: 32px;
    }

    .pg-premium-heading p{
        font-size: 15px;
    }

    .pg-premium-card{
        padding: 35px 25px;
    }

}
/* Replace all old blue color #106eea with your orange brand color */

.services .service-item .icon {
    background: #EE742C;
    color: #fff;
    box-shadow: 0 10px 30px rgba(238, 116, 44, 0.25);
}

.services .service-item:hover .icon {
    background: #1F4A69;
    color: #fff;
}

.services .service-item h3 {
    color: #1F4A69;
}

.services .service-item:hover h3 {
    color: #EE742C;
}

.services .service-item .stretched-link::after {
    color: #EE742C;
}

.services .service-item {
    border-radius: 18px;
    transition: 0.4s ease;
    border: 1px solid rgba(238, 116, 44, 0.10);
}

.services .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: #EE742C;
}

/* Section Title */

.services .section-title h2 {
    color: #fff;
    font-weight: 700;
    font-size: 23px;
    background-color: #EE742C;
}

.services .section-title .description-title {
    color: #1F4A69;
}
/* =========================
   PORTFOLIO / PRODUCTS
========================= */

/* Filter Buttons */
.portfolio .portfolio-filters li{
    color: #1F4A69;
    border: 1px solid rgba(31, 74, 105, 0.15);
    padding: 10px 22px;
    border-radius: 40px;
    transition: all 0.4s ease;
    font-weight: 600;
    background: #fff;
}

/* Active Filter */
.portfolio .portfolio-filters li.filter-active,
.portfolio .portfolio-filters li:hover{
    background: #EE742C;
    color: #fff;
    border-color: #EE742C;
    box-shadow: 0 8px 20px rgba(238, 116, 44, 0.25);
}

/* Portfolio Item */
.portfolio .portfolio-item{
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

/* Image Hover */
.portfolio .portfolio-item img{
    transition: 0.5s ease;
    border-radius: 20px;
}

.portfolio .portfolio-item:hover img{
    transform: scale(1.08);
}

/* Portfolio Info Box */
.portfolio .portfolio-info{
    background: rgba(31, 74, 105, 0.92);
    border-radius: 16px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px;
}



/* Text */
.portfolio .portfolio-info p{
    color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
}



.portfolio .portfolio-info .preview-link:hover,
.portfolio .portfolio-info .details-link:hover{
    background: #fff;
    color: #EE742C;
}

/* Section Title */
.portfolio .section-title h2{
    color: #fff;
    font-weight: 700;
    background-color: #EE742C !important;
}

.portfolio .section-title .description-title{
    color: #1F4A69;
}

/* Portfolio Spacing */
.portfolio{
    background: #f8fafc;
    padding: 80px 0;
}
.view-all-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 38px;
    background:linear-gradient(135deg,#EE742C,#1F4A69);
    color:#fff;
    font-size:16px;
    font-weight:600;
    border-radius:50px;
    text-decoration:none;
    transition:all 0.3s ease;
    box-shadow:0 10px 25px rgba(13,110,253,0.25);
    letter-spacing:0.5px;
}

.view-all-btn:hover{
    transform:translateY(-4px);
    background:linear-gradient(135deg,#111827,#EE742C);
    color:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,0.18);
}
/* ===============================
   PREMIUM SECTION TITLE
================================= */

.product-cat-section{
    background: linear-gradient(135deg,#f7fbff,#eef5ff);
    position: relative;
    overflow: hidden;
}

.product-cat-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(13,110,253,0.05);
    border-radius:50%;
    top:-120px;
    right:-120px;
}
/* Main Heading */

.main-title {
    font-size: 54px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.main-title span {
    color: #fff;
    position: relative;
}

/* Gradient underline */

/*.main-title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 5px;
    border-radius: 20px;
    background: linear-gradient(90deg, #0d6efd, #00b4ff);
}*/

/* Decorative Divider */

.title-divider {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #00b4ff);
    margin: 22px auto;
    border-radius: 30px;
    position: relative;
}

.title-divider::before,
.title-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #0d6efd;
    border-radius: 50%;
    transform: translateY(-50%);
}

.title-divider::before {
    left: -18px;
}

.title-divider::after {
    right: -18px;
}



/* Responsive */

@media (max-width: 991px) {

    .main-title {
        font-size: 42px;
    }

   

}

@media (max-width: 767px) {

    .main-title {
        font-size: 32px;
    }

   

    .section-title {
        margin-bottom: 50px;
    }

}
/* =========================
   EXPORT PROCESS SECTION
========================= */

.export-process-section{
    background: linear-gradient(135deg,#f7fbff,#eef5ff);
    position: relative;
    overflow: hidden;
}

.export-process-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(13,110,253,0.05);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.export-subtitle{
    display:inline-block;
    padding:8px 18px;
    background:#EE742C;
    color:#fff;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:15px;
}

.export-title{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.export-desch{
    font-size:20px;
    font-weight:600;
    color:#EE742C;
    margin-bottom:20px;
}

.export-text{
    color:#64748b;
    line-height:1.9;
    font-size:16px;
    max-width:900px;
    margin:auto;
}

/* Process Cards */

.process-wrapper{
    margin-top:40px;
    align-items:center;
}

.process-card{
    background:#fff;
    border-radius:22px;
    padding:35px 20px;
    text-align:center;
    transition:0.4s ease;
    position:relative;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
    border:1px solid rgba(0,0,0,0.05);
    height:100%;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(13,110,253,0.15);
}

.process-icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#EE742C,#1F4A69);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(13,110,253,0.25);
}

.process-icon i{
    font-size:34px;
    color:#fff;
}

.process-card h5{
    font-size:18px;
    font-weight:700;
    color:#0f172a;
    margin:0;
}

/* Arrow */

.arrow-line{
    width:40px;
    justify-content:center;
    align-items:center;
}

.arrow-line i{
    font-size:46px;
    color:#1F4A69;
}

/* Button */

.export-btn{
    display:inline-block;
    background:linear-gradient(135deg,#EE742C,#1F4A69);
    color:#fff;
    padding:15px 38px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s ease;
    box-shadow:0 12px 30px rgba(13,110,253,0.25);
}

.export-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(13,110,253,0.35);
}

/* Responsive */

@media(max-width:991px){

    .export-title{
        font-size:32px;
    }

    .export-desch{
        font-size:18px;
    }

    .process-card{
        padding:30px 15px;
    }

}

@media(max-width:576px){

    .export-title{
        font-size:28px;
    }

    .export-text{
        font-size:15px;
    }

    .process-icon{
        width:70px;
        height:70px;
    }

    .process-icon i{
        font-size:28px;
    }

}
/* ===================================
   INDUSTRIES SECTION
=================================== */



/* ===================================
   BLOG SECTION
=================================== */

.blog-section{
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.blog-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(13,110,253,0.05);
    border-radius:50%;
    top:-180px;
    left:-140px;
}

.blog-badge{
    display:inline-block;
    padding:8px 18px;
    background:#EE742C;
    color:#fff;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.blog-title{
    font-size:44px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
}

.blog-subtitle{
    color:#64748b;
    font-size:17px;
    line-height:1.9;
}

/* Blog Card */

.blog-card{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    height:100%;
    transition:0.4s ease;
    box-shadow:0 12px 40px rgba(0,0,0,0.06);
    border:1px solid rgba(0,0,0,0.04);
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(13,110,253,0.12);
}

/* Image */

.blog-image{
    position:relative;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.5s ease;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

.blog-date{
    position:absolute;
    bottom:18px;
    left:18px;
    background:linear-gradient(135deg,#EE742C,#1F4A69);
    color:#fff;
    padding:10px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(13,110,253,0.3);
}

/* Content */

.blog-content{
    padding:30px;
}

.blog-meta{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:18px;
}

.blog-meta span{
    font-size:14px;
    color:#64748b;
}

.blog-meta i{
    color:#EE742C;
    margin-right:5px;
}

.blog-content h3{
    margin-bottom:18px;
}

.blog-content h3 a{
    color:#0f172a;
    font-size:24px;
    font-weight:700;
    line-height:1.5;
    text-decoration:none;
    transition:0.3s ease;
}

.blog-content h3 a:hover{
    color:#EE742C;
}

.blog-content p{
    color:#64748b;
    line-height:1.9;
    font-size:15px;
    margin-bottom:25px;
}

/* Button */

.blog-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#EE742C;
    font-weight:700;
    text-decoration:none;
    transition:0.3s ease;
}

.blog-btn i{
    transition:0.3s ease;
}

.blog-btn:hover{
    color:#1F4A69;
}

.blog-btn:hover i{
    transform:translateX(5px);
}

/* Bottom Button */

.all-blog-btn{
    display:inline-block;
    background:linear-gradient(135deg,#EE742C,#1F4A69);
    color:#fff;
    padding:15px 38px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.4s ease;
    box-shadow:0 12px 30px rgba(13,110,253,0.25);
}

.all-blog-btn:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 18px 40px rgba(13,110,253,0.35);
}

/* Responsive */

@media(max-width:991px){

    .blog-title{
        font-size:34px;
    }

    .blog-content{
        padding:25px;
    }

    .blog-content h3 a{
        font-size:21px;
    }

}

@media(max-width:576px){

    .blog-title{
        font-size:28px;
    }

    .blog-subtitle{
        font-size:15px;
    }

    .blog-image img{
        height:220px;
    }

}
/* ===================================
   FAQ SECTION
=================================== */

.faq-section{
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.faq-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:rgba(13,110,253,0.05);
    border-radius:50%;
    top:-180px;
    right:-140px;
}

/* Heading */

.faq-badge{
    display:inline-block;
    padding:8px 18px;
    background:#EE742C;
    color:#fff;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.faq-title{
    font-size:44px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
}

.faq-subtitle{
    color:#64748b;
    font-size:17px;
    line-height:1.9;
}

/* FAQ Card */

.custom-faq .faq-card{
    border:none;
    background:#fff;
    border-radius:20px !important;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 12px 35px rgba(0,0,0,0.06);
    transition:0.4s ease;
}

.custom-faq .faq-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(13,110,253,0.12);
}

/* Button */

.custom-faq .accordion-button{
    background:#fff;
    color:#0f172a;
    font-size:18px;
    font-weight:700;
    padding:24px 28px;
    box-shadow:none !important;
    border:none;
}

.custom-faq .accordion-button:not(.collapsed){
    background:linear-gradient(135deg,#EE742C,#1F4A69);
    color:#fff;
}

.custom-faq .accordion-button::after{
    filter:brightness(0);
}

.custom-faq .accordion-button:not(.collapsed)::after{
    filter:brightness(100);
}

/* Body */

.custom-faq .accordion-body{
    padding:25px 28px;
    color:#64748b;
    font-size:16px;
    line-height:1.9;
    background:#fff;
}

/* Responsive */

@media(max-width:991px){

    .faq-title{
        font-size:34px;
    }

    .custom-faq .accordion-button{
        font-size:17px;
    }

}

@media(max-width:576px){

    .faq-title{
        font-size:28px;
    }

    .faq-subtitle{
        font-size:15px;
    }

    .custom-faq .accordion-button{
        padding:20px;
        font-size:16px;
    }

    .custom-faq .accordion-body{
        padding:20px;
        font-size:15px;
    }

}
.fotfollow{
    padding-left: 60px;
}
 



  /* ===================================
   INDUSTRIES SECTION
=================================== */

.industries-section{
    background: #f7f9fc;
    padding: 80px 0;
}



.industry-badge{
    display: inline-block;
    padding: 8px 18px;
    background: rgba(0, 91, 234, 0.08);
    color: #005bea;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.industry-title{
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.industry-subtitle{
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 750px;
    margin: auto;
}



.industry-card{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 380px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}



.industry-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.6s ease;
}



.industry-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.20)
    );
    transition: 0.4s ease;
}



.industry-content{
    position: relative;
    width: 100%;
    height: 100%;
}



.industry-content h4{
    position: absolute;
    top: 165px;
    left: 25px;

    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    z-index: 2;
}



.industry-content p{
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 30px;

    color: #fff;
    font-size: 14px;
    line-height: 1.8;

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);
    transition: all 0.5s ease;
}


.industry-card:hover img{
    transform: scale(1.08);
}

.industry-card:hover .industry-overlay{
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.78),
        rgba(0,0,0,0.78)
    );
}



.industry-card:hover .industry-content p{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}



@media(max-width:991px){

    .industry-card{
        height: 380px;
    }

    .industry-content h4{
        font-size: 22px;
    }
}

@media(max-width:768px){

    .industries-section{
        padding: 60px 0;
    }

    .industry-title{
        font-size: 32px;
    }

    .industry-subtitle{
        font-size: 15px;
    }

    .industry-card{
        height: 320px;
    }

    .industry-content h4{
        font-size: 20px;
        top: 20px;
        left: 20px;
    }

    .industry-content p{
        left: 20px;
        right: 20px;
        bottom: 20px;
        font-size: 13px;
    }
}
	  .footer-contact .footer-address{
    font-size: 15px;
    line-height: 1.8;
   
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-contact p{
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact strong{
   
    font-weight: 600;
}
/* mobile css */
/* Mobile */
/* logo */
@media (max-width: 767px) {
    .logo img {
        max-height: 65px !important;
        width: auto !important;
        margin-right: 0 !important;
    }
}
/* home page slider */
/* Mobile Responsive */
@media (max-width: 767px){

    .oralcare-slider-area{
        padding: 0 10px !important;
    }

    .oralcare-slide-bg{
        height: 210px !important;
        min-height: 210px !important;

        /* pura banner dikhane ke liye */
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center center !important;

        background-color: #0b2d63 !important;
        border-radius: 12px !important;

        display: flex !important;
        align-items: flex-end !important;
        justify-content: center !important;

        padding-bottom: 12px !important;
        overflow: hidden !important;
    }

    .oralcare-content{
        width: 100% !important;
        text-align: center !important;
       gap:10px;
        bottom: 0 !important;
        left: 22px !important;
       
    }

    .oralcare-btn{
/*         display: inline-block !important; */
        min-width: 100px !important;
        height: 30px !important;
        line-height: 30px !important;
        padding: 0 2px !important;

        font-size: 10px !important;
        font-weight: 600 !important;

        margin: 0 3px !important;
        border-radius: 5px !important;
    }

    .carousel-control-prev{
        left: 5px !important;
    }

    .carousel-control-next{
        right: 5px !important;
    }

    .carousel-control-prev,
    .carousel-control-next{
        width: 28px !important;
        height: 28px !important;
    }

    .carousel-control-prev span,
    .carousel-control-next span{
        font-size: 18px !important;
    }
}
