
/* Fonts */
:root {
 
  --heading-font:"IBM Plex Mono", monospace;  
  --nav-font: "Raleway", serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #151515; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffc451; /* Accent color that represents your brand on the website. It's used for 
  s, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #312f2f; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.905);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffc451; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffc451; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #2a2727;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
 
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: "IBM Plex Mono", monospace;
}

 
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  height: 110px;
}

.header .logo {
  width: 220px;
  margin-left: 10px;
}

.header .logo img {
  width: 100%;
  object-fit: cover;
  margin-top: 10px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
}

/* Phone Number Style */
.phone-no {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}





.phone-contact a{
  font-family: "calibri",serif !important;
}



.navmenu .phone-contact i{

  display: flex; /* Align the icon and text in a row */
  align-items: center;
}



/* Mobile View */
@media (max-width: 1200px) {
  
  .phone-contact{
    display: none;
  }
 
  /* Mobile Nav Toggle (Hamburger menu) */
  .mobile-nav-toggle {
    display: block;
    cursor: pointer;
  }
}

/* Extra Small Devices (Below 600px) */
@media (max-width: 600px) {
  .header .logo {
    width: 150px;
  }
  

}
  
 


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

#preloader .logo-container {
  animation: rotateExpand 2s ease-in-out forwards; /* Reduced to 2 seconds */
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader .logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
}

@keyframes rotateExpand {
  0% {
    transform: rotate(0deg) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: rotate(180deg) scale(1.5);
    opacity: 1;
  }
  100% {
    transform: rotate(360deg) scale(1);
    opacity: 0;
  }
}

/* Main Content */
.main {
  display: none;  /* Hide the main content initially */
  opacity: 0;
  overflow-x: hidden;
}

/* Fade-in animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* After the page has loaded, hide the preloader and show the main content */
body.loaded #preloader {
  display: none; /* Hide the preloader once the page is loaded */
}

body.loaded .main {
  display: block; /* Show the main content */
  animation: fadeIn 1s ease-out forwards; /* Content fade-in effect */
  opacity: 1;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #1ec2f3;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: white;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #00007f;
  color: white;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# banner
--------------------------------------------------------------*/

/* Banner Section */
.banner {
  position: relative;
  width: 100%;
  height: 94vh;
  background-size: cover;
  background-position: center;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;

  z-index: 1;
}

.banner .logo img {
  width: 200px;
  height: auto;
  object-fit: cover;
}

/* Hero Section Styling */
.hero {
  position: relative;
  width: 100%;
  height: 82vh; /* Adjust to your desired height */
  overflow: hidden;
  z-index: 1;
  
}

.slider {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 1s ease-in-out; /* Smooth transition for sliding effect */
  z-index: 1;
}

.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute; /* Keep the slide absolutely positioned */
  left: -100%; /* Start off-screen to the left */
  transition: left 1s ease-in-out; /* Smooth left-to-right transition */
}



.slide img {
  width: 100%; /* Ensures the image is responsive */
  height: 100%;
  object-fit: cover;
  border-radius: 30px; /* Border radius for rounded corners */
  background-color: rgba(0, 0, 0, 0.3); /* Dark background with some transparency */
  margin: 0 20px;
}

/* Text Section in Index */
.content-main-section .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 10;
}
@media (max-width: 768px) {
  .content-main-section .content{
    top: 60%;
   

  }
  .hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Adjust to your desired height */
    overflow: hidden;
    z-index: 1;
    
  }

}


.text-section {
  margin-bottom: 20px;
}

.text-section .store {
  color: #ffffff;
  margin-top: 20px;
 
}

.text-section h1 {
  font-size: 45px;
  color: white;
  margin: 0;
}

.text-section p {
  font-size: 24px;
  color: white;
  margin-top: 5px;
  font-family: "IBM Plex Mono", monospace;
}

/* Search Buttons */
.search-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 60px;
}

.search-btn,
.go-btn {
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s;
  font-family: "calibri", serif;
}

.search-btn {
  background-color: rgba(255, 255, 255, 0.8); /* White with 80% opacity */
  color: navy;
  width: 280px;
  font-size: 17px;
}

.go-btn {
  background-color: #1ec2f3;
  color: white;
  width: 90px;
  border-radius: 30px;
  border: none;
  font-size: 16px;
}



.go-btn:hover {
  background-color: navy;
}

/* Options Styling */
.options {
  margin-top: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
  display: none; /* Initially hidden */
}

.options ul {
  list-style: none;
  padding-left: 0;
}

.options li {
  padding: 8px 0;
  cursor: pointer;
  color: black;
}

.options li:hover {
  background-color: #2985ae;
  color: white;
}







/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.super-navbar {
  font-size: 17px;
  padding: 10px 0;
  background: linear-gradient(50deg, #00b9f2 0%, rgba(0, 185, 245, 50) 0%, rgba(0, 0, 130, 75) 60%, #00007f 60%);
}



.super-navbar .contact-info {
  display: flex;
  align-items: center; /* Align items vertically */
  justify-content: flex-end; /* Align to the right */
  gap: 20px; /* Adjust spacing between links */
  font-family: 'Noto Sans', sans-serif;
  margin-left: auto;
  margin-right: 5px !important;
}




/* Style the links */
.super-navbar a {
  color: #1ec2f3;
  text-decoration: none;
  font-weight: 500;
}

.super-navbar a:hover {
  color: #007bff; /* Blue hover effect */
}

/* Adjust icon spacing */
.super-navbar .contact-info i {
  color: rgb(243, 239, 239); /* Blue color for icons */
  margin-right: 0; /* Space between icon and text */
}

.super-navbar .contact-info a {
  color: white; /* Black color for text */
  text-decoration: none;
  font-weight: 900;
  margin-right: 20px;
}

.super-navbar .contact-info a:hover {
  color: #1ec2f3;  
}


@media (max-width: 1200px) {
  
    .super-navbar{
      display: none;
    }
  }






/* Navmenu - Desktop */
@media (min-width: 1800px) {

  .navmenu ul {
    margin-bottom: 0px;
    /* margin-right: 70px; */
  }
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
    margin-top: 25px;
  }

  .navmenu ul {
 
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color:black;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 15px;
    line-height: 0;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #1ec2f3;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: black;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #1ec2f3;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
     color: #1ec2f3;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: #1ec2f3;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
   
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #1ec2f3;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #1ec2f3;
    color:white;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Icons Container */
.navmenu .icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-right: 10px !important;
  }
  @media (max-width: 1199px) {
    .navmenu .icons {
      display: flex;
      gap: 10px;
      justify-content: left;
      margin-left: 20px;
      margin-top: 15px;
      align-items: center;
      margin-right: 10px !important;
    }
 }

  
  .navmenu .icons .icon {
    display: inline-block;
    padding: 5px;
    font-size: 20px;
    color: white;
    background-color: #1ec2f3;
    border-radius: 10px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 27px;
    height: 27px;
    display: flex;
    justify-content: center;
    align-items: center;
  }



/*--------------------------------------------------------------
#  Section
--------------------------------------------------------------*/

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
 
}


/*--------------------------------------------------------------
# about   Section
--------------------------------------------------------------*/

.about-hero-section {
  position: relative;
  /* width: 98%; */
  height: 80vh; /* Default height */
  border-radius: 20px;
  overflow:hidden;
  margin: 20px;
}


/* Overlay Effect */
.about-hero-section .hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title Text */
.about-hero-section .hero-title {
  color: white;
  font-weight: bold;
  text-transform: capitalize;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) { /* Large screens (lg) */
  .about-hero-section {
      height: 75vh;
  }
  .about-hero-section .hero-title {
      font-size: 2.8rem;
  }
}

@media (max-width: 992px) { /* Medium screens (md) */
  .about-hero-section {
      height: 70vh;
  }
  .about-hero-section .hero-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) { /* Small screens (sm) */
  .about-hero-section {
      height: 60vh;
      border-radius: 10px;
  }
  .about-hero-section .hero-title {
      font-size: 2rem;
  }
}

