
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.mobile-logo{
  display: none !important;
}
.secondary-heading {
  text-align: center;
  margin-bottom: 30px;
}

.secondary-heading h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: bold;
  /* color:#374151; */
  color: #000;
}

.secondary-heading p {
  font-size: 18px;
  color: #1c1c1c; 
  margin: 0;
}
.secondary-heading span{
  color: red;
}
.secondary-heading h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #FFD700; 
  margin: 8px auto 0;
}

.secondary-heading-two{
  font-weight: bold;
  text-align: left;
  font-size: 36px;
}
.secondary-heading-two span{
  color: red;
}

/* Header Styling */
.header{
  display: flex;
  flex-direction: column !important;
  width: 100%;
}
.header-top{
  
  width: 100%;
  height: 50px !important;
  background-color: red;
  z-index: 999;
  transition: all .3s;
}
.header-top-fixed {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);   
}

.sidebar-link{
  display: none !important;
}
.header-top-cover{
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center !important;
  height: 100%;
}
.h-top-left{
  background-color: transparent !important;
  width: 55%;
  height: 100%;
}
.h-top-left-navbar{
  height: 100%;
  display: flex;
  align-items: center !important;
  justify-content: space-between;
  list-style-type: none;
}
.h-top-left-navbar .nav-item .nav-link{
  text-decoration: none;
  color: #f5f5f5;
}

.h-top-right{
  width: 45%;
  height: 100%;
}
.h-top-right-list{
  display: flex;
  height: 100%;
  align-items: center;
  list-style-type: none;
  text-decoration: none;
  justify-content: right;
}
.h-top-right-list-item{
  color: #f5f5f5;
  font-weight: 900;
  padding-right: 40px;
}

/* //////////// */

.sidebar-link-cover,
.sidebar-resp-searchbar-cover{
  display: none !important;
}
/* Container for the search bar */
.sidebar-resp-searchbar {
  display: flex;
  display: none !important;
  align-items: center;
  background-color: transparent;
  border-radius: 4px;
}

/* Input field for search */
.sidebar-resp-searchbar input[type="search"] {
  width: 100%;
  flex-grow: 1; 
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  outline: none;
  font-size: 14px;
}

/* Search icon */
.sidebar-resp-searchbar button {
  border: none;
  color: #f5f5f5;
  background-color: red;
  font-size: 14px;
  padding: 10px;
  padding-right: 10px;
  border-radius: 6px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  text-decoration: none;
}

/* Change color of the icon on hover */
.sidebar-resp-searchbar a:hover {
  color: #FFD700;  /* Blue color on hover */
}



