@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/* Enquiry form styling */
    /* .enquiry-form {
      max-width: 600px;
      margin: 20px auto;
      background: #f8f9fa;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    } */

   /* Pinterest Icon */
  .circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;           /* Circle width */
    height: 42px;          /* Circle height */
    border-radius: 50%;    /* Makes it a circle */
    background-color: rgb(0, 0, 0); /* Circle background */
    color: white;          /* Icon color */
    font-size: 28px;       /* Icon size */
    transition: transform 0.3s;
    cursor: pointer;
  }

  .circle-icon:hover {
    transform: scale(1.1);
    color: white; 
  }
    .request-quote-btn {
  background-color: #1177be;
  color: #ffffff;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.request-quote-btn:hover {
  background-color: #02456e;
  color: #ffffff;
}

    .enquiry-form {
      /* max-width: 800px; */
      margin: 5px auto;
      /* background: #f8f9fa; */
      padding: 5px;
      /* border-radius: 8px; */
      /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

    /* Responsive adjustment */
    @media (max-width: 768px) {
      .enquiry-form {
        max-width: 100%;
        padding: 15px;
      }
    }

.fixed-top {
  background-color:#ffffff !important;
  min-height:100px;
}
.rounded-pill {
background-color:##1eb4e1 !important;
}

 .custom-btn {
  background-color: #6d6e71;
  border-color:  #6d6e71;
}

.custom-btn:hover {
  background-color: #02456e;
  border-color:  #02456e;
}

.btn-custom {
  background-color: #1177be;
  border-color: #1177be;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem; /* keep a nice rounded look */
  font-weight: 500;
}


.btn-custom:hover {
  background-color: #1177be; /* slightly darker for hover */
  border-color: #1177be;
  color: #fff;
}

body{
  line-height: 1.5;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

a.one:link {color:rgb(255, 255, 255);}
a.one:visited {color:rgb(255, 255, 255);}
a.one:hover {color:rgb(255, 255, 255);}

*{
  margin:0;
  box-sizing: border-box;
}
:before,:after{
  box-sizing: border-box;
}

.container{
  max-width: 1200px;
  margin:auto;
}
.row{
  display: flex;
  flex-wrap: wrap;
}
.v-center{
  align-items: center;
}
ul{
  list-style: none;
  margin:0;
  padding:0;
}

a{
  text-decoration: none;
}
/* header */
.header{
  display: block;
  width: 100%;
  position: relative;
  z-index: 99;
  padding:15px;
}
.header .item-left{
  flex:0 0 17%;
}
.header .logo a{
  font-size: 30px;
  color:#000000;
  font-weight: 700;
  text-decoration: none;
}
.header .menu {
 position: absolute;
 right: 150px;
 margin-top: -25px;
}
.header .item-center{
  flex:0 0 66%;
}
.header .item-right{
  flex:0 0 17%;
  display: flex;
  justify-content: flex-end;
}
.header .item-right a{ 
     text-decoration: none;
     font-size: 16px;
     color:#555555;
     display: inline-block;
     margin-left: 10px;
     transition: color 0.3s ease;
}
.header .menu > ul > li{
  display: inline-block;
  line-height: 50px;
  margin-left: 39px;
}
.header .menu > ul > li > a{
  color: #545454;
  font-size: 15px;
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu{
  position: absolute;
  z-index: 500;
  background-color:#ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); 
  padding: 20px 30px;
  transition: all 0.5s ease;
  margin-top:25px;
  opacity:0;
  visibility: hidden;
}
@media(min-width: 992px){
.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
  margin-top: 0;
  visibility: visible;
  opacity: 1;
}
}
.header .menu > ul > li .sub-menu > ul > li{
  line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a{
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu{
  min-width: 280px;
  max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{
   line-height: 1;
   display: block; 
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
  padding:10px 0;
  display: inline-block;
  font-size: 15px;
  color:#555555;
  transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu{ 
    left: 50%;
    transform: translateX(-50%);  
}

.header .menu > ul > li .sub-menu.mega-menu-column-4{
  /*max-width: 1100px;*/
  max-width: 800px;
  width: 100%;  
  display: flex;
  flex-wrap: wrap;
  padding:20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
  flex:0 0 33.33%;
  padding:0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title{
  font-size: 16px;
  color:#ea4636;
  font-weight: 500;
  line-height: 1;
  padding:10px 0;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
  text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
  height: 300px;
  object-fit: cover;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a{
  color:#ea4636;
}

/* Megamenu section */

    /* Navbar link styles */
    .navbar-nav .nav-link {
      font-family: "Inter", sans-serif;
      text-transform: uppercase;
      font-size: 14px;
      padding: 8px 22px !important;
      color: black !important;
    }
    /*.navbar-brand img{
      width: 200px;
    }*/
    /* Ensure navbar/container are positioned so absolute child centers correctly */
  /*.navbar, .navbar .container { position: relative; }*/

  /* Override Bootstrap dropdown default where needed */
  .mega-dropdown {
    position: absolute !important;    /* position relative to .container */
    top: calc(100% + 6px);
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(1100px, 90%);          /* centered fixed max width */
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border-top: 3px solid #742d73;
    background: #fff;
    z-index: 2000;
    display: none;                    /* default hidden; shown via .show or hover */
    padding: 0;
    border-radius: 4px;
  }

  /* Let Bootstrap's .show class make it visible (for click) */
  .dropdown.show > .mega-dropdown,
  .nav-item.megamenu:hover > .mega-dropdown {
    display: block;
  }

  /* layout inside mega */
  .mega-sidebar {
    width: 100%; /* fixed sidebar width */
    border-right: 1px solid #e6e6e6;
    background-color: #ffffff;
  }

  /* .mega-content { padding: 24px; } */
  .mega-menu-con1 a{
    color: #1177BE;
    text-decoration: underline;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .mega-menu-con1 a:hover{
    color: #000000;
  }
  .mega-menu-con a{
    color: #1177BE;
    text-decoration: none;
  }
  .mega-menu-con a:hover{
    color: #000000;
    text-decoration: underline;
  }
  /* small visual tweaks */
  .mega-dropdown .row { margin: 0; }
  .mega-dropdown h3 { font-size: 1.05rem; margin-bottom: 6px; }
  .megalink { display:block; padding:8px 12px; }

  /* responsive adjustment */
  @media (max-width: 991.98px) {
    .mega-dropdown {
      position: static !important;
      transform: none !important;
      width: 100% !important;
    }
    .mega-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #e6e6e6; }
    .mega-content { padding: 16px; }
    }
    .img-responsive { width: 100%; height: auto; }
    /* Hide all tab contents by default */
    .tabcontent {
      display: none;
      float: left;
      width: 100%;
      border-left: none;
    }

    /* Show active tab content */
    .tabcontent.active {
      display: block;
    }

    /* Style the buttons inside the tab */
    .tab button {
      display: block;
      background-color: inherit;
      color: #000000;
      padding: 12px 16px;
      width: 100%;
      border: none;
      outline: none;
      text-align: left;
      cursor: pointer;
      transition: 0.3s;
      font-size: 16px;
    }

    .tab button:hover {
      background-color: #ddd;
      color: #ffffff;
    }

    .tab button.active {
      background-color: #0f76bd;
      color: #ffffff;
    }

    

        /* ---------- Responsive megamenu (mobile/tablet) ---------- */
@media (max-width: 991.98px) {
  /* make dropdown flow inside collapse */
  .mega-dropdown {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    box-shadow: none;
    border-top: none;
    display: none; /* we'll toggle a class to show it */
    padding: 0;
    border-radius: 0;
  }

  /* mobile-open class will display block */
  .mega-dropdown.open-mobile {
    display: block !important;
  }

  /* Stack sidebar and content vertically */
  .mega-dropdown .d-flex {
    flex-direction: column;
  }

  .mega-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
    padding: 8px 12px;
    background: transparent;
  }

  .mega-content {
    padding: 12px;
    background-color: transparent; /* remove boxed background on mobile */
  }

  /* HIDE images on mobile/tablet */
  .mega-menu-con img {
    display: none !important;
  }

  /* Simplify headings and view-all */
  .mega-menu-con h3 {
    font-size: 15px;
    margin: 6px 0;
    padding: 8px 0;
    background: none;
    text-align: left;
  }

  .mega-menu-con1 {
    text-align: center;
  }

  /* Tab buttons smaller */
  .tab button {
    padding: 10px 12px;
    font-size: 15px;
  }

  /* Ensure dropdown links are full width & tappable */
  .mega-dropdown .megalink,
  .mega-dropdown .nav-link {
    display:block;
    width:100%;
    padding:10px 12px;
  }
}
/* Hide desktop megamenu on small screens */
            @media (max-width: 991.98px) {
            /* .nav-item.megamenu {
                display: none !important;
            } */
            }

            /* Optional tweaks for mobile dropdown menu look */
            #mobileProducts a {
            text-decoration: none;
            }

            #mobileProducts .dropdown-toggle::after {
            float: right;
            }

            #mobileProducts ul li a {
            font-size: 15px;
            }

            #mobileProducts .fw-bold {
            color: #742d73 !important;
            }

/* Hide sub-menus (product cards) on mobile but keep main category buttons visible */
@media (max-width: 991px) {

  /* Hide only the tab content (the product cards) */
  .mega-dropdown .tabcontent {
    display: none !important;
  }

  /* Keep sidebar category buttons visible */
  .mega-dropdown .mega-sidebar {
    display: block !important;
  }

  /* Optional: style category buttons like normal links for mobile */
  .mega-dropdown .tab button.tablinks {
    width: 100%;
    display: block;
    text-align: left;
    padding: 12px 15px;
    border: none;
    background: #fff;
    color: #000;
    border-bottom: 1px solid #ddd;
  }

  /* Prevent mega dropdown from overflowing on small screens */
  .mega-dropdown {
    position: static !important;
  }

  .mega-dropdown .dropdown-menu {
    width: 100% !important;
    padding: 0 !important;
  }
}


/* banner section */
/* .banner-section{
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
} */
.mobile-menu-head,
.mobile-menu-trigger{
  display: none;
}

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

  .header .item-center{
    order:3;
    flex:0 0 100%;
  }
  .header .item-left,
  .header .item-right{
    flex:0 0 auto;
  }
  .v-center{
    justify-content: space-between;
  }
  .header .mobile-menu-trigger{
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .header .mobile-menu-trigger span{
    display: block;
    height: 2px;
    background-color: #333333;
    width: 24px;
    position: relative;
  }
  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after{
    content: '';
    position: absolute;
    left:0;
    width: 100%;
    height: 100%;
    background-color: #333333;
  }
  .header .mobile-menu-trigger span:before{
    top:-6px;
  }
  .header .mobile-menu-trigger span:after{
    top:6px;
  }
  .header .item-right{
    align-items: center;
  }

  .header .menu{
    position: fixed;
    width: 320px;
    background-color:#ffffff;
    left:0;
    top:0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }
  .header .menu.active{
     transform: translate(0%);  
  }
  .header .menu > ul > li{
    line-height: 1;
    margin:0;
    display: block;
  }
  .header .menu > ul > li > a{
    line-height: 50px;
    height: 50px;
    padding:0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .header .menu > ul > li > a i{
    position: absolute;
    height: 50px;
    width: 50px;
    top:0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }
  .header .menu .mobile-menu-head{
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
  /*  top:0;*/
    top:20px;
  }
  .header .menu .mobile-menu-head .go-back{
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color:#000000;
    font-size: 16px;
    display: none;
  }
  .header .menu .mobile-menu-head.active .go-back{
    display: block;
  }
  .header .menu .mobile-menu-head .current-menu-title{
    font-size: 15px;
    font-weight: 500;
    color:#000000;
  }
  .header .menu .mobile-menu-head .mobile-menu-close{
      height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color:#000000;  
    font-size: 25px;
  }
  .header .menu .menu-main{
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .header .menu > ul > li .sub-menu.mega-menu,
  .header .menu > ul > li .sub-menu{
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin:0;
    padding:15px;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }
.header .menu > ul > li .sub-menu.active{
  display: block;
}
@keyframes slideLeft{
  0%{
    opacity:0;
    transform: translateX(100%);
  }
  100%{
      opacity:1;
    transform: translateX(0%);  
  }
}
@keyframes slideRight{
  0%{
    opacity:1;
    transform: translateX(0%);
  }
  100%{
      opacity:0;
    transform: translateX(100%);  
  }
}
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
    margin-top:0;
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
    margin-bottom: 20px;
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title{
    margin-bottom:0px;
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
    flex: 0 0 100%;
        padding: 0px;
  }
  .header .menu > ul > li .sub-menu > ul > li > a,
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a{
    display: block;
  }
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }
  .menu-overlay{
    position: fixed;
    background-color: rgba(0,0,0,0.5);
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity:0;
    transition: all 0.5s ease;
  }
  .menu-overlay.active{
    visibility: visible;
    opacity:1;  
  }
}
.logo img {
width:250px;
height:85px;
}

.slider{
 /* background-image: url(../images/gray-abstract-back.jpg);*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

}

.white-box {
  background-color: white;
  color: black;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;   /* Limits box size on larger screens */
  margin: 10px auto;  /* Center the box horizontally */
  box-sizing: border-box;
   opacity: 0.8; /* 0 = fully transparent, 1 = fully opaque */
}

.navy-box {
  background-color:#1177BE;
  color: #ffffff;
 /* text-align: center;*/
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 50%;
  max-width: 200px;   /* Limits box size on larger screens */
  margin: 10px auto;  /* Center the box horizontally */
  box-sizing: border-box;
  display: flex;
  align-items: center;      /* vertical centering */
  justify-content: center;  /* horizontal centering (optional) */
  height:auto;            /* set height of container */
/*  background: #eee;*/
  /* opacity: 0.5;*/ /* 0 = fully transparent, 1 = fully opaque */
}


.navy-box:hover {
 background-color: #02456e;
  border-color: #02456e;
  color: #ffffff;
 /* text-align: center;*/
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 50%;
  max-width: 200px;   /* Limits box size on larger screens */
  margin: 10px auto;  /* Center the box horizontally */
  box-sizing: border-box;
  display: flex;
  align-items: center;      /* vertical centering */
  justify-content: center;  /* horizontal centering (optional) */
  height:auto;            /* set height of container */
/*  background: #eee;*/
  /* opacity: 0.5;*/ /* 0 = fully transparent, 1 = fully opaque */
}

.navy-box a {
  color: #ffffff;
  text-decoration: none;
}

/* Optional: add hover effect for the link */
.navy-box a:hover {
  color: #ffffff;
  text-decoration:none;
  opacity: 1;
  
}

.heading-main {
  color:#646A71;
  font-family: "Montserrat", Sans-serif;
  font-size: 22px;
  font-weight: 400;
  padding-top:30px;
  padding-bottom:10px;
}

.heading-sub {
color:#1177BE;
font-family: "Montserrat", Sans-serif;
font-size: 28px;
font-weight:600;
padding-top:10px;
padding-bottom:10px;
}

.about-section p{
text-align: justify;
  color: #000000;
  font-family: "Montserrat", Sans-serif;
  font-weight: 300;
  line-height: 24px;

}

.whychooseus {
  color:#54595F;
  font-family: "Montserrat", Sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.heading-title {
  color: #0F78C1;
  font-family: "Montserrat", Sans-serif;
  font-weight: 600;
  font-size: 1.25em;
  line-height: 1.5;
}
}

/*******************
Counter box
*******************/
/*.counter-box [class^=col-] {
  padding: 33px 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .counter-box [class^=col-]:last-child {
    border-right: 0px; }

.counter-box-dark [class^=col-] {
  border-right: 1px solid rgba(120, 130, 140, 0.13); }
  .counter-box-dark [class^=col-]:last-child {
    border-right: 0px; }*/

.txt-count {
color:#000000;
font-family: "Montserrat", Sans-serif;
font-size: 29px;
font-weight: 600;
}
.txt-description {
color: #000000;
font-family: "Poppins", Sans-serif;
font-size: 15px;
}
.prodheading {
color:#1177BE;
font-family: "Montserrat", Sans-serif;
font-size:28px;
font-weight:400;
text-align:center;
}

.prod1 {
  color:#5C6066;
  font-family: "Montserrat", Sans-serif;
  font-size:24px;
  font-weight:400;
  text-align:center;
}

.divider {
  text-align: center;
  padding-top: 2px;
  padding-bottom: 2px;
  display: flex;
}

/*Carousel CSS*/
.card {
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}

.card-title {
  text-align:center;
}

.card-img-top {
width:225px;
/*height:300px;*/
margin:0 auto;
}
.carousel-indicators {
  /*bottom: 10px; *//* adjust vertical position */
  bottom: -30px;
}

.carousel-indicators [data-bs-target] {
  background-color: #000; /* dot color */
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;      /* Makes them circular */
  background-color: #000;  /* Adjust color as needed */
  opacity: 0.5;            /* Optional: make them semi-transparent */
  margin: 0 5px;           /* Optional: space between dots */
  transition: opacity 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #000;  /* Active dot color */
}

/*end Carousel CSS*/

/*Icon Box*/
.icon-box-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 20px 0;
}

.icon-box-icon {
  font-size: 20px;
  color: white;
  background: #EEEEEE;/* green background */
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.icon-box-content {
  max-width: 600px;
}

.icon-box-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.icon-box-description {
  font-size: 1rem;
  color: #555;
  margin: 0;
}

/*End Icon Box*/

/*custom-button*/
.custom-button {
  display: inline-block;
  background-color: #007BFF; /* Bootstrap primary blue */
  color: white;
  padding: 10px 25px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.custom-button:hover {
  background-color: #cdcaca;
  color:#007BFF;
  text-decoration: none;
  transform: translateY(-2px);
}

.button-text {
  display: inline-block;
}

/*END custom button*/

.manymore {
  font-size: 1.5em;
  line-height:1.4;
  font-weight:400;
  text-align: right;
}

.contact-section {
  padding: 40px 20px;
}

/*.container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}*/

.info-box {
  flex: 1 1 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.info-box h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #222;
}

.icon-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.icon-box i {
  font-size: 20px;
  margin-right: 10px;
  color: #0077b5;
}

.icon-box p {
  margin: 0;
  line-height: 1.6;
}

.social-follow {
  text-align: center;
  margin-bottom: 30px;
}

.social-follow h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.social-icons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.social-icon {
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  text-decoration: none;
}

.social-icon.facebook { background-color: #3b5998; }
.social-icon.twitter { background-color: #1da1f2; }
.social-icon.youtube { background-color: #cd201f; }
.social-icon.linkedin { background-color: #0077b5; }

.social-icon:hover {
  opacity: 0.8;
}

.social-icon i {
  font-size: 18px;
}

copyright {
  text-align: center;
  font-size: 14px;
  color: #666;
}

/* Responsive styles */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }

  .info-box {
    width: 100%;
    max-width: 90%;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .icon-box {
    flex-direction: column;
  }

  .icon-box i {
    margin-bottom: 8px;
    margin-right: 0;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .social-icon i {
    font-size: 16px;
  }
}

.box-boder{
  border-style: solid;
  border-width: 0px 2px 0px 0px;
  border-color: #007BFF;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 20px 20px 20px 20px;
}

.divider-separator {
  border-style:solid;
  color:#007BFF;
  border-width:1px;
  text-align:center;
  margin: 15px auto;
  width: 40%;
}

.addresstxt{
  color: #000000;
  font-family: "Montserrat", Sans-serif;
  font-weight: 400;
  padding-top:10px;
}

.copyright {
  color: #1177BE;
  font-family: "Montserrat", Sans-serif;
  font-weight: 400;
  text-align: center;
}

.hm-industry-bg-grey {
  background: #e2e2e2;
}

.hm-industry-bg-blue {
  background: #0e75bd;
}

.hm-industry-wrapper h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #000000;
  margin-bottom: 50px;
}
.hm-industry-wrapper {
  padding: 50px 50px 60px 50px;
  height: 100%;
}

.hm-industry-wrapper span {
  position: relative;
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  text-indent: 0.4em;
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  color: #000000;
  text-transform: uppercase;
}

/** **************** **/

.marquee-row {
  width: 100%;
  padding: 20px 0;
  background: #f5f5f5;
  overflow-x: hidden;
}
.marquee-block ul li {
  display: inline-block;
  color: #000000;
  --gap: 13px;
  font-family: "Inter", Sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  padding: 0 30px;
  position: relative;
  white-space: nowrap;
}
.marquee-block ul li img {
  position: absolute;
  width: 12px;
  left: -6px;
  top: 6px;
  animation-name: marquee1;
}
.marquee-block {
  position: relative;
  display: flex;
  width: 100%;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  justify-content: space-between;
}
.marquee-item-list {
  display: inline-flex;
}
.marquee1 {
  animation-name: marquee1;
}
@keyframes marquee1 {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

/** **************** **/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600&family=Rajdhani:wght@300;400;600;700&display=swap');

html {
            scroll-behavior: smooth;
        }

        a {
            text-decoration: none;
            color: #232323;
        }

        a:hover {
            text-decoration: none;
            color: #232323;
        }

        .ath_round_icon_img {
            border-radius: 50%;
            box-shadow: 0 0 6px rgba(0, 0, 0, .25);
            background: #fff;
            width: 100px !important;
            height: 100px;
            padding: 16px;
            margin: 15px auto !important;
        }

        .ath_round_icon_img i {
            font-size: 70px;
            color: #e0571d;

        }



        /*ath_carousel_se_03 start*/
        .ath_carousel_se_03 {
            overflow: hidden;
        }


        .ath_carousel_se_03 .product-grid3 {
            border: none;
            box-shadow: none;
        }


        .ath_carousel_se_03 .owl-carousel .owl-nav button.owl-next {
            position: absolute;
            top: 42%;
            right: -40px;
        }

        .ath_carousel_se_03 .owl-carousel .owl-nav button.owl-next:hover {
            background: #a5ca34;
            color: #fff;
        }

        .ath_carousel_se_03 .owl-carousel .owl-nav button.owl-prev {
            position: absolute;
            top: 42%;
            left: -40px;
        }

        .ath_carousel_se_03 .owl-carousel .owl-nav button.owl-prev:hover {
            background: #a5ca34;
            color: #fff;
        }

        .ath_carousel_se_03 .owl-arrow .owl-nav {
            position: absolute;
            top: 0;
            right: 0;
            font-size: 1.8rem;
        }

        .ath_carousel_se_03 .owl-carousel .owl-nav button.owl-prev,
        .ath_carousel_se_03 .owl-carousel .owl-nav button.owl-next {
            display: inline-block;
            transition: all 0.6s ease-in-out;
            color: #a5ca34;
            background: rgb(255, 255, 255);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            font-size: 25px;
            transform: translateY(-50%);
            box-shadow: 0 0 8px rgba(0, 0, 0, .25);
        }


        .ath_carousel_se_03 .ath_round_icon_img {
            text-align: center;
            line-height: 100px;
        }

        .ath_carousel_se_03 .ath_round_icon_img i {
            font-size: 55px;
            color: #a5ca34;

        }

        .ath_carousel_se_03 .btn-primary {
            background: #a5ca34;
            border-color: #a5ca34;
        }

        .ath_carousel_se_03 .btn-primary:hover,
        .ath_carousel_se_03 .btn-primary:focus,
        .ath_carousel_se_03 .btn-primary:active {
            background: #708e15;
        }

        @media only screen and (max-width: 768px) {
            .ath_carousel_se_03 .owl-carousel .owl-nav button.owl-prev {
                top: 42%;
                left: 0px;

            }

            .ath_carousel_se_03 .owl-carousel .owl-nav button.owl-next {
                top: 42%;
                right: 0px;

            }
        }

        .prodbak{
        background-image: url(../images/slider-bg.webp);
        min-height:30vh;
        }

        .prodwhite {
          font-size:25px;
          color:#ffffff;
           height: 30vh;
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
  text-transform: capitalize;
        }


/* WHY CHOOSE US Section Styling */
#why-choose-us .card {
  transition: all 0.3s ease;
  border-radius: 15px;
}
#why-choose-us .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

#why-choose-us .icon-circle {
  width: 70px;
  height: 70px;
  background-color:#0c78ba;
 /* background-color:#1eb4e1; *//* Bootstrap primary blue */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#why-choose-us .icon-circle img {
 /* filter: brightness(0) invert(1);*/ /* Makes white icons stand out */
  transition: transform 0.3s ease;
}

#why-choose-us .card:hover .icon-circle {
  background-color: #02456e; /* Darker blue on hover */
  transform: scale(1.05);
}

#why-choose-us .card:hover .icon-circle img {
  transform: scale(1.1);
}

    .trusted-section {
      padding: 60px 20px;
      background-color: #f8f9fa;
    }
    .info-card {
      border: 1px solid #dee2e6;
      padding: 20px;
      border-radius: 8px;
      background-color: #ffffff;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .cta-btn {
      background-color: #343a40;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      margin-top: 20px;
    }
    .cta-btn:hover {
      background-color: #212529;
    }
    .world-map {
      max-width: 100%;
      height: auto;
      margin-bottom: 20px;
    }


      @keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

 /* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
   /* === Sticky Drawer Icons - Left === */

    /* === Sticky Drawer (Left Side) === */
    .sticky-drawer {
      position: fixed;
      /* top: 50%; */
      top: 80%;
      left: 0;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 2px;
      z-index: 1050;
    }

    .sticky-drawer a {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      text-decoration: none;
      color: #fff;
      border-radius: 0 30px 30px 0;
      padding: 10px 15px;
      width: 55px;
      transition: all 0.3s ease;
      overflow: hidden;
      white-space: nowrap;
      box-shadow: 0 0 10px rgba(0,0,0,0.3);
      position: relative;
      cursor: pointer;
    }

    .sticky-drawer a i {
      font-size: 1.3rem;
      margin-right: 10px;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }

    .sticky-drawer a span {
      opacity: 0;
      transition: opacity 0.3s ease;
      font-weight: 500;
    }

    /* === Desktop Hover Expand === */
    @media (min-width: 769px) {
      .sticky-drawer a:hover {
        width: 210px;
        border-radius: 0 30px 30px 0; /* consistent rounded corners */
      }

      .sticky-drawer a:hover span {
        opacity: 1;
      }

      .sticky-drawer a:hover i {
        transform: scale(1.1);
      }
    }

    /* === Mobile Tap Expand (via JS) === */
    .sticky-drawer a.active {
      width: 210px;
      border-radius: 0 30px 30px 0; /* consistent pill shape */
    }

    .sticky-drawer a.active span {
      opacity: 1;
    }

    /* === Individual Colors === */
    .sticky-drawer a.quote {
      background-color: #6d6e71;
    }

    .sticky-drawer a.quote:hover,
    .sticky-drawer a.active.quote {
      background-color: #6d6e71;
    }

    .sticky-drawer a.brochure {
      background-color: #007bff;
    }

    .sticky-drawer a.brochure:hover,
    .sticky-drawer a.active.brochure {
      background-color: #0056b3;
    }

    /* === Hint Arrow Animation (Desktop Only) === */
    .sticky-drawer::before {
      content: "\f138"; /* bootstrap icon: arrow-right-short */
      font-family: "bootstrap-icons";
      position: absolute;
      right: -25px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 1.8rem;
      color: rgba(0, 0, 0, 0.2);
      animation: hintPulse 2s infinite;
    }

    @keyframes hintPulse {
      0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.3; }
      50% { transform: translateY(-50%) translateX(6px); opacity: 0.7; }
    }

    /* === Mobile View (Circular collapsed state) === */
    @media (max-width: 768px) {
      .sticky-drawer a {
        width: 50px;
        border-radius: 50%; /* perfectly round when collapsed */
        /*justify-content: center;*/
      }

      .sticky-drawer a i {
        margin-right: 0;
      }

      .sticky-drawer a span {
        display: none; /* hide text until expanded */
      }

      .sticky-drawer a.active {
        width: 210px;
        border-radius: 0 30px 30px 0; /* pill shape when expanded */
        justify-content: flex-start;
      }

      .sticky-drawer a.active i {
        margin-right: 10px;
      }

      .sticky-drawer a.active span {
        display: inline;
        opacity: 1;
      }

      .sticky-drawer::before {
        display: none; /* no arrow on mobile */
      }
    }

/* === Right Icons (animation) === */
#fixedWhatsAppIcon {
  display: block;
  position: fixed;
  right: 20px;
  bottom: 105px;
  width: 50px;
  height: 50px;
  background-color:#0f75bd;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  z-index: 9999;
}
#fixedWhatsAppIcon:hover {
  background-color: #6d6e71;
}

#fixedWhatsAppIcon1 {
  display: block;
  position: fixed;
  right: 20px;
  bottom: 50px;
  width: 50px;
  height: 50px;
  background-color: #6d6e71;
  text-align: center;
  line-height: 50px;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  z-index: 9999;
}
#fixedWhatsAppIcon1:hover {
  background-color: #6d6e71;
}

/*carousel */

 .carousel-item {
      /* height: 80vh; */
      background-size: cover;
      background-position: center;
      color: #fff;
      position: relative;
     transition: background-image 1s ease-in-out;
    }

    .carousel-item::before {
      content: "";
      position: absolute;
      inset: 0;
   /*   background: rgba(0, 0, 0, 0.55);*/
    }

    .carousel-content {
      position: relative;
      z-index: 2;
    }

    .carousel-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }

    .carousel-text h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .carousel-text p {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
    }

    .carousel-img {
      text-align: right;
    }

    .carousel-img img {
      /*max-width: 90%;*/
      width:326px;
      height:500px;
     /* border-radius: 1rem;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);*/
    }

     .btn-view-more {
      background-color: #6d6e71;
      border: none;
      color: #fff;
      margin-right: 10px;
      transition: background-color 0.3s ease;
    }

    .btn-view-more:hover {
      background-color: #6d6e71;
    }

    .btn-enquire {
      background-color:#0e75bd;
      border: none;
      color: #fff;
      transition: background-color 0.3s ease;
    }

    .btn-enquire:hover {
      background-color: #0056b3;
    }


    /*POPUP FORM*/

    .section-heading {
      text-align: center;
      font-weight: 700;
      color: #1177be;
      margin-bottom: 2rem;
    }

    .form-container,
    .map-container {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      height: 100%;
    }

    .form-container h5 {
      color: #1177be;
      font-weight: 600;
      margin-bottom: 1.5rem;
    }

    label {
      font-weight: 500;
    }

    textarea {
      resize: none;
    }

    iframe {
      border-radius: 12px;
      min-height: 450px;
    }

    .slider_new .carousel-item {
    /* height:60vh; */
     height:50vh;
  }

    /* Navbar link styles */
    .navbar-nav .nav-link {
      font-family: "Inter", sans-serif;
      text-transform: uppercase;
      font-size: 14px;
      padding: 8px 22px !important;
      color: black !important;
    }
 .navbar-brand img{
      width: 200px;
    }
    /* Ensure navbar/container are positioned so absolute child centers correctly */
  /*.navbar, .navbar .container { position: relative; }*/

  /* Override Bootstrap dropdown default where needed */
  .mega-dropdown {
    position: absolute !important;    /* position relative to .container */
    top: calc(100% + 6px);
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: min(1100px, 90%);          /* centered fixed max width */
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border-top: 3px solid #742d73;
    background: #fff;
    z-index: 2000;
    display: none;                    /* default hidden; shown via .show or hover */
    padding: 0;
    border-radius: 4px;
  }

  /* Let Bootstrap's .show class make it visible (for click) */
  .dropdown.show > .mega-dropdown,
  .nav-item.megamenu:hover > .mega-dropdown {
    display: block;
  }
 
  /* .blank-space {
   height:auto;
   width:800;
  } */
   
  /* layout inside mega */
  .mega-sidebar {
    width: 100%; /* fixed sidebar width */
    border-right: 1px solid #e6e6e6;
    background-color: #ffffff;
  }

  /* .mega-content { padding: 24px; } */
  .mega-menu-con1 a{
    color: #1177BE;
    text-decoration: underline;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .mega-menu-con1 a:hover{
    color: #000000;
  }
  .mega-menu-con a{
    color: #1177BE;
    text-decoration: none;
  }
  .mega-menu-con a:hover{
    color: #000000;
    text-decoration: underline;
  }
  /* small visual tweaks */
  .mega-dropdown .row { margin: 0; }
  .mega-dropdown h3 { font-size: 1.05rem; margin-bottom: 6px; }
  .megalink { display:block; padding:8px 12px; }

  /* responsive adjustment */
  @media (max-width: 991.98px) {
    .mega-dropdown {
      position: static !important;
      transform: none !important;
      width: 100% !important;
    }
    .mega-sidebar { width: 100%; border-right: none; border-bottom: 1px solid #e6e6e6; }
    .mega-content { padding: 16px; }
    }
    .img-responsive { width: 100%; height: auto; }
    /* Hide all tab contents by default */
    .tabcontent {
      display: none;
      float: left;
      width: 100%;
      border-left: none;
    }

    /* Show active tab content */
    .tabcontent.active {
      display: block;
    }

    /* Style the buttons inside the tab */
    .tab button {
      display: block;
      background-color: inherit;
      color: #000000;
      padding: 12px 16px;
      width: 100%;
      border: none;
      outline: none;
      text-align: left;
      cursor: pointer;
      transition: 0.3s;
      font-size: 16px;
    }

    .tab button:hover {
      background-color: #ddd;
      color: #ffffff;
    }

    .tab button.active {
      background-color: #0f76bd;
      color: #ffffff;
    }

    .form-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box; /* Ensures padding doesn't affect total width */
        }
        textarea {
            resize: vertical;
            height: 150px;
        }
        button {
            background-color: #007bff;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        button:hover {
           /* background-color: #0056b3;*/
        }

        /* ---------- Responsive megamenu (mobile/tablet) ---------- */
@media (max-width: 991.98px) {
  /* make dropdown flow inside collapse */
  .mega-dropdown {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    box-shadow: none;
    border-top: none;
    display: none; /* we'll toggle a class to show it */
    padding: 0;
    border-radius: 0;
  }

  /* mobile-open class will display block */
  .mega-dropdown.open-mobile {
    display: block !important;
  }

  /* Stack sidebar and content vertically */
  .mega-dropdown .d-flex {
    flex-direction: column;
  }

  .mega-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e6e6e6;
    padding: 8px 12px;
    background: transparent;
  }

  .mega-content {
    padding: 12px;
    background-color: transparent; /* remove boxed background on mobile */
  }

  /* HIDE images on mobile/tablet */
  .mega-menu-con img {
    display: none !important;
  }

  /* Simplify headings and view-all */
  .mega-menu-con h3 {
    font-size: 15px;
    margin: 6px 0;
    padding: 8px 0;
    background: none;
    text-align: left;
  }

  .mega-menu-con1 {
    text-align: center;
  }

  /* Tab buttons smaller */
  .tab button {
    padding: 10px 12px;
    font-size: 15px;
  }

  /* Ensure dropdown links are full width & tappable */
  .mega-dropdown .megalink,
  .mega-dropdown .nav-link {
    display:block;
    width:100%;
    padding:10px 12px;
  }
}
/* Hide desktop megamenu on small screens */
            @media (max-width: 991.98px) {
            /* .nav-item.megamenu {
                display: none !important;
            } */
            }

            /* Optional tweaks for mobile dropdown menu look */
            #mobileProducts a {
            text-decoration: none;
            }

            #mobileProducts .dropdown-toggle::after {
            float: right;
            }

            #mobileProducts ul li a {
            font-size: 15px;
            }

            #mobileProducts .fw-bold {
            color: #742d73 !important;
            }