@media (max-width: 576px) { /* Extra small screens (xs) */
  .about-hero-section {
      height: 50vh;
  }
  .about-hero-section .hero-title {
      font-size: 1.6rem;
      padding: 0 10px; /* Avoid text overflow */
  }
}

/*--------------------------------------------------------------
About-sub-section
------------------------------------------------------------------*/
    /* about Hero Section with Animation */
    .about-sub-section {
      position: relative;
      height: 10vh;
      background: #00b9f2; /* Keeping the blue color */
      border-radius: 30px;
      overflow: hidden;
      margin: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    /* Overlay Content */
    .about-sub-section .hero-overlay {
      position: relative;
      z-index: 2;
    }

    /* Title */
    .about-sub-section .hero-title {
      font-size: 3rem;
      font-weight: bold;
    }

    /* Particle Container */
    .about-sub-section  #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
  

    .about-sub-section .hero-title{
  font-size: 45px;
  color: white;
  font-family: 'IBM Plex Mono', monospace;
}



/* Overlay Effect */
.about-sub-section-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title Text */
.about-sub-section-hero-title {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

/* 📌 RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) { /* Large screens (lg) */
  .about-sub-section-hero-section {
      height: 10vh;
  }
  .about-sub-section-hero-title {
      font-size: 2.8rem;
  }
}

@media (max-width: 992px) { /* Medium screens (md) */
  .about-sub-section-hero-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) { /* Small screens (sm) */
 
  .about-sub-section-hero-title {
      font-size: 2rem;
  }
}

@media (max-width: 576px) { /* Extra small screens (xs) */
 
  .about-sub-section-hero-title {
      font-size: 1.6rem;
      padding: 0 10px; /* Avoid text overflow */
  }
}


/*-----------------------------------------------------
about-list
-----------------------------------------------------*/


.about-list {
  padding: 0px 0 50px;
}

/* Left Content Styling */
.about-list .content {
  position: relative;
}

.about-list .content h2{
  text-align: start;
  margin-bottom: 40px; /* Adds spacing below heading */
}
.about-list .content p {
  text-align: start;
  margin-bottom: 10px; /* Adds spacing below heading */
}
.about-list .text h1{
  padding-bottom: 70px;
  font-size: 60px;
}

.about-list .content-image img {
  max-width: 100%;
  height: 300px;
  width: 350px;
  margin-left: 80px;
  object-fit: cover;
  border-radius: 30px; /* Adds rounded corners */
  margin-top: 7px;

}


/* Heading styling inside content */
.about-list .content h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

/* Paragraph styling */
.about-list .content p {
  font-size: 17px;
  color: #524e4e;
  text-align: justify;
  width: 90%;
  font-weight: 400;
  font-family: "Raleway", serif;
}


@media (max-width: 1000px) {
#about-list .col-lg-5 img {
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure the image scales responsively */
  margin-left: 0px !important;
}
}


/* Responsive Design for Smaller Screens */
@media (max-width: 767px) {
  .about-list .content {
    padding: 20px;
    font-size: 15px; /* Adjust font size for better readability on small screens */
  }
  .about-list .content-image img {
    
    margin-left: 0px !important;
  }

  .about-list .img-fluid {
    border-radius: 10px;
  }

  .about-list .content h3 {
    font-size: 24px; /* Reduce the heading size for mobile */
  }

  .about-list .content p {
    font-size: 15px; /* Adjust the paragraph font size for readability */
  }
}







/*--------------------------------------------------------------
# offer Section
--------------------------------------------------------------*/


.offers img {
  /*max-height: 400px;*/
  object-fit: cover; /* makes sure the image covers the space, cropping if necessary */
  border-radius: 8px;
  width: 100%; /* Ensure image fills the column */
  height: auto; /* Ensures aspect ratio is maintained */
}

.offers .col-lg-4, .img-fluid {
  display: block;
  width: 100% !important;
}



/*--------------------------------------------------------------
offer-sub-section
------------------------------------------------------------------*/
    /* offer Hero Section with Animation */
    .offer-sub-section {
      position: relative;
      height: 10vh;
      background: #00b9f2; /* Keeping the blue color */
      border-radius: 30px;
      overflow: hidden;
      margin: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    /* Overlay Content */
    .offer-sub-section .hero-overlay {
      position: relative;
      z-index: 2;
    }

    /* Title */
    .offer-sub-section .hero-title {
      font-size: 3rem;
      font-weight: bold;
    }

    /* Particle Container */
    .offer-sub-section  #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
  

    .offer-sub-section .hero-title{
  font-size: 45px;
  color: white;
  font-family: 'IBM Plex Mono', monospace;
}



/* Overlay Effect */
.offer-sub-section-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title Text */
.offer-sub-section-hero-title {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

/* 📌 RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) { /* Large screens (lg) */
  .offer-sub-section-hero-section {
      height: 10vh;
  }
  .offer-sub-section-hero-title {
      font-size: 2.8rem;
  }
}

@media (max-width: 992px) { /* Medium screens (md) */
  .offer-sub-section-hero-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) { /* Small screens (sm) */
 
  .offer-sub-section-hero-title {
      font-size: 2rem;
  }
}

@media (max-width: 576px) { /* Extra small screens (xs) */
 
  .offer-sub-section-hero-title {
      font-size: 1.6rem;
      padding: 0 10px; /* Avoid text overflow */
  }
}


/*-----------------------------------------------------
offer-list
-----------------------------------------------------*/


.offer-list {
  padding: 0px 0 50px;
}

/* Left Content Styling */
.offer-list .content {
  position: relative;
}

.offer-list .content h2{
  text-align: start;
  margin-bottom: 40px; /* Adds spacing below heading */
}
.offer-list .content p {
  text-align: start;
  margin-bottom: 10px; /* Adds spacing below heading */
}
.offer-list .text h1{
  padding-bottom: 70px;
  font-size: 60px;
}

.offer-list .content-image img {
  max-width: 100%;
  height: 300px;
  width: 350px;
  margin-left: 80px;
  object-fit: cover;
  border-radius: 30px; /* Adds rounded corners */
  margin-top: 7px;

}


/* Heading styling inside content */
.offer-list .content h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

/* Paragraph styling */
.offer-list .content p {
  font-size: 17px;
  color: #524e4e;
  text-align: justify;
  width: 90%;
  font-weight: 400;
  font-family: "Raleway", serif;
}


@media (max-width: 1000px) {
#offer-list .col-lg-5 img {
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure the image scales responsively */
  margin-left: 0px !important;
}
}


/* Responsive Design for Smaller Screens */
@media (max-width: 767px) {
  .offer-list .content {
    padding: 20px;
    font-size: 15px; /* Adjust font size for better readability on small screens */
  }
  .offer-list .content-image img {
    
    margin-left: 0px !important;
  }

  .offer-list .img-fluid {
    border-radius: 10px;
  }

  .offer-list .content h3 {
    font-size: 24px; /* Reduce the heading size for mobile */
  }

  .offer-list .content p {
    font-size: 15px; /* Adjust the paragraph font size for readability */
  }
}


/*--------------------------------------------------------------
# service Details Section
--------------------------------------------------------------*/



.services-hero-section {
  position: relative;
  height: 80vh; /* Default height */
  border-radius: 20px;
  overflow:hidden;
  margin: 20px;
}


/* Overlay Effect */
.services-hero-section .hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title Text */
.services-hero-section .hero-title {
  color: white;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 45px;
}

/*  RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) { /* Large screens (lg) */
  .services-hero-section {
      height: 75vh;
  }
  .services-hero-section .hero-title {
      font-size: 2.8rem;
  }
}

@media (max-width: 992px) { /* Medium screens (md) */
  .services-hero-section {
      height: 70vh;
  }
  .services-hero-section .hero-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) { /* Small screens (sm) */
  .services-hero-section {
      height: 60vh;
      border-radius: 10px;
  }
  .services-hero-section .hero-title {
      font-size: 2rem;
  }
}