/* //////////////////////////HEADER MIDDLE  */


    /* Search Bar Container */
    .search-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 500px;
      background: #ffffff;
      border: 1px solid #dee2e6;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Input Field */
    .search-container input {
      flex: 1;
      padding: 10px 15px;
      font-size: 16px;
      border: none;
      border-radius: 8px 0 0 8px;
      outline: none;
      color: #495057;
    }

    .search-container input::placeholder {
      color: #adb5bd;
    }

    /* Search Button */
    .search-container button {
      padding: 12px 20px;
      font-size: 16px;
      background-color: red;
      color: white;
      border: none;
      border-radius: 0 8px 8px 0;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .search-container button:hover {
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
      background-color: #FFD700;
      color: #f5f5f5;
    }
    .header-middle-btn a{
      background-color: red;
      color: #f5f5f5;
      transition: all .3s;
    }
    .header-middle-btn a:hover{
      background-color: #FFD700;
      color: #f5f5f5;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }
    /* Responsive Design */









    

.navbar {
    background-color: rgba(255, 255, 255, 1);
    padding: 10px 0;
    transition: background-color 0.3s ease;
    box-shadow: none;
}

.navbar-brand {
    font-weight: bold;
    color: #FFD700; /* Golden logo */
    font-size: 2em;
    transition: color 0.3s ease;
}
.navbar-brand img{
  width: 180px;
}

.navbar-brand:hover {
    color: #ff0000; /* Hover effect */
}


/* Main Dropdown */
.nav-link-main{
  border-left: 3px solid #FFD700;
  color: #495057bc !important;
  padding-left: 5px;
}
.navbar-nav .nav-item .dropdown-menu {
    display: none; /* Hide the dropdown by default */
    position: absolute;
    background-color: #111;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Show the dropdown menu when hovering over the parent item */
.navbar-nav .nav-item:hover .dropdown-menu {
    display: block;
}

/* Sub-dropdown */
.navbar-nav .nav-item .dropdown-menu .sub-dropdown {
    display: none; /* Hide the sub-dropdown by default */
    position: absolute;
    top: 0;
    left: 100%; /* Position it to the right of the parent dropdown */
    background-color: #222;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Show the sub-dropdown when hovering over a company item */
.navbar-nav .nav-item .dropdown-menu .dropdown-item:hover .sub-dropdown {
    display: block;
}

/* Style for the dropdown items */
.navbar-nav .nav-item .dropdown-menu .dropdown-item,
.navbar-nav .nav-item .dropdown-menu .sub-dropdown .dropdown-item {
    padding: 10px 20px;
    color: #fff;
    background-color: #222;
    text-decoration: none;
}

/* Hover effects */
.navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.navbar-nav .nav-item .dropdown-menu .sub-dropdown .dropdown-item:hover {
    background-color: red;
}

/* Submenu on Left Side */
.dropdown-submenu .dropdown-menu {
    left: -250px;
    top: 0;
    animation: slideInLeft 0.3s ease;
}

.sub-menu-custom{
    color: #f5f5f5;
    text-decoration: none;
}

.dropdown-item {
  display: block;
  width: 100%;
}



/* ////////////////////////HEADER BOTTOM////////////////////// */
.header-bottom{
  width: 100%;
  height: 45px;
  background: linear-gradient(rgba(0, 0, 0, 0.5) , rgba(0, 0, 0, 0.4));
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: 0px !important;
  padding: 0px !important;
}
.header-bottom-cover{
  width: 70%;
  height: 100%;
  display: flex !important;
  justify-content: space-around;
  align-items: center;
}
.header-bottom-cover .navbar-nav{
  width:max-content;
  padding: 10px 0px;
  

}
.h-bottom-links{
  height: 100%;
  font-size: 20px;
  padding: 0px !important;
  margin: 0px !important;
}
.h-bottom-links img{
  max-height: 100%;
  width: 82px;
  object-fit: cover;
}
/* //////////////////////////////////HERO SECTION//////////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////// */
/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  background-color: #111;
  color: #fff;
  text-align: center;
}
.carousel-item{
  height: 80vh;
  position: relative;
}
.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
 
}
.carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)); 
  z-index: 1; 
}
.carousel-caption{
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  border-radius: 20px;
  width: 30%;
  height: max-content;
  top: 8%;
  left: 65%;
  z-index: 999;
  text-align: center;
}
.carousel-caption h2,
.carousel-caption p {
  color:white;
  padding: 5px;
  text-shadow: 4px 4px 10px rgb(255, 0, 0);
  
}
.carousel-caption h2{
  font-size: 30px;
  font-style: italic;
  font-weight: 900;
}
.carousel-caption h1{
  color: #FFD700;
  text-shadow: 
  2px 2px 5px red,  /* Red shadow */
  4px 4px 10px black; /* Black shadow */

  font-size: 40px;
  font-weight: 900;
}


.carousel-caption a:hover {
  background-color: #ffcc00;
}

/* Animation */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes slideInLeft {
  0% { transform: translateX(-250px); }
  100% { transform: translateX(0); }
}


/* //////////////////////////////////////////PRODUCTS SECTION ////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////////////// */

.unique-product-display {
    padding: 60px 20px;
    color:#374151;
}

.product-ts-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: red; /* Golden color for the tag */
  color: white;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 5px;
  z-index: 1;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Product card container */
.product-card {
    width: 100%;
    max-width: 300px;
    margin: auto;
    transition: all .4s;
}

.product-card-inner {
    position: relative;
    width: 100%;
    height: 350px;
    transition: all .4s;

}

.product-card:hover .product-card-inner {
  cursor: pointer;
  transform: scale(.94);
}