/* Hide sub-menus (product cards) on mobile but keep main category buttons visible */
@media (max-width: 991px) {

  /* Hide only the tab content (the product cards) */
  .mega-dropdown .tabcontent {
    display: none !important;
  }

  /* Keep sidebar category buttons visible */
  .mega-dropdown .mega-sidebar {
    display: block !important;
  }

  /* Optional: style category buttons like normal links for mobile */
  .mega-dropdown .tab button.tablinks {
    width: 100%;
    display: block;
    text-align: left;
    padding: 12px 15px;
    border: none;
    background: #fff;
    color: #000;
    border-bottom: 1px solid #ddd;
  }

  /* Prevent mega dropdown from overflowing on small screens */
  .mega-dropdown {
    position: static !important;
  }

  .mega-dropdown .dropdown-menu {
    width: 100% !important;
    padding: 0 !important;
  }
}

/*Form*/
.form-container {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .form-group {
            margin-bottom: 15px;
        }
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box; /* Ensures padding doesn't affect total width */
        }
        textarea {
            resize: vertical;
            height: 150px;
        }
        button {
            background-color: #007bff;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        button:hover {
           /* background-color: #0056b3;*/
        }



/* General tab container styling */
/* === NAVY BLUE & GREY TAB DESIGN === */

/* Tab container */
#myTab {
  border-bottom: 2px solid #d0d0d0;
  margin-bottom: 20px;
  justify-content: center;
  background: linear-gradient(135deg, #f8f9fa, #f1f1f1);
  border-radius: 8px 8px 0 0;
  padding: 10px 0;
  margin:10px;
}