@media (max-width: 576px) { /* Extra small screens (xs) */
  .services-hero-section {
      height: 50vh;
  }
  .services-hero-section .hero-title {
      font-size: 1.6rem;
      padding: 0 10px; /* Avoid text overflow */
  }
}


/*--------------------------------------------------------------
Services-sub-section
------------------------------------------------------------------*/
    /* about Hero Section with Animation */
    .services-sub-section {
      position: relative;
      height: 10vh;
      background: #00b9f2; /* Keeping the blue color */
      border-radius: 30px;
      overflow: hidden;
      margin: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    /* Overlay Content */
    .services-sub-section .hero-overlay {
      position: relative;
      z-index: 2;
    }

    /* Title */
    .services-sub-section .hero-title {
      font-size: 3rem;
      font-weight: bold;
    }

    /* Particle Container */
    .services-sub-section  #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
  

    .services-sub-section .hero-title{
  font-size: 45px;
  color: white;
}



/* Overlay Effect */
.services-sub-section-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title Text */
.services-sub-section-hero-title {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

/* 📌 RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) { /* Large screens (lg) */
  .services-sub-section-hero-section {
      height: 10vh;
  }
  .services-sub-section-hero-title {
      font-size: 2.8rem;
  }
}

@media (max-width: 992px) { /* Medium screens (md) */
  .services-sub-section-hero-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) { /* Small screens (sm) */
 
  .services-sub-section-hero-title {
      font-size: 30px;
  }
}

@media (max-width: 576px) { /* Extra small screens (xs) */
 
  .services-sub-section-hero-title {
      font-size: 28px;
      padding: 0 10px; /* Avoid text overflow */
  }
}

/*-------------------------------------------------------------
Services-list
--------------------------------------------------------------*/

.services-list {
  padding: 0px 0 50px;
}

/* Left Content Styling */
.services-list .content {
  position: relative;
}

.services-list .content h2{
  text-align: start;
  margin-bottom: 40px; /* Adds spacing below heading */
}
.services-list .content p {
  text-align: start;
  margin-bottom: 10px; /* Adds spacing below heading */
}
.services-list .text h1{
  padding-bottom: 70px;
  font-size: 60px;
}

.services-list .content-image  {
 
  height: 300px;
  width: 350px;


}


.services-list  img{
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure the image scales responsively */
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-top: 7px;
 
}
/* Heading styling inside content */
.services-list .content h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

/* Paragraph styling */
.services-list .content p {
  font-size: 17px;
  color: #524e4e;
  text-align: justify;
  width: 90%;
  font-weight: 400;
  font-family: "Raleway", serif;
}


/* Responsive Design for Smaller Screens */
@media (max-width: 767px) {
  .services-list .content {
    padding: 20px;
    font-size: 15px; /* Adjust font size for better readability on small screens */
  }
  
.services-list  img{
  margin-left: 0 !important;
}

  .services-list .col-lg-5, .subcategory-list .col-lg-7 {
    order: 1; /* Stacks content and image vertically on smaller screens */
  }

  .services-list .img-fluid {
    border-radius: 10px;
  }

  .services-list .content h3 {
    font-size: 24px; /* Reduce the heading size for mobile */
  }

  .services-list .content p {
    font-size: 15px; /* Adjust the paragraph font size for readability */
  }
}

/*--------------------------------------------------------------
# service Details Section
--------------------------------------------------------------*/

/* Section Styling */
.service {
  padding: 0px 0 50px;
  margin: 0px 20px;
}
.service .service-section {
 
  margin: 0px 20px;
}

/* Left Content Styling */
.service .content {
  position: relative;
}

/* Heading styling inside content */
.service .content h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

/* Paragraph styling */
.service .content p {
  font-size: 17px;
  color: #524e4e;
  text-align: justify;
  width: 90%;
  font-weight: 400;
  font-family: "Raleway", serif;
}

/* "Read More" Overlay Styling */
.service .overlay {
  position: absolute;
  bottom: 0px;
  right: 100px;
  text-align: center;
  z-index: 10;
  padding: 10px 0;
}

/* "Read More" Link Styling */
.service .read-more {
  color: #00b9f2;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease; /* Smooth color transition */
}

/* Circle Icon next to Read More */
.service .read-more i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid #00b9f2;
  border-radius: 50%;
  color: #00b9f2;
  margin-left: 10px;
  font-size: 18px;
  transition: border-color 0.3s ease;
}

/* Hover effect for Read More link */
.service .read-more:hover {
  color: #007bff;
}

/* Image Styling */
#service .col-lg-5 img {
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure the image scales responsively */
}

/* AOS Animations */
[data-aos="fade-left"], [data-aos="fade-right"], [data-aos="flip-left"], [data-aos="flip-right"] {
  transition: transform 0.5s ease-in-out;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 767px) {
  .service .content {
    padding: 20px;
    font-size: 15px; /* Adjust font size for better readability on small screens */
  }
  .service .overlay {
    position: absolute;
    bottom: -30px;
  }

  .service .col-lg-5, .service .col-lg-7 {
    order: 1; /* Stacks content and image vertically on smaller screens */
  }

  .service .img-fluid {
    border-radius: 10px;
  }

  .service .content h3 {
    font-size: 24px; /* Reduce the heading size for mobile */
  }

  .service .content p {
    font-size: 15px; /* Adjust the paragraph font size for readability */
  }
}
@media (max-width: 767.98px) {
  .custom-mobile-height {
    min-height: 900px; /* Adjust this value as needed */
  }
}


/*--------------------------------------------------------------
# desktop image Section
--------------------------------------------------------------*/
/* Section Styling */
.desktop {
  padding: 80px 0;
  overflow: hidden;
  margin: 0 20px;
}


/* Image Styling */
.features-image img {
  width: 100%; /* Full width inside the container */
  height: 100%;
  border-radius: 25px; /* Apply border-radius on all corners */
  object-fit: cover; /* Ensures the image maintains aspect ratio and fills the space */
  display: block; /* Removes any unwanted space below the image */
}

/* Make sure the image is positioned correctly */
.features-image {
  position: relative; /* Make the container the reference for absolute positioning */
  width: 100%; /* Ensure the container takes the full width */
  height: 240px;
}

/* Style for the overlay text */
.text-overlay {
  position: absolute; /* Position it relative to the image container */
  top: 50%; /* Position vertically in the middle */
  left: 50%; /* Position horizontally in the middle */
  transform: translate(-50%, -50%); /* Offset the position by half of its width and height to truly center it */
  color: white; /* Text color for contrast */
  text-align: center; /* Center-align the text */
  z-index: 10; /* Ensure the text is above the image */
  animation: zoomInOut 3s infinite;  /* Apply the zooming animation */
}

/* Optional: Styling for the text */
.text-overlay h2 {
  font-size: 45px;
  margin: 0;
  letter-spacing: 2px;
  color: #ffffff;
}

/* Create the animation to zoom in and out */
@keyframes zoomInOut {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5); /* Scale up */
  }
  100% {
    transform: translate(-50%, -50%) scale(1); /* Scale back to original */
  }
}

/* AOS Animations (if you still want other elements to animate on scroll) */
[data-aos="fade-up"] {
  opacity: 0;
  transition: opacity 1s ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
}

/*--------------------------------------------------------------
#  product-page
--------------------------------------------------------------*/
/* General product page styles */
.product-section {
  padding: 20px;
  margin-bottom: 50px;
}
.product-section h2{
  text-align: center;
  margin-bottom: 30px;
  font-size: 50px;
  color: #00b9f2;
}
.product-section h4{
  margin-top: 30px;
}

.product-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-item {
  position: relative;
  text-align: center;
}

.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  height: 35vh;
  transition: transform 0.3s ease;
  border-radius: 40px;
}

.product-image:hover img {
  transform: scale(1.1);
}

.read-more-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border: 2px solid #333;
  padding: 10px 20px;
  font-size: 16px;
  display: none;
}