/* Front and back sides */
.product-card-front{
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(43, 0, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(#f2f2f2, rgba(255, 255, 255, 0.489));
    /* rgba(0, 42, 255, 0.499) */
    color: #000;
    padding: 20px;
}

.product-card-front img {
    width: 100%;
    height: 80%;
    object-fit: contain;
    background-color: transparent;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.product-card-front h3 {
    margin-top: 10px;
    font-size: 20px;
    color: black;
    font-family: 'Arial', sans-serif;
}

.product-btn {
    padding: 8px 16px;
    background-color:black;
    color: #f5f5f5; /* Dark golden text */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 15px;
}

.product-btn:hover {
    background-color: #ffffffd9;
    color: black;
}


/* /////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
//////////////////////////COMPNYS TOP ROW PRODUCTS/////////////////////////// */



.company-tr-products-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  /* border-top: 5px solid red; */
  position: relative;
}

/* Section Header */
.company-tr-products-section h2 {
  font-family: 'Arial', sans-serif;
  font-size: 2rem;
  color: black;
  margin-bottom: 10px;
  font-weight: bold;
}

.company-tr-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0px 20px;
}

/* Button */
.company-tr-products-btn {
  border-bottom: 2px solid red;
  padding: 5px 10px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  outline: none;
  transition: all .3s;
}
.company-tr-products-btn a{
  color: rgba(0, 0, 0, 0.8);
}


.responsive-tr-btn{
  background-color: red !important;
  border: none;
  color: white;
  display: none;
}

.company-tr-products-btn:hover {
  color: rgb(0, 0, 0);
  transform: translateY(-2px);
  border-bottom: 4px solid red;

}

/* Connected Border for Product Grid */
.company-tr-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 2px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}

/* Product Cards */
.company-tr-products-card {
  flex: 1 1 25%;
  border-right: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  text-align: center;
  transition: background-color 0.3s ease-in-out;
  background: linear-gradient(white ,#f2f2f2 60% ) ;
}

.company-tr-products-card:last-child {
  border-right: none; /* Remove right border for the last card in the row */
}

.company-tr-products-card:nth-child(4n) {
  border-right: none; /* Remove right border for every 4th card */
}

.company-tr-products-card img {
  max-width: 100%;
  height: 250px !important;
  object-fit: cover;
  height: auto;
  margin-bottom: 15px;
  padding: 15px;
  transition: all .5s;
 
}

.company-tr-products-card h5 {
  font-size: 1.1rem;
  font-weight: bold;
  color: red;
  background: white;
  height: 70px;
  padding: 20px 4px;
  margin: 0px;
  transition: all .5s;
}

.company-tr-products-card:hover.company-tr-products-card h5 {
  background-color:#007bff;
  color: white;
}
.company-tr-products-card:hover.company-tr-products-card img{
  transform: scale(1.09);
}

/* Section Divider */
.company-tr-products-divider {
  
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.company-tr-products-divider span{
  width: 30%;
  height: 4px;
  background: linear-gradient(to right ,  red 40% , black);
  border-radius: 2px;
}















/* ///////////////////////////ABOUT US SECTION///////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////// */

.about-us-breadcrum{
  /* background:linear-gradient(to top , rgba(0, 0, 0, 0.7) , rgba(0, 0, 0, 0.7)),  url('../images/about_banner.jpg'); */
  background: linear-gradient( to right bottom , rgba(0, 0, 0, .65)55%,  rgba(0,113,255, .5)),  url('../images/about-us-banner.jpg');

  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; 
}
  
#about-us {
    padding: 60px 20px;
    text-align: center;

    background-image: url('../images/sky_background.png');
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; 

    color: #1c1c1c;
    transition: all 0.3s ease-in-out;
}

#about-us .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700; /* Golden color for the title */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

#about-us .about-description, #about-us .about-extra-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #252525;
    text-align: justify;
}

#about-us .about-extra-description {
    font-style: italic;
}

#about-us .btn-about-us {
    display: inline-block;
    background-color: #FFD700; /* Golden button */
    color: #1c1c1c;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s;
    margin-top: 20px;
}

#about-us .btn-about-us:hover {
    background-color: #ffcc00;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 204, 0, 0.4);
}

#about-us .about-image img {
    width: 90%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    filter: brightness(0.9); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about-us .about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}


/* //////////////////////////////////////// */