/* Tab buttons */
#myTab .nav-link {
  color: #4a4a4a;
  font-weight: 600;
  border: none;
  border-radius: 6px 6px 0 0;
  transition: all 0.3s ease;
  /* padding: 5px 10px;
  margin: 0 5px; */
  padding: 5px 10px;
  margin: 5px 10px; 
  background: transparent;
  position: relative;
}

/* Hover effect */
#myTab .nav-link:hover {
  color: #0d3b66;
  background: rgba(13, 59, 102, 0.1);
  transform: translateY(-2px);
}

/* Active tab */
#myTab .nav-link.active {
  color: #fff !important;
  background: linear-gradient(135deg, #0d3b66, #1a73b8);
  box-shadow: 0 4px 10px rgba(13, 59, 102, 0.3);
  transform: translateY(-2px);
}

/* Bottom gradient border under active tab */
#myTab .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1a73b8, #0d3b66);
  border-radius: 0 0 4px 4px;
}

/* Tab content area */
.tab-content {
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 0 0 8px 8px;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.5s ease;
}
.bullets1{
    list-style-type: disc ;
    padding-left:1em;
    margin-left:1em;
}

/* Make nav tabs scrollable on small screens */
@media (max-width: 768px) {
  #myTab {
    flex-direction: column;
  }

  #myTab .nav-item {
    width: 100%;
    margin-bottom: 5px;
  }

  #myTab .nav-link {
    width: 100%;
    text-align: center;
  }
 #imageCarousel {
  margin-top:68px;
  }

}