.product-image:hover .read-more-btn {
  display: block;
}

.product-text {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}


/* Initially hide the "Read More" button */
.read-more-btn {
  position: absolute;
  top: 42%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Perfectly center the button */
  opacity: 0; /* Hide the button initially */
  transition: opacity 0.3s ease; /* Smooth fade-in/out effect */
  z-index: 1; /* Make sure the button appears above the image */
}

/* Show the "Read More" button when hovering over the image */
.product-image:hover .read-more-btn {
  background-color: #2399c8; /* Blue background */
  color: #ffffff; /* Text color */
  padding: 12px; /* Equal padding on all sides to maintain circle */
  border-radius: 50%; /* Create a circle */
  border: none; /* Remove border */
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  transition: background-color 0.3s ease;
  width: 110px; /* Set a fixed width */
  height: 110px; /* Set a fixed height to ensure it's a circle */
  display: flex; /* Flexbox for centering text */
  justify-content: center;
  align-items: center;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .product-container {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .product-container {
      grid-template-columns: 1fr;
  }
}




/*--------------------------------------------------------------
#  buttons-container
--------------------------------------------------------------*/


/* Call and WhatsApp Buttons */
.call-button, .whatsapp-button, .close-btn {
  width: 60px;  /* Square background */
  height: 60px; /* Square background */
  font-size: 30px;
  background-color: #00b9f2;
  transition: opacity 0.5s ease;
  opacity: 0;
  margin: 10px; /* Space between buttons */
  color: #00007f;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-button:hover, .whatsapp-button:hover, .close-btn:hover {
  background-color: #00007f;
}

/* Close button styles */
.close-btn {
  font-size: 40px;
  color: #00007f;
  font-weight: 400;
  cursor: pointer;
  display: none; /* Initially hidden */
  display: flex;
  justify-content: center;
  align-items: center;
}
.close-btn:hover {
  color:#00b9f2 ;

}

/* Buttons Container */
.buttons-container {
  opacity: 1; /* Ensure it's fully visible */
  visibility: visible; /* Ensure it's visible */
  position: fixed;
  top: 50%;           /* Vertically center it */
  right: 20px;        /* Place it 20px from the right side */
  transform: translateY(-50%); /* Vertically center the container */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Align items in the center */
  z-index: 9999;      /* Ensure it's on top of all other content */
  padding: 10px;
  border-radius: 8px;  /* Optional: add rounded corners */
}

/* Show buttons when they are in view */
.call-button.show-buttons, .whatsapp-button.show-buttons, .close-btn.show-buttons {
  opacity: 1;
}

/* Show the close button when buttons are visible */
.call-button.show-buttons ~ .close-btn,
.whatsapp-button.show-buttons ~ .close-btn {
  display: block;
}

/* Button Slide Animation from Right */
@keyframes slideInRight {
  0% {
      opacity: 0;
      transform: translateX(100%); /* Start from right */
  }
  100% {
      opacity: 1;
      transform: translateX(0); /* End at center */
  }
}

/* Apply the animation */
.call-button, .whatsapp-button, .close-btn {
  animation: slideInRight 4s ease-out forwards;
}

/* Show buttons container */
.buttons-container.show {
  opacity: 1;
  visibility: visible;
}

/* Hide buttons container when toggled */
.buttons-container.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

/* Add transition for smooth hiding */
.buttons-container.hide .call-button,
.buttons-container.hide .whatsapp-button,
.buttons-container.hide .close-btn {
  transform: translateX(100%); /* Hide buttons to the right */
  opacity: 0;
}
/* Hide close button on larger screens (e.g., tablets and desktops) */
@media (min-width: 768px) {
  .close-btn {
    display: none !important;
  }
}




/*--------------------------------------------------------------
#  qna
--------------------------------------------------------------*/

.qna {
  width: 80%;
  margin: 20px auto;
  font-family: "Raleway", serif;
}

.qna .search-container {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: #f1f1f1;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ccc;
}



.profile-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #00b9f2; /* Pink color */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

.ans-profile-circle {
  width: 40px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

.profile-initial {
  font-family: Arial, sans-serif;
}


.qna .search-input {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: none;
  background: white;
  outline: none;
  padding-right: 90px; /* Space for the button */
}

.qna .btn-search {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00b9f2; /* Red color */
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0;
}




.qna .question-box {
  /*display: flex;*/
  /* align-items: center; */
  justify-content: space-between;
  border-bottom: 1px solid rgba(207, 202, 202, 0.73);
  padding: 15px 0;
 
}

.qna .profile-circle {
  width: 50px; /* Adjust size */
  height: 50px;
  border-radius: 50%;
  overflow: hidden; /* Ensures the image stays inside the circle */
  display: flex;
  align-items: center;
  justify-content: center;
 
 
}
.qna .answer-content .profile-circle {
  width: 50px; /* Adjust size */
  height: 50px;
  border-radius: 50%;
  overflow: hidden; /* Ensures the image stays inside the circle */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
 
}

.qna .profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the circle */
  border-radius: 50%;
}


.qna .question {
  flex: 1;
  margin-right: 10px;
  font-size: 15px;
  margin-bottom:30px;
}
.qna .question p {
  font-size: 18px;
  width: 600px;
  
}
/* 📱 Only override width for mobile screens */
@media screen and (max-width: 767px) {
  .qna .question p {
    width: 100%;
  }
}

.qna .answer {
  flex: 1;
  /* text-align: right; */
  font-size: 15px;
}
.qna .answer p {
  font-size: 18px;
}
.qna .answer-head{
  margin-right: 15px;
}
.qna .input-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.qna .position-relative {
  position: relative; /* This makes sure the button is positioned correctly */
  width: 100%;
}

.input-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Grey shadow */
  padding: 15px;
}

.input-section {
  max-width: 1200px; /* Adjust width as needed */
  margin: auto;
  
 
}

/* Container to keep input at the bottom with shadow */
.input-container {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Grey shadow */
  padding: 15px;
}

/* Centering input section */
.input-section {
  max-width: 1200px; /* Adjust width as needed */
  margin: auto;
  font-family:"Raleway", serif;
}

/* Name input field */
.input-section .name {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
}

/* Message input section with button */
.input-section .mb-2 {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ccc;
  
  
}

.input-section .mb-2:hover {
  border-color: #00b9f2;
}

/* Input inside message section */
.input-section .send-input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 14px;
  outline: none;
}

/* Send button styled like reference image */
/* Send button styled like reference image */
.send-button {
  bottom: 8px;
  right: -5px; /* Move button slightly to the right */
  background-color: #00b9f2;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 5px;
  cursor: pointer;
}

.send-button:hover {
  background-color: #0056b3;
}





.qna a i {
  color:#c5c6c6 ;
  font-size: 15px;
}
.qna a{
  color: black;
  font-size: 15px;
}
.qna a :hover i{
  color:black;
}

.qna .answer-content {
  /*display: flex;*/
  /* align-items: center; */
  justify-content: flex-end;
  gap: 20px;
}
.answer-text{
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .qna {
    width: 100%;
    padding: 10px;
  }

  .qna .btn-search {
    font-size: 14px;
  }

  .qna .question-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .qna .d-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .qna .profile-circle {
    width: 35px;
    height: 35px;
  }

  .qna .btn-send {
    padding: 5px 15px;
    font-size: 12px;
  }
  .qna .answer {
    flex: 1;
    text-align: left;
    margin-top: 30px;
  }
  .qna .answer-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.qna .profile-circle {
    margin-bottom: 5px; /* Adds spacing below image */
}

.qna .answer-text {
    width: 100%;
}
}