/* CEO Section Styling */
.ceo-container {
  text-align: center;
  padding: 50px 20px;
  background-color: #f2f2f2;
}

.ceo-heading {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ceo-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.ceo-profile {
  display: inline-block;
  text-align: center;
}

.ceo-image {
  width: 300px; /* Larger image */
  height: 300px; /* Ensure it's proportional */
  border-radius: 50%; /* Circular image */
  object-fit: cover;
  margin-bottom: 15px;
  border: 6px solid #ff0000; /* Red border */
}

.ceo-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #444;
  margin-top:30px;
}
.ceo-profile:hover .ceo-image {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

.ceo-profile:hover .ceo-name {
  color: #ff0000; /* Highlight the name in red on hover */
}




/* //////////////////////////////////////////NEW CENTER SECTION ////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////////////// */
.news-listing-breadcrum{
  background: linear-gradient( to right bottom , rgba(0, 0, 0, .65)55%,  rgba(0,113,255, .5)),  url('../images/technical-bg.png');

  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; 
}
.news-section {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
 /* Black background */
    color: #FFD700;
    /* border-bottom: 1px solid RED; */
}


.news-slider {
    position: relative;
    overflow: hidden;
    max-width: 90%;
    margin: auto;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.news-card {
    min-width: 300px;
    max-width: 300px;
    margin-right: 20px;
    background:#f2f2f2;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.news-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.news-card h3 {
    font-size: 20px;
    margin: 10px 0;
    color: black;
}

.news-card p {
    font-size: 16px;
    margin: 5px 0 15px;
    color: black;
}

.learn-more-btn {
    display: inline-block;
    background: #FFD700;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.learn-more-btn:hover {
    background: #d4a300;
}



.carousel {
	display: flex;
	gap: 1em;
	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	padding-bottom: 1em;
}


.carousel {
	scrollbar-width: thin;
	scrollbar-color: #444 #000;
}

.carousel::-webkit-scrollbar {
	height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
	background-color: #444;
	border-radius: 10px;
}

.carousel::-webkit-scrollbar-track {
	background-color: #000;
}

/* Styling for larger screens */


/* Container to center the button */
.see-all-news-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px; /* Adjust top margin as needed */
}

/* See All News Button */
.see-all-news-btn {
    background-color: #000000e3; /* Black background */
    color: #fff; /* White text */
    font-size: 1.2em;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    text-align: center;
}

/* Hover effect */
.see-all-news-btn:hover {
    color: #FFD700; /* Golden color on hover */
    background-color: #333; /* Slight darkening of background */
}






/* //////////////////////////////////////////COMANIES FRIENDSHIP  SECTION ////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////////////// */





#our-clients {
  text-align: center;
  /* background:linear-gradient(to bottom ,#eee , rgba(0, 0, 255, 0.3)); */
  background: #f2f2f2;
  padding: 60px 0;
}

.our-clients-heading {
  font-size: 42px;
  font-weight: 700;
  color: #d40000; /* Bold red for emphasis */
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.our-clients-description {
  font-size: 18px;
  color: #555555; /* Subtle gray for secondary text */
  margin-bottom: 40px;
}

/* Client Grid */
.our-clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px; /* Consistent spacing */
  padding: 0 20px;
}

/* Individual Client Card */
.our-clients-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow for elevation */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding: 20px;
  width: 220px;
  position: relative;
  overflow: hidden;
}

.our-clients-card:hover {
  transform:translateY(-10px) scale(1.05);

  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2); 
}

/* Client Image Container */
.our-clients-image {
  width: 130px;
  height: 130px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  background-color: white;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.our-clients-image img {
  background-color: WHITE;
  width: 100%;
  height: 100%;
  border-radius: 50%; /* Perfectly circular images */
  border: 4px solid #ffffff; /* Clean white border */
  object-fit: contain; /* Ensures images fit well */
}

/* Client Name */
.our-clients-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333333; /* Dark text for readability */
  margin-top: 10px;
}





/* //////////////////////////////////////////COMANIES FRIENDSHIP  SECTION ////////////////////////// */
/* /////////////////////////////////////////////////////////////////////////////////////// */