/* .tab-content {
  padding: 15px;
} */
/* @media (max-width: 576px) {
  .tab-content {
    padding: 10px;
  }
}
.table-responsive {
  overflow-x: auto;
} */

@media (min-width: 992px) {
  #imageCarousel {
    /* max-width: 400px;
    margin-left: 15px; */
    margin:0 auto;
  }
}

.carousel img {
  object-fit: cover;
  border-radius: 8px;

}

.nav-tabs .nav-link {
  margin: 0.2rem;
  white-space: nowrap;
}

.tab-content {
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  padding: 1.5rem;
  border-radius: 0 0 8px 8px;
  margin:10px;
}

/* Fade-in animation for smooth transitions */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Optional: subtle color change inside tab content */
.tab-pane {
  color: #333;
  margin-left: 15px;
  margin-right: 15px;
}

/* Mobile-friendly scrolling tabs */
@media (max-width: 576px) {
  #myTab {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #myTab .nav-link {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .slider_new .carousel-item {
    height:auto;

}

@media ( max-width:800px) {
   .navbar-brand img{
      width: 150px;
    }

    .offcanvas-title img {
        width: 200px;
    }

    
}


.img-responsive {
  width:100%;
  height:auto;
}


@media (max-width: 992px) {
  #myTab {
    position: fixed;
    top: 80px; /* adjust based on your header/logo height */
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: #fff;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    border-bottom: 1px solid #ddd;
    transition: all 0.3s ease;
  }

  /* Compact (shrunken) mode */
  #myTab.compact {
    transform: scale(0.95);
    opacity: 0.9;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  #myTab .nav-item {
    display: inline-block;
  }

 

  /* Add top space so content doesn't hide under fixed tabs */
 /* #myTabContent {
    margin-top: 140px;  header height + tab height 
  }*/
}