/*--------------------------------------------------------------
#  subcategory
--------------------------------------------------------------*/
    /* Subcategory Hero Section with Animation */
    .subcategory-hero-section {
      position: relative;
      height: 10vh;
      background: #00b9f2; /* Keeping the blue color */
      border-radius: 30px;
      overflow: hidden;
      margin: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    /* Overlay Content */
    .subcategory-hero-section .hero-overlay {
      position: relative;
      z-index: 2;
    }

    /* Title */
    .subcategory-hero-section.hero-title {
      font-size: 3rem;
      font-weight: bold;
    }

    /* Particle Container */
    .subcategory-hero-section #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
  

.subcategory-hero-section  .hero-title{
  font-size: 45px;
  color: white;
}

.subcategory-list   .col-lg-6{
  margin-right: 20px; /* Adjust the value as needed */
}



/* Overlay Effect */
.subcategory-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title Text */
.subcategory-hero-title {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

/* 📌 RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) { /* Large screens (lg) */
  .subcategory-hero-section {
      height: 10vh;
  }
  .subcategory-hero-title {
      font-size: 2.8rem;
  }
}

@media (max-width: 992px) { /* Medium screens (md) */
 .subcategory-hero-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) { /* Small screens (sm) */
 
  .subcategory-hero-title {
      font-size: 2rem;
  }
}

@media (max-width: 576px) { /* Extra small screens (xs) */
 
  .subcategory-hero-title {
      font-size: 1.6rem;
      padding: 0 10px; /* Avoid text overflow */
  }
}

/*----------------------------------------------------------------------------
subcategoey list
---------------------------------------------------------------------------*/

.subcategory-list {
  padding: 0px 0 50px;
}

/* Left Content Styling */
.subcategory-list .content {
  position: relative;
}

.subcategory-list .content h2{
  text-align: start;
  padding-bottom: 10px;
}
.subcategory-list .content p {
  text-align: start;
  margin-bottom: 10px; /* Adds spacing below heading */
}
.subcategory-list .text h1{
  font-size: 60px;
  margin-bottom: 20px;
}

@media (max-width: 1000px) {
  .subcategory-list .content-image img {
    margin-left: 0px !important;
}
}

.subcategory-list .content-image img {
  max-width: 100%;
  height: 300px;
  width: 350px;
  margin-left: 80px;
  object-fit: cover;
  border-radius: 30px; /* Adds rounded corners */
  margin-top: 7px;

}
/* Heading styling inside content */
.subcategory-list .content h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

/* Paragraph styling */
.subcategory-list .content p {
  font-size: 17px;
  color: #524e4e;
  text-align: justify;
  width: 90%;
  font-weight: 400;
  font-family: "Raleway", serif;
}



/* Image Styling */
#subcategory-list .col-lg-5 img {
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure the image scales responsively */
}



/* Responsive Design for Smaller Screens */
@media (max-width: 767px) {
  .subcategory-list .content {
    font-size: 15px; /* Adjust font size for better readability on small screens */
  }
  .subcategory-list .text h1 {
    font-size: 60px; /* Reduce font size for smaller screens */
    
 
    
  }

  .subcategory-list .col-lg-5, .subcategory-list .col-lg-7 {
    order: 1; /* Stacks content and image vertically on smaller screens */
  }

  .subcategory-list .img-fluid {
    border-radius: 10px;
  }

  .subcategory-list .content h3 {
    font-size: 24px; /* Reduce the heading size for mobile */
  }

  .subcategory-list .content p {
    font-size: 15px; /* Adjust the paragraph font size for readability */
  }
}

/*--------------------------------------------------------------
#  Gaming
--------------------------------------------------------------*/


/* Gaming Hero Section */
.gaming-hero-section {
  position: relative;


height: 82vh !important;
border-radius: 20px;
overflow: hidden;
margin: 20px ; /* Centers it horizontally */

}
.gaming-hero-section video {
  position: absolute;
  top: -20px; /* Move it slightly up */
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
}

/* Ensure responsiveness for very large screens */
@media (min-width: 1800px) {
.gaming-hero-section {
  max-width: 2000px; /* Slightly increase max-width for very large screens */
}
}

/* Video Background */
.gaming-hero-section .video-background {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures full coverage */
  border-radius: 30px; /* Apply the curve to the video */
}

/* 📌 Responsive Adjustments */
@media (max-width: 1200px) {  /* Large screens */
  .gaming-hero-section {
    height: 80vh;
  }
}

@media (max-width: 992px) { /* Medium screens */
  .gaming-hero-section {
    height: 70vh;
  }
}

@media (max-width: 768px) { /* Small screens */
  .gaming-hero-section {
    height: 60vh;
    border-radius: 20px;
  }
}

@media (max-width: 576px) { /* Extra small screens */
  .gaming-hero-section {
    height: 50vh;
    border-radius: 15px;
  }
}

.gaming-hero {
  position: relative;
  width: min(80%, calc(100% - 120px)); /* 60px left-right margin */
  max-width: 1500px;
  height: 90vh;
  background: url('/assets/img/nivano_banner.png') no-repeat center center/cover;
  border-radius: 20px;
  overflow: hidden;
  margin: 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 40px;
}


/* 🔥 Add a Black Overlay */
.gaming-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity (0.5 = 50% black shade) */
  border-radius: 20px;
}

/* Ensures text stays above the overlay */
.gaming-hero .container {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: 1200px;
}

.gaming-hero h2 {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  color: white;
}

.gaming-hero span {
  color: #FFD700; /* Highlighted gold color */
}

.gaming-hero p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* 🔹 Responsive for Mobile */
@media (max-width: 768px) {
  .gaming-hero h2 {
      font-size: 30px;
  }

  .gaming-hero p {
      font-size: 16px;
      width: 90%;
  }
}






/*----------------------------------------------------------------------------
gaming list
---------------------------------------------------------------------------*/

.gaming-list {
  padding: 0px 0 50px;
}

/* Left Content Styling */
.gaming-list .content {
  position: relative;
}

.gaming-list .content h2{
  text-align: start;
  padding-bottom: 10px;
}
.gaming-list .content p {
  text-align: start;
  margin-bottom: 10px; /* Adds spacing below heading */
}
.gaming-list .text h1{
  font-size: 60px;
  margin-bottom: 20px;
}

@media (max-width: 1000px) {
  .gaming-list .content-image img {
    margin-left: 0px !important;
}
}

.gaming-list .content-image img {
  max-width: 100%;
  height: 300px;
  width: 350px;
  object-fit: cover;
  border-radius: 30px; /* Adds rounded corners */
  margin-top: 7px;

}
/* Heading styling inside content */
.gaming-list .content h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

/* Paragraph styling */
.gaming-list .content p {
  font-size: 17px;
  color: #524e4e;
  text-align: justify;
  width: 90%;
  font-weight: 400;
  font-family: "Raleway", serif;
}



/* Image Styling */
#gaming-list .col-lg-5 img {
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure the image scales responsively */
}



/* Responsive Design for Smaller Screens */
@media (max-width: 767px) {
  .gaming-list .content {
    font-size: 15px; /* Adjust font size for better readability on small screens */
  }
  .gaming-list .text h1 {
    font-size: 60px; /* Reduce font size for smaller screens */
    
 
    
  }

  .gaming-list .col-lg-5, .subcategory-list .col-lg-7 {
    order: 1; /* Stacks content and image vertically on smaller screens */
  }

  .gaming-list .img-fluid {
    border-radius: 10px;
  }

  .gaming-list .content h3 {
    font-size: 24px; /* Reduce the heading size for mobile */
  }

  .gaming-list .content p {
    font-size: 15px; /* Adjust the paragraph font size for readability */
  }
}