/* Container and Section Styling */
#companies-section {
    position: relative;
    padding: 60px 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) , rgba(255, 255, 255, 0.1)), url('../images/companies_bg.png') no-repeat center center/cover;
    color: #FFD700;
    text-align: center;
}

/* Companies Container */
.companies-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Company Card Styling */
.company-logo {
    flex: 1 1 18%;
    max-width: 200px;
    margin: 15px;
    text-align: center;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 15px;
    overflow: hidden;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.company-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Image Wrapper with Overlay Effect */
.logo-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.company-logo img {
    width: 100%;
    height: 100%;
    color: #f5f5f5;
    object-fit: contain;
    transition: filter 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.company-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}



/* Animation for Section Title */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



  
  /* /////////////////////////////////////////////////////////////////// */
  /* /////////////////////////////////////////////////////////////////// */
  /* /////////////////////////////////////////////////////////////////// */
  /* ///////////////////////////////CONTACT US PAGE////////////////////////// */
.breadcrumb-container{
    height: 360px;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.themed-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.453); /* Black background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    align-items: center;
    width: fit-content;
}

.breadcrumb-item {
    font-size: 16px;
    font-weight: 600;
    margin-right: 8px;
    color: red; /* White text */
    display: flex;
    align-items: center;
}

.breadcrumb-item::after {
    content: '›';
    color: #f5f5f5; /* Golden color */
    font-size: 14px;
    margin-left: 5px;
}

.breadcrumb-item:last-child::after {
    content: '';
}

.breadcrumb-item a {
    color: black; /* Golden links */
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    background: black; /* Light golden background on hover */
    color: #fff;
}

.breadcrumb-item.active {
    color: black; /* Softer goldenrod color for active page */
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: bold;
}