/*--------------------------------------------------------------
gaming-sub-section
------------------------------------------------------------------*/
    /* about Hero Section with Animation */
    .gaming-sub-section {
      position: relative;
      height: 10vh;
      background: #00b9f2; /* Keeping the blue color */
      border-radius: 30px;
      overflow: hidden;
      margin: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    /* Overlay Content */
    .gaming-sub-section .hero-overlay {
      position: relative;
      z-index: 2;
    }

    /* Title */
    .gaming-sub-section .hero-title {
      font-size: 3rem;
      font-weight: bold;
    }

    /* Particle Container */
    .gaming-sub-section  #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
  

    .gaming-sub-section .hero-title{
  font-size: 45px;
  color: white;
}



/* Overlay Effect */
.gaming-sub-section-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title Text */
.gaming-sub-section-hero-title {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

/* 📌 RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) { /* Large screens (lg) */
  .gaming-sub-section-hero-section {
      height: 10vh;
  }
  .gaming-sub-section-hero-title {
      font-size: 2.8rem;
  }
}

@media (max-width: 992px) { /* Medium screens (md) */
  .gaming-sub-section-hero-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) { /* Small screens (sm) */
 
  .gaming-sub-section-hero-title {
      font-size: 2rem;
  }
}

@media (max-width: 576px) { /* Extra small screens (xs) */
 
  .gaming-sub-section-hero-title {
      font-size: 1.6rem;
      padding: 0 10px; /* Avoid text overflow */
  }
}


/*--------------------------------------------------------------
#  contact section
--------------------------------------------------------------*/

.contact-section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 10px;
  padding: 40px 0px;
  
  height: auto;
  width: 100%;
}

.contact-container {
  flex: 1;
  max-width: 45%;
  background: #F1F3F4;
  padding: 30px;
  border-radius: 10px;
  color: white;
}

.contact-container h2 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  color: black;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-family:"Raleway", serif;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background: white;
  font-size: 16px;
}

.send-btn {
  background-color: #00d1ff;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  width: 100%;
}

.map-container {
  flex: 1;
  max-width: 45%;
  height: 425px;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .contact-container, .map-container {
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}




/*--------------------------------------------------------------
# Services-Section
--------------------------------------------------------------*/
/* Ensure service items are vertically and horizontally centered */
.service-item {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically center */
  align-items: center; /* Horizontally center */
  height: 100%; /* Ensure the service item takes up full height of its parent */
  text-align: center; /* Ensure text is centered */
  padding: 20px; /* Optional: Add padding to create some space inside the item */

  border-radius: 30px; /* Optional: Round the corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.row > .col-lg-3:nth-child(1) .service-item {
  background: #00AEEF; /* Red */
}

.row > .col-lg-3:nth-child(2) .service-item {
  background: navy; /* Blue */
}

.row > .col-lg-3:nth-child(3) .service-item {
  background: #00AEEF; /* Green */
}

.row > .col-lg-3:nth-child(4) .service-item {
  background: navy; /* Yellow */
}


/* Styling the icon */
.service-item .icon {
  font-size: 40px; /* Increase icon size */
  margin-bottom: 20px; /* Space between icon and text */
  color: white; /* Icon color */
}
.section-service{
  overflow: hidden;
}
.section-service-content{
  margin: 0px 20px;
}
.section-service h2{
  font-size: 38px; /* Adjust font size */
  color: white;
  margin-bottom: 40px; /* Space between title and paragraph */
  text-align: center;
}

/* Styling the title */
.service-item h3 {
  font-size: 28px; /* Adjust font size */
  color: white;
  margin-bottom: 20px; /* Space between title and paragraph */
}

/* Styling the paragraph */
.service-item p {
  font-size: 18px; /* Adjust paragraph font size */
  margin-bottom: 20px; /* Space between paragraph and "Read more" link */
  color: white; /* Optional: Change the paragraph color */
 font-family:"Raleway", serif;
}

/* Styling the readmore link */
.service-item .readmore {
  font-size: 18px; /* Adjust font size for the link */
  color: white; /* Link color */
  text-decoration: none; /* Remove underline */
}

.service-item .readmore:hover {
  color: white;
}

/* Slow bottom-to-top animation */
.section-service-content {
  opacity: 0;
  transform: translateY(150px);
  animation: fadeUp 3s ease-in-out forwards; /* 3s slow-motion effect */
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Zoom effect on hover */
.service-item {
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.service-item:hover {
  transform: scale(1.1); /* Slight zoom */
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15); /* Add a shadow for a cool effect */
}







/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/* Container for the images and text */
.gallery .image-container {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
  border-radius: 30px;
 
}
.gallery {
  margin: 0 10px;
  overflow: hidden;

  
}
.gallery-section{
  margin: 0 10px;
  
  
}

/* Add zoom effect to images */
.gallery .image-container img {
  transition: transform 0.3s ease-in-out;
  object-fit: cover;
 
}

.styled-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px; /* Adjusted font size */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'IBM Plex Mono', monospace;
  line-height: 60px;
  
  /* Fill color inside letters */
  color: rgba(255, 255, 255, 0);
  
  /* Light white border around letters */
  -webkit-text-stroke: 0.9px rgb(255, 253, 253);
}
.cctv-space {
  margin-left: 40px; /* Adjust as needed */
}
.laser-space {
  margin-left: 30px; /* Adjust as needed */
}






.gallery .img1{
  width: 100%;
  height: 300px;
}
.gallery .img2{
  width: 100%;
  height: 300px;
}
.gallery .row>*{
  padding-left: 0 !important;
  padding-right: 5px !important;
}
/* Zoom on hover */
.gallery .image-container:hover img {
  transform: scale(1.1); /* Zoom effect */
}

/* Text inside the image */
.gallery .image-text {
  position: absolute;
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%);
  
  font-family: 'IBM Plex Mono', monospace;
  font-size: 40px; /* Adjust size as needed */
  font-weight: 700;
  padding: 10px;
  display: block; /* Make sure the text is always visible */
  opacity: 1; /* Fully visible text by default */
  transition: opacity 0.3s ease-in-out; /* Smooth transition for hover effect */

  /* Border text effect */
  color: transparent; /* Hide fill color */
  -webkit-text-stroke: 0.5px white; /* Add white outline */
  text-transform: uppercase; /* Optional: Makes text uppercase */
}

@media (max-width: 1200px) {
  .styled-text {
    font-size: 38px;
  }
}

@media (max-width: 300px) {
  .styled-text {
    font-size: 27px;
    line-height: 40px;
  }
}


/* Responsive: Each image takes full width on small devices */
@media (max-width: 768px) {
  .gallery .image-container {
      width: 100%;
  }
  .gallery .col-12 {
      padding-left: 0;
      padding-right: 0;
  }
}


/*--------------------------------------------------------------
# test hero
--------------------------------------------------------------*/


.test-hero-section {
  position: relative;
  height: 80vh;
  border-radius: 20px;
  overflow: hidden;
  margin: 20px;
}

.hero-background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
}


.test-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust opacity for the desired darkness */
  border-radius: 20px;
}


/* Overlay Effect */
.test-hero-section .hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title Text */
.test-hero-section .hero-title {
  color: white;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 45px;
}

/*  RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) { /* Large screens (lg) */
  .test-hero-section {
      height: 75vh;
  }
  .test-hero-section  .hero-title {
      font-size: 2.8rem;
  }
}

@media (max-width: 992px) { /* Medium screens (md) */
  .test-hero-section {
      height: 70vh;
  }
  .test-hero-section  .hero-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) { /* Small screens (sm) */
  .test-hero-section {
      height: 60vh;
      border-radius: 10px;
  }
  .test-hero-section  .hero-title {
      font-size: 2rem;
  }
}

@media (max-width: 576px) { /* Extra small screens (xs) */
  .test-hero-section {
      height: 50vh;
  }
  .test-hero-section .hero-title {
      font-size: 1.6rem;
      padding: 0 10px; /* Avoid text overflow */
  }
}


/*--------------------------------------------------------------
test-sub-section
------------------------------------------------------------------*/
    /* about Hero Section with Animation */
    .test-sub-section {
      position: relative;
      height: 10vh;
      background: #00b9f2; /* Keeping the blue color */
      border-radius: 30px;
      overflow: hidden;
      margin: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    /* Overlay Content */
    .test-sub-section .hero-overlay {
      position: relative;
      z-index: 2;
    }

    /* Title */
    .test-sub-section .hero-title {
      font-size: 3rem;
      font-weight: bold;
    }

    /* Particle Container */
    .test-sub-section  #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
  

    .test-sub-section .hero-title{
  font-size: 40px;
  color: white;
}



/* Overlay Effect */
.test-sub-section-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title Text */
.test-sub-section .hero-title {
  color: white;
  font-weight: bold;
  text-transform: capitalize;
  font-size: 45px;
}

/* 📌 RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) { /* Large screens (lg) */
  .test-sub-section .hero-section {
      height: 10vh;
  }
  .test-sub-section .hero-title {
      font-size: 2.8rem;
  }
}

@media (max-width: 992px) { /* Medium screens (md) */
  .test-sub-section .hero-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) { /* Small screens (sm) */
 
  .test-sub-section .hero-title {
      font-size: 2rem;
  }
}

@media (max-width: 576px) { /* Extra small screens (xs) */
 
  .test-sub-section .hero-title {
      font-size: 1.6rem;
      padding: 0 10px; /* Avoid text overflow */
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
  border-radius: 30px;
}
.testimonials{
  overflow: hidden;
  
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials  h2{
  font-size: 38px;
    color: #00a0e3;
    margin-bottom: 40px;
    text-align: center;
}
.testimonials  p{
  text-align: center;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  font-family: "Raleway", serif;
}



.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  font-family: "Raleway", serif;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #00a0e3;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #00a0e3;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials span{
  font-family: "Raleway", serif;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00a0e3;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# test-list
--------------------------------------------------------------*/
.test-list {
  padding: 0px 0 50px;
}

/* Left Content Styling */
.test-list .content {
  position: relative;
}

.test-list .content h2{
  text-align: start;
  padding-bottom: 10px;
}
.test-list .content p {
  text-align: start;
  margin-bottom: 10px; /* Adds spacing below heading */
}
.test-list .text h1{
  font-size: 60px;
  margin-bottom: 20px;
}

@media (max-width: 1000px) {
  .test-list .content-image img {
    margin-left: 0px !important;
}
}

.test-list .content-image img {
  max-width: 100%;
  height: 300px;
  width: 350px;
  margin-left: 70px;
  object-fit: cover;
  border-radius: 30px; /* Adds rounded corners */

}
/* Heading styling inside content */
.test-list .content h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

/* Paragraph styling */
.test-list .content p {
  font-size: 17px;
  color: #524e4e;
  text-align: justify;
  width: 90%;
  font-weight: 400;
  font-family: "Raleway", serif;
}



/* Image Styling */
#test-list .col-lg-5 img {
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure the image scales responsively */
  margin-top: 7px;
}



/* Responsive Design for Smaller Screens */
@media (max-width: 767px) {
  .test-list .content {
    font-size: 15px; /* Adjust font size for better readability on small screens */
  }
  .test-list .text h1 {
    font-size: 60px; /* Reduce font size for smaller screens */
    
 
    
  }

  .test-list .col-lg-5, .test-list .col-lg-7 {
    order: 1; /* Stacks content and image vertically on smaller screens */
  }

  .test-list .img-fluid {
    border-radius: 10px;
  }

  .test-list .content h3 {
    font-size: 24px; /* Reduce the heading size for mobile */
  }

  .test-list .content p {
    font-size: 15px; /* Adjust the paragraph font size for readability */
  }
}








/*--------------------------------------------------------------
#  client logo
--------------------------------------------------------------*/

/* Client Logo Section */
.client-logo-section {
  padding: 50px 0 0;
  overflow: hidden; /* Hide logos overflow */
}

/* Container for the logo items */
.logo-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  animation: scrollLogos 60s linear infinite;
  margin: 60px 0px;
  width: max-content;
  gap: 20px; /* This ensures exactly 20px gap between logos */
}

/* Each individual logo item */
.logo-item {
  flex-shrink: 0;
  /* Remove margin or padding here */
}

/* .logo-item img {
  width: 100%;
  height: 70px;
  object-fit: contain;
} */
.logo-item img {
  width: 250px;     /* or your desired size */
  height: auto;     /* keeps aspect ratio */
  object-fit: contain;
  display: block;   /* removes inline spacing issues */
}






/* Add a heading for the section */
.client-logo-section h2 {
  text-align: center; /* Center the text */
  font-size: 38px; /* Set the font size */
  padding: 10px; /* Add padding around the heading */
  color: #00a0e3; /* Blue text color */
  display: block;
  width: 400px;
  height: 67px;
  box-sizing: border-box;
  margin: auto;
  max-width: 100%;
}

/*--------------------------------------------------------------
# deals Section
--------------------------------------------------------------*/


.deals-hero-section {
  position: relative;
  /* width: 98%; */
  height: 80vh; /* Default height */
  background: url('../img/about-hero.png') no-repeat center center / cover;
  border-radius: 20px;
  overflow:hidden;
  margin: 20px;
}


/* Overlay Effect */
.deals-hero-section .hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title Text */
.deals-hero-section .hero-title {
  color: white;
  font-weight: bold;
  text-transform: capitalize;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) { /* Large screens (lg) */
  .deals-hero-section {
      height: 75vh;
  }
  .deals-hero-section .hero-title {
      font-size: 2.8rem;
  }
}

@media (max-width: 992px) { /* Medium screens (md) */
  .deals-hero-section {
      height: 70vh;
  }
  .deals-hero-section .hero-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) { /* Small screens (sm) */
  .deals-hero-section {
      height: 60vh;
      border-radius: 10px;
  }
  .deals-hero-section .hero-title {
      font-size: 2rem;
  }
}

@media (max-width: 576px) { /* Extra small screens (xs) */
  .deals-hero-section {
      height: 50vh;
  }
  .deals-hero-section .hero-title {
      font-size: 1.6rem;
      padding: 0 10px; /* Avoid text overflow */
  }
}

/*--------------------------------------------------------------
deals-sub-section
------------------------------------------------------------------*/
    /* deals Hero Section with Animation */
    .deals-sub-section {
      position: relative;
      height: 10vh;
      background: #00b9f2; /* Keeping the blue color */
      border-radius: 30px;
      overflow: hidden;
      margin: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
    }

    /* Overlay Content */
    .deals-sub-section .hero-overlay {
      position: relative;
      z-index: 2;
    }

    /* Title */
    .deals-sub-section .hero-title {
      font-size: 3rem;
      font-weight: bold;
    }

    /* Particle Container */
    .deals-sub-section  #particles-js {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
  

    .deals-sub-section .hero-title{
  font-size: 45px;
  color: white;
  font-family: 'IBM Plex Mono', monospace;
}



/* Overlay Effect */
.deals-sub-section-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title Text */
.deals-sub-section-hero-title {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

/* 📌 RESPONSIVE ADJUSTMENTS */
@media (max-width: 1200px) { /* Large screens (lg) */
  .deals-sub-section-hero-section {
      height: 10vh;
  }
  .deals-sub-section-hero-title {
      font-size: 2.8rem;
  }
}

@media (max-width: 992px) { /* Medium screens (md) */
  .deals-sub-section-hero-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) { /* Small screens (sm) */
 
  .deals-sub-section-hero-title {
      font-size: 2rem;
  }
}

@media (max-width: 576px) { /* Extra small screens (xs) */
 
  .deals-sub-section-hero-title {
      font-size: 1.6rem;
      padding: 0 10px; /* Avoid text overflow */
  }
}


/*-----------------------------------------------------
deals-list
-----------------------------------------------------*/


.deals-list {
  padding: 0px 0 50px;
}

/* Left Content Styling */
.deals-list .content {
  position: relative;
}

.deals-list .content h2{
  text-align: start;
  margin-bottom: 40px; /* Adds spacing below heading */
}
.deals-list .content p {
  text-align: start;
  margin-bottom: 10px; /* Adds spacing below heading */
}
.deals-list .text h1{
  padding-bottom: 70px;
  font-size: 60px;
}

.deals-list .content-image img {
  max-width: 100%;
  height: 300px;
  width: 350px;
  margin-left: 80px;
  object-fit: cover;
  border-radius: 30px; /* Adds rounded corners */
  margin-top: 7px;

}


/* Heading styling inside content */
.deals-list .content h3 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

/* Paragraph styling */
.deals-list .content p {
  font-size: 17px;
  color: #524e4e;
  text-align: justify;
  width: 90%;
  font-weight: 400;
  font-family: "Raleway", serif;
}


@media (max-width: 1000px) {
#deals-list .col-lg-5 img {
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure the image scales responsively */
  margin-left: 0px !important;
}
}