.contact-us-breadcrum{
  /* background:linear-gradient(to top , rgba(0, 0, 0, 0.7) , rgba(0, 0, 0, 0.7)),  url('../images/about_banner.jpg'); */
  background: linear-gradient( to right bottom , rgba(0, 0, 0, .65)55%,  rgba(0,113,255, .5)),  url('../images/contact-us-bg.jfif');

  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; 
}
  
  /* Contact Us Section */
  .contact-us-section {
    padding: 80px 50px;
    background:linear-gradient(to bottom , rgba(255, 255, 255, 0.7) , rgba(0, 0, 0, 0.8)), url('../images/technical-bg.png');
    color: #333;
    text-align: center;
  }
  
  .contact-us-heading h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
  }
  
  .contact-us-heading p {
    font-size: 16px;
    color: #777;
    margin-bottom: 40px;
    line-height: 1.8;
  }
  
  /* Flex container for Map and Form */
  .contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  /* Map Section */
  .contact-map {
    width: 48%;
    border-radius: 10px;
    overflow: hidden;
    height: 410px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  #map {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }
  
  /* Contact Form Section */
  .contact-form {
    width: 48%;
    padding: 30px;
    background-color: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .contact-form:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #f5a623;
    outline: none;
    box-shadow: 0 2px 4px rgba(245, 166, 35, 0.6);
  }
  
  .contact-form button {
    padding: 15px;
    background-color: #f5a623;
    border: none;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #333;
    transform: scale(1.05);
  }
  



  /* /////////////////////////////////////////////////////////////////// */
  /* /////////////////////////////////////////////////////////////////// */
  /* /////////////////////////////////////////////////////////////////// */
  /* ///////////////////////////////PRODUCSTS LISTING PAGE////////////////////////// */

  /* Global Styles */
  .product-breadcrum{
  background: linear-gradient( to right bottom , rgba(0, 0, 0, .5)55%,  rgba(0,113,255, .3)),  url('../images/foif-products.JPG');

    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; 
  }

  .products-container {
    background-color: white;
    display: flex;
    gap: 20px;
    padding: 20px;
  }

  .products-sidebar {
    width: 350px;
    padding: 20px;
    background: linear-gradient(to right bottom  ,  rgba(0, 0, 0, 0.361) ,rgba(255, 255, 255, 0.518));
    color: black;
    border-radius: 8px;
    flex-shrink: 0;
    position: sticky;
    top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .products-sidebar h4, .products-sidebar h4 {
    margin-bottom: 20px;
    margin-top: 10px;
    color: black;
    font-weight: 800;
    text-transform: uppercase;
  }

  .products-sidebar h4::after, .products-sidebar h4::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Dark golden color */
    margin-top: 4px;
    /* margin: 8px auto 0; */
}
  .products-search-section {
    margin-bottom: 20px;
  }

  .products-search-container {
    display: flex;
    gap: 10px;
  }

  .products-search-bar {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid #f9f9f9;
    border-radius: 4px;
    background-color: #d0d0d0;
    color: #333;
  }

  .products-search-btn {
    background-color: #008cd6;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .products-search-btn:hover {
    background-color: #ffcc00;

  }

  .products-filter-section {
    margin-top: 20px;
  }

  .products-dropdown {
    width: 100%;
    padding: 12px;
    background-color: #d0d0d0;
    color: black;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .products-dropdown:hover {
    background-color: white;
  }

  .products-filter-btn {
    width: 100%;
    padding: 12px;
    background-color: #008cd6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .products-filter-btn:hover {
    background-color: #ffcc00;
    color: white;
  }

  .products-content {
    flex-grow: 1;
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .products-content h2 {
    margin-bottom: 20px;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .products-item {
    background-color: #ffffff;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
    text-align: center;
    cursor: pointer;
  }
  .no-product-found{
    text-align: center;
    color: red;
    display: flex;
    font-weight: 900;
    background-color: #0000007c;
    padding:15px;
    flex-direction: column;
    margin-top: 100px;    
  }
  .product-item-link{
    text-decoration: none;
  }
  .products-item img {
    max-width: 100%;
    height: 160px !important;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .products-item h3 {
    margin: 10px 0;
    color: #333;
    font-size: 1.2rem;
  }

  .products-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }

  #description p{
    text-align: justify;
    word-spacing: 4px;
    font-style: italic;
    padding: 20px !important;
  }

 
  /* ///////////////////////////////////////////////////////////////////////////////*/
  /* ////////////////////////////////////////////////////////////////////////////// */
  /* ///////////////////////////PRODUCT DETAILS PAGE/////////////////////////////// */
  .products-details-cover{
    width: 100%;
    background-color: #f5f5f5;
  }
  
  .p-details-container {
    background-color: transparent;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
  }

  .p-details-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
  }

  .p-details-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    max-width: 480px;
    padding: 15px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
  }

  .p-details-img-basic{
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 150px;
    background-color: #0000002e;
    z-index: 5;
    bottom: 0px;
    padding: 20px;
    text-align: center;
  }
  .p-details-img-basic h3{
    font-size: 20px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    background: red;
    border-radius: 10px;
    padding: 10px;
  }
  .p-details-img-basic span{
    /* font-style: italic; */
    font-size: 16px;
    font-weight: 100;
  }
  .p-details-image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    
  }

  .p-details-image:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .p-details-tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .p-details-tabs-header {
    display: flex;
    border-bottom: 1px solid #ddd;
  }

  .p-details-tab-button {
    flex: 1;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    background-color: #fff;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
    font-weight: 500;
  }

  .p-details-tab-button:hover {
    background-color: #f0f0f0;
    color: #333;
  }

  .p-details-tab-button.active {
    background-color: #008cd6;
    color: #fff;
    border-bottom: 3px solid #e5b800;
  }

  .p-details-tab-content {
    padding: 20px;
    display: none;
  }

  .p-details-tab-content.active {
    display: block;
  }

  .p-details-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    color: #444;
  }

  .p-details-specs-table th,
  .p-details-specs-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
  }

  .p-details-specs-table th {
    background-color: #f8f8f8;
    color: #555;
    font-weight: 500;
  }


  /* ///////////////////////////////////////////////////////////////////////////*/
  /* ///////////////////////////////////////////////////////////////////////////*/
  /* /////////////////////////// NEWS LISTING PAGE///////////////////////////////*/

  .news-listing-section {
    width: 100%;
    background-color: #f7f9fc;
    color: #333;
}

.news-listing-container {
    max-width: 1200px;
    margin: 0px auto;
    padding:60px 20px;
}

.news-listing-card {
    display: flex;
    flex-direction: row;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    height: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-listing-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-listing-image {
    width: 35%;
    object-fit: cover;
}

.news-listing-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-listing-title {
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 15px 0;
    font-weight: 600;
    transition: color 0.3s;
}

.news-listing-title:hover {
    color: #FFD700;
}

.news-listing-date {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 15px;
}

.news-listing-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.news-listing-read-more {
    display: inline-block;
    padding: 10px 15px;
    background-color: #FFD700;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    align-self: flex-start;
    transition: background-color 0.3s, transform 0.3s;
}

.news-listing-read-more:hover {
    background-color: #e5b800;
    transform: scale(1.05);
}

/* Pagination Styles */
.news-listing-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.news-listing-pagination a,
.news-listing-pagination span {
    margin: 0 5px;
    padding: 8px 15px;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.news-listing-pagination a:hover {
    background-color: #FFD700;
    color: #fff;
    border-color: #FFD700;
}

.news-listing-pagination .active {
    background-color: #FFD700;
    color: #fff;
    border-color: #FFD700;
}



/* /////////////////////////////////////////////////////////////// */
/* /////////////////////////////////////////////////////////////// */
/* /////////////////////NEW DETAILS PAGE////////////////////////// */

      /* Container for the content */
  .news-details-cover{
    width: 100%;
    background-color: #f4f4f4;
    color: #333;
  }
  .news-details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding:60px 20px;
  }

  /* Main News Content Section */
  .news-details-content {
      background: #fff;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
      margin-bottom: 3rem;
      transition: all 0.3s ease;
  }

  .news-details-content:hover {
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .news-details-image {
      width: 100%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
  }

  .news-details-title {
      font-size: 36px;
      color: #FFD700;
      font-weight: 700;
      margin-bottom: 1.2rem;
  }

  .news-details-meta {
      font-size: 1.2rem;
      color: #666;
      margin-bottom: 1rem;
      font-style: italic;
  }

  .news-details-description {
      font-size: 1.3rem;
      line-height: 1.8;
      color: #333;
      margin-top: 1.5rem;
      text-align: justify;
  }

  .news-details-description p {
      margin-bottom: 1.5rem;
  }

  /* Sidebar Section */
  .news-details-sidebar {
      background: #f9f9f9;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      margin-top: 3rem;
  }

  .news-details-sidebar h4 {
      font-size: 1.6rem;
      color: #00BFFF; /* Sky Blue */
      margin-bottom: 1.5rem;
  }

  .news-details-sidebar ul {
      list-style: none;
      padding: 0;
  }

  .news-details-sidebar ul li {
      margin-bottom: 1rem;
      font-size: 1.2rem;
      color: #333;
      padding: 12px;
      border: 1px solid #ddd;
      border-radius: 8px;
      background: #fff;
      transition: all 0.3s ease;
  }

  .news-details-sidebar ul li:hover {
      background: #FFD700; /* Golden Hover Effect */
      color: #fff;
  }

  /* //////////////////////////////////////////////////////////////////////////////// */
  /* //////////////////////////////////////////////////////////////////////////////// */
  /* //////////////////////////////////////////////////////////////////////////////// */
  /* ////////////////////////////////ABOUT US SECTION /////////////////////////////// */


  /* Section Styling */

.about-us-section {
  padding: 40px 20px;
  background: white;
}


.about-us-section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 40px;
    font-weight: 300;
    text-align: center;
    font-style: italic;
}
.about-us-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.about-us-card {
    background: linear-gradient(135deg, #f5f5f5, #e8f0fa);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(49% - 30px);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}
.about-us-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.about-us-card h3 {
    color: #0b5394;
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.about-us-card p {
    font-size: 1rem;
    color: #666;
    
    font-weight: 300;
}
/* Grid System for Additional Sections */
.about-us-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.about-us-grid-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}
.about-us-grid-item:hover {
    transform: translateY(-10px);
}
.about-us-grid-item img{
  margin-bottom: 40px !important;
  width: 100%;
  border-radius: 50%;
}
.about-us-grid-item h3 , .about-us-grid-item p{
  text-align: center;
}



/* ///////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////////////////////////////////////////////// */
/* ///////////////////////////////////SERVICES PAGE///////////////////////////// */
.services-breadcrum{
  background:linear-gradient( to right bottom , rgba(0, 0, 0, .65)55%,  rgba(0,113,255, .5)), url('../images/servises-bg.jpg');
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; 
}

.our-services-section {
    padding: 60px 20px;
    background-color: #f8fafc;
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* Services Container */
.our-services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

/* Individual Service Cards */
.our-services-card {
    background: linear-gradient(135deg, #f5f5f5, #e8f0fa);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 0 1 calc(33% - 20px);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.our-services-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Service Icons */
.our-services-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: brightness(0.3);
}

/* Service Details */
.our-services-details {
    padding: 10px 0;
}

.our-services-heading {
    font-size: 1.6rem;
    color: #007bff;
    margin-bottom: 10px;
}

.our-services-description {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}







/* /////////////////////////////FOOTER SECTION //////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
........................................................................... */

.footer {
  background: linear-gradient(to right, #1c1c1c, #111);
  color: white;
  padding: 50px 20px;
  font-family: 'Roboto', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Footer Logo and Description */
.footer-logo {
  flex: 1;
  min-width: 220px;
}

.footer-logo img {
  max-width: 160px;
  margin-bottom: 15px;
}

.footer-logo .tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

/* Quick Links Section */
.footer-quick-links {
  flex: 1;
  min-width: 180px;
}

.footer-quick-links h4 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
  padding-bottom: 5px;
  color: #FFD700;
}

.footer-quick-links ul {
  list-style: none;
  padding: 0;
}

.footer-quick-links li {
  margin-bottom: 10px;
}

.footer-quick-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-quick-links a:hover {
  color: #FFD700;
}

/* Address Section */
.footer-address {
  flex: 1;
  min-width: 220px;
}

.footer-address h4 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
  padding-bottom: 5px;
  color: #FFD700;
}

.footer-address a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-address a:hover {
  color: #FFD700;
}

/* Social Links Section */
.footer-social-links {
  flex: 1;
  min-width: 180px;
}

.footer-social-links h4 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  display: inline-block;
  padding-bottom: 5px;
  color: #FFD700;
}

.footer-social-links .social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  width: 36px;
  height: 36px;
  background-color: transparent;
  transition: all 0.3s ease;
  border-radius: 50%;

}
.social-icon img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;

}
.social-icon:hover {
  background-color: white;
}

/* Footer Bottom Section */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 14px;
  color: #ccc;
}



/* //////////////   WHATSAPP AND TOP ICON  ////////// */
/* ////////////////////////////////////////////////// */
/* ////////////////////////////////////////////////// */


.bottom-fixed-icons {
  position: fixed;
  bottom: 40px;  
  right: 20px; 
  z-index: 9999; 
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 10px; 
}
.up-arrow-icon ,
.whatsapp-icon{
  background-color: #007bff; 
  color: white;
  border-radius: 50%;
  padding: 25px;
  font-size: 24px;
  width: 20px;  
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.83);  /* Red shadow */
  transition: all .4s;
  text-decoration: none;
}
.whatsapp-icon{
  animation: bounce 1s infinite;
}
.whatsapp-icon-mobile{
  display: none !important;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.up-arrow-icon:hover ,
.whatsapp-icon:hover{
  background-color: #0056b3; 
  transform: translateY(-5px); 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); 
}

.whatsapp-icon {
  background-color: #25d366 !important; 
}

.whatsapp-icon:hover {
  background-color: #128c7e !important; 
}

/* //////////////////////////////////////////////// */
.accessories-breadcrum{
  /* background:linear-gradient(to top , rgba(0, 0, 0, 0.7) , rgba(0, 0, 0, 0.7)),  url('../images/about_banner.jpg'); */
  background: linear-gradient( to right bottom , rgba(0, 0, 0, .65)55%,  rgba(0,113,255, .5)),  url('../images/accessories-bg2.jpg');

  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; 
}

/* Container and Image Styles */
.accessories-image-column {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.accessories-image-column img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
}

.accessories-image-column img:hover {
  transform: scale(1.01); /* Slight zoom effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.accessories-image-column img:last-child {
  margin-bottom: 0;
}

/* Modal Styles */
.accessories-modal {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.accessories-modal-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
}

.accessories-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}

.accessories-close:hover {
  color: #ff0000;
}