/* Responsive Design for Smaller Screens */
@media (max-width: 767px) {
  .deals-list .content {
    padding: 20px;
    font-size: 15px; /* Adjust font size for better readability on small screens */
  }
  .deals-list .content-image img {
    
    margin-left: 0px !important;
  }

  .deals-list .img-fluid {
    border-radius: 10px;
  }

  .deals-list .content h3 {
    font-size: 24px; /* Reduce the heading size for mobile */
  }

  .deals-list .content p {
    font-size: 15px; /* Adjust the paragraph font size for readability */
  }
}

.deals-list .content p strong{
  background-color: #fffae6;
  color: #d33100;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 4px;
}

/*--------------------------------------------------------------
#  Footer
--------------------------------------------------------------*/
.footer-outer {
  background-color: #c8c9ca;
  color: #fff;
 padding-top: 60px;
 
}
.footer-outer .row {
  border-bottom: 2px solid rgb(158, 155, 155); /* White color for the horizontal line */
  padding-top: 30px;  /* Space at the top of each row */
  padding-bottom: 30px;  /* Space at the bottom of each row */
}
.footer-outer .bold-text{
  font-weight: bold;
}
.footer-heading {
  font-size: 26px;
  margin-bottom: 22px;
  text-transform: capitalize;
  color: rgb(29, 28, 28);
  transition: all 0.3s ease;
  
}
.footer-outer img{
  margin-right: 10px;
}


/* Box shadow for footer sections */
.footer-laptops,
.footer-desktops,
.footer-servers-workstations,
.footer-projectors,
.footer-printers-scanners,
.footer-networking-products,
.footer-cctv-surveillance,
.footer-computer-components,
.footer-rental-services,
.footer-gaming-zone,
.footer-about-us,
.footer-contact-us,
.footer-support-services,
.footer-deals-offers,
.footer-top-brands,
.footer-blog,
.footer-address,
.footer-map{
    
    padding: 20px;
  margin-bottom: 20px;
}



/* Styling for the list items */
.footer-list {
  list-style-type: none;
  padding-left: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list li a {
  color: rgb(36, 35, 35);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
  font-family: "calibri",serif;
}
.footer-list li a i {
  margin-right: 8px; /* Adjust this value as needed */
}

.footer-list li:hover a {
 
  color: rgb(70, 69, 69);  /* Set the text color to white */
}


.footer-list li:hover i {
  color: #13aedd;  /* Change the icon color to blue */
}

.footer-address p{
  color: rgb(36, 35, 35);
  text-decoration: none;
  font-size: 18px;
  font-family: "calibri",serif;
}
.footer-address p:hover  {
 
  color: grey;  /* Set the text color to white */
}


.footer-address p:hover i {
  color: #13aedd;  /* Change the icon color to blue */
}

.footer-address p i {
  margin-right: 8px; /* Adjust this value as needed */
}

.footer-outer .subcategory-list{
  padding: 0px;
}
.footer-outer .subcategory-list li{
  list-style: none;
}
/* Styling for address and map */


.footer-gaming-zone .subcategory-list {
  list-style-type: none;
  padding-left: 20px;
  margin: 20px 0 0;
 
}

.footer-gaming-zone .subcategory-list li {
  margin-bottom: 8px;
}

.footer-gaming-zone .subcategory-list li a {
  color: #ddd;
  font-size: 18px;
}

.footer-gaming-zone .subcategory-list li a:hover {
  color: #fff; /* Highlight on hover for subcategories */
}

.google-map {
  margin-top: 20px;
}


/* Copyright Section Styling */
.footer-copyright {

  color: rgb(73, 71, 71);
  padding: 20px 0;
  text-align: center;
 
}
.footer-copyright p{
  margin-bottom: 0;
  font-family: "calibri",serif;
}

.footer-copyright a {
  color: black;
  text-decoration: none;
  font-weight: bold;
}

.footer-copyright a:hover {
  color: #00b9f2; 
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .footer-outer {
      padding: 20px 0;
  }

  .footer-heading {
      font-size: 18px;
  }

  .footer-list li a {
      font-size: 17px;
  }

  .google-map iframe {
      height: 150px;
  }

  .footer-copyright {
      font-size: 16px;
  }
}


/*--------------------------------------------------------------
#  Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {
  .text-section h1 {
    font-size: 36px; /* Adjust heading size */
  }

  .text-section p {
    font-size: 20px; /* Adjust paragraph size */
  }

  .search-btn,
  .go-btn {
    width: 100%; /* Full-width on mobile */
  }

  .icons {
    bottom: 15px; /* Adjust icon position on mobile */
    right: 20px;
  }
}

@media (max-width: 480px) {
  .text-section h1 {
    font-size: 28px; /* Further decrease heading size on small devices */
  }

  .text-section p {
    font-size: 18px; /* Further decrease paragraph size */
  }

  .search-btn,
  .go-btn {
    width: 90%; /* More responsive button size */
  }

  .icons {
    bottom: 10px;
    right: 10px; /* Ensure icons don't overlap on smaller screens */
  }
}


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

  
  .phone-no {
    margin-left: 0;
  }
  .service .content {
    width: 100%;
  }
  .service .content p {
    
    width: 100% !important;
  }
  .search-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
  }
  .client-logo-section h2 {
    
    font-size: 30px;
   
  }
  .search-btn
 {
    width: 100%;
  }
.go-btn{
  display: block;
  margin: auto;
}
.mobile-nav-active .mobile-nav-toggle {

  right: 100px;
  max-width: 100%;
  margin-right: 50px;

}


.text-section {
  
  width: 400px;
 
  max-width: 100%;
}
}

@media (max-width: 768px) {
.text-section h1 {
  font-size: 37px;}
}



@media (max-width: 450px) {
  .text-section h1 {
    font-size: 35px;
  }
  .text-section p {
    font-size: 25px;
  }
  
  
  .content-main-section .content {
    
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 10;
    width: 390px;
    max-width: 100%;

}
.icons{
  bottom: 0px;
    right: 20px;
}
.service .overlay {
  position: absolute;
  bottom: -30px !important;
}
@media (max-width: 767.98px) {
  .service .overlay {
    bottom: -80px !important; /* Move it further down only on small screens */
  }
}
.mobile-nav-toggle {
  margin-left: 10px;
  margin-right: 10px;
}

}

/*----------------------------------------------------------------------
FAQ section
----------------------------------------------------------------------*/
.faq-section {
  width: auto;
  margin: auto;
  padding: 20px;
}


/* Search Box */
.faq-search {
  position: relative;
  margin-bottom: 10px;
  

}

.faq-search input {
  width: 100%;
  padding: 10px 40px 10px 10px; /* Extra space on the right for the button */
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

/* Button Inside Input (Right-Aligned) */
.faq-search button {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #00b9f2;
  border:#00b9f2 ;
  border-radius: 10px;
  font-size: 15px;
  width:90px;
  cursor: pointer;
  color: white;
  padding: 5px;
}

.faq-search button:hover {
  color: #000;
}


.faq-search input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}



/* Ask a Question Form */
.faq-form {
  margin-top: 30px;
  padding: 20px;
  background: #00b9f2;
  border-radius: 5px;
  
  
}

.faq-form h3 {
  margin-bottom: 15px;
}

.faq-form input,
.faq-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.faq-form button {
  width: 100%;
  padding: 10px;
  background: #00007f;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.faq-form button:hover {
  background: black;
}


.notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #4BB543; /* Green */
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-weight: bold;
  transition: opacity 0.3s ease-in-out;
}



