   * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
 
    }
    
/* top bar */
  .topbar ul {
           list-style-type: none;
           margin: 0;
           padding-right: 20px;
           overflow: hidden;
           background-color: #0d77b6;
           color: #fdfdfc;
     
       }

      .topbarli {
           float: right;
       
       }

       .topbar a {
           display: block;
           color: #fdfdfc;
           float: right;
           padding: 10px 10px;
           text-decoration: none;
               margin-right: 10px;
       }

      .topbar li :hover{
        color: #e17d3e;  
      } 

      .topbar i {
        margin-right: 8px;
      }
      @media (max-width: 768px) {
        .topbar {
          display: none;
        }
      }
    

    /* Main Header Styles */
    .main-header {
      background-color: #fdfdfc;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      width: 100%;
      z-index: 999;
      flex-wrap: wrap;
    }

    .logo img {
      height: 60px;
    }
/* General Reset for Navbar */
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Nav items */
.main-nav li {
  position: relative;
  margin-left: 20px;
}

/* Nav links */
.main-nav a {
  color: #000;
  font-weight: 500;
  padding: 10px 15px;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

/* Hover and focus states */
.main-nav a:hover,
.main-nav a:focus {
  color: #e17d3e;
}

/* Active state (add .active manually in HTML or with JS) */
.main-nav a.active {
  color: #fdfdfc;
  font-weight: 600;
  border-bottom: 2px solid #e17d3e;
}

/* Dropdown menu */
.main-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background-color:#fdfdfc;
  border: 1px solid #000;
  border-radius: 0.25rem;
  min-width: 160px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Dropdown menu items */
.main-nav .dropdown-menu li a {
  padding: 10px 20px;
  color: #000;
  white-space: nowrap;
}

/* Dropdown hover effect */
.main-nav .dropdown-menu li a:hover {
   
  color: #e17d3e;
}

/* Show dropdown on hover */
.main-nav .dropdown:hover .dropdown-menu {
  display: block;
}

 
/* Responsive */
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    display: none;
    width: 100%;
    background: #fff;
    padding: 1rem;
  }

  .main-nav ul.active {
    display: flex;
  }
 

  .main-nav li {
    margin: 10px 0;
  }

  .main-nav .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
  }

  .main-nav .dropdown:hover .dropdown-menu {
    display: block;
  }
}

    /* Hamburger Menu */
    #hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    #hamburger div {
      width: 25px;
      height: 3px;
      background-color: #000;
      margin: 4px 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .main-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .main-nav ul {
        display: none;
        flex-direction: column;
        background-color: #0e9151;
        position: absolute;
        top: 70px;
        right: 5%;
        width: 200px;
        padding: 10px;
        border-radius: 8px;
      }

      .main-nav ul.active {
        display: flex;
      }

      #hamburger {
        display: flex;
        margin-left: auto;
        margin-top: -50px;
        margin-bottom: 30px;
      }
    }
    /* main header ending */

    /* section */
       .header{
        padding: 60px;
        background-color:  #0095D9;
        color: #fdfdfc; 
      }
      .header h1{
        font-size: 35px;
        margin-bottom: 10px;
      }
      .head{
        font-size: 20px;
      }
      .head a{
        text-decoration: none;
        color: #fdfdfc;
      }
      .head :hover{
        color: #e17d3e;
      }
    /* section end */

    /* content */
  .con{
    background-color: #f9f9f9;
    margin: 10%; 
  }
  .con h1{   
    background-color: #fff3e6;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    color: #f26522;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 30px;
  }
  .con h2{
    padding: 8px 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .con p{
    margin-bottom: 20px;
    margin-left: 20px;
  }
 .custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
 
}
 
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.column {
  flex: 1;
  min-width: 200px;
  background-color: #0d77b6;
  padding: 40px 30px 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  color: #fdfdfc;
}

.icon img{ 
  width: 30%;
  border-radius: 50px;
}
.column h1{
  margin-inline: auto;
}
.column {
    position: relative; /* Needed to contain the absolute ::after */
    overflow: hidden;   /* Optional: ensures ::after doesn't spill out */
}

.column::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: #f26522;
    transition: 0.5s;
    opacity: 0;
    z-index: 1; /* Put it below content */
}

.column:hover::after {
    height: 100%;
    opacity: 1;
}

.column img, h2,p {
    position: relative;
    z-index: 2; /* Ensure it shows above the overlay */
}


/* stats */
.stats {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.stats h4 {
  font-size: 18px;
  color: #0e9151;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.stats h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 40px;
}

.stats .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.column1 {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column1 span {
  display: block;
  font-size: 40px;
  font-weight: bold;
  color: #0e9151;
  margin-bottom: 10px;
}

.column1 p {
  font-size: 25px;
  color: #000;
  margin: 0;
}

.column1:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
 

/* path img */
.newsletter-area-four {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: white; /* optional fallback color */
    text-align: center;
}

.newsletter-inner {
    position: relative;
    z-index: 1;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Background Container */
.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

/* Image or SVG Shape */
.newsletter-shape,
.newsletter-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    width: 80%;
    height: auto;
    max-width: 100%;
    fill: #0d77b6;
    pointer-events: none; /* prevent interaction */
}

/* Content Wrapper */
.newsletter-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0px;
    text-align: left;
    margin-left: 10%;
}

/* Title Style */
.newsletter-content .title {
    font-size: 24px;
    font-weight: 700;
    color: #fdfdfc;
    margin-bottom: 25px;
}

/* Contact Section Inside Newsletter */
.newsletter-contact { 
    text-align: right;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-right: -40%;
}

/* Icon Style */
.newsletter-contact .icon i {
    font-size: 40px;
    color: #007bff;
}
 

/* Text Info */
.newsletter-contact .content span {
    font-weight: bold;
    display: block;
    color: #fdfdfc;
}

.newsletter-contact .content a {
    font-size: 20px;
    font-weight: 600;
    color: #fdfdfc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.newsletter-contact .content a:hover {
    color: #e17d3e;
}

@media (max-width: 768px) {
    .newsletter-inner {
        padding: 40px 20px;
       
    }

    .newsletter-bg {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .newsletter-shape,
    .newsletter-svg {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 100%;
        object-fit: cover;
        margin: 10px;
    }

    .newsletter-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 0;
        text-align: center;
        padding: 20px;
    }

    .newsletter-contact {
        margin-left: 40px;
        margin-right: 0;
        justify-content: center;
    }

    .newsletter-contact .icon i {
        font-size: 30px;
    }

    .newsletter-contact .content a {
        font-size: 18px;
    }

    .newsletter-content .title {
        font-size: 20px;
        text-align: center;
        margin-top: 30px;
    }
}
/* path end */


    /* footer start */
  footer {
  background-color: #0d77b6;
  color: white;
  padding: 40px 20px;
  letter-spacing: 0.5px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-about,
.footer-links,
.footer-products,
.footer-support {
  flex: 1 1 200px;
  margin: 10px;
  padding: 10px;
}

.footer-about p,
.footer-support p {
  margin-bottom: 10px;
  line-height: 1.6;
}

h2, h3 {
 
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.footer-links ul,
.footer-products ul {
  list-style: none;
  padding: 0;
}
 
.footer-links a,
.footer-products a,
.footer-support a{
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 8px;
}

.footer-about a {
    color: #fdfdfc;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 8px;
}

.footer-links a:hover,
.footer-products a:hover,
.footer-support a:hover,
.footer-about a:hover {
  text-decoration: underline;
  color: #e17d3e;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  color: white; 
  padding: 8px;
  border-radius: 30%;
  font-size: 18px;
  transition: background-color 0.3s ease;
}
 
/* footer end */

/* product page */
 .product {
    background-color: #eaf2f9;
    text-align: center;
    padding: 80px 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* Category title */
.title1 h4 {
    background-color: #fff3e6;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    color: #f26522;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Main heading */
.title1 p {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 40px;
}

/* Cards container */
.product .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Individual product card */
.column2 {
    background: #fdfdfc;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    width: 300px;
    overflow: hidden;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 0;
}

/* Hover effect */
.column2:hover {
    transform: translateY(-10px) scale(1.02);
    background-color: #f55a00;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Optional: text and link color change for better contrast on hover */
.column2:hover h4,
.column2:hover a p {
    color: #fff;
}

.column2:hover a p::after {
    color: #fff;
}

/* Image container */
.column2 img {
    width: 90%;
    margin-top: 20px;
    padding: 30px;
    background-color: #fdfdfc;
    border-bottom: 1px solid #f0f0f0;
    height: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Slight zoom effect on image */
.column2:hover img {
    transform: scale(1.05);
}

/* Product name */
.column2 h4 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: #333;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Read More link */
.column2 a p {
    color: #25D366;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.column2 a p::after {
    content: '➜';
    font-size: 14px;
    transition: color 0.3s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
    .product {
        padding: 40px 15px;
    }

    .title1 h4 {
        font-size: 14px;
        padding: 6px 15px;
        margin-bottom: 8px;
    }

    .title1 p {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .product .row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .column2 {
        width: 100%;
        max-width: 90%;
    }

    .column2 img {
        height: 200px;
        padding: 20px;
    }

    .column2 h4 {
        font-size: 18px;
    }

    .column2 a p {
        font-size: 14px;
    }

    .column2 a p::after {
        font-size: 12px;
    }
}

/* contact page*/
 
/* Section Layout */
.contact-form{
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Column Styling */
.column3 {
    flex: 1 1 45%;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.column3 h1,
.column3 h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.column3 p {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}
.contact-item {
  display: flex;
  align-items: center; /* Align icon and text vertically */
  gap: 15px;
  margin: 30px 0;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background-color: #f1f5ff; /* soft blue background */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); /* light shadow */
}

.icon-circle i {
  color: #25D366; /* orange icon */
  font-size: 22px;
}

.contact-item span {
  font-size: 16px;
  color: #333;
  line-height: 2;
  display: inline-block;
  max-width: calc(100% - 70px);
}
 .contact-item p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  display: inline-block;
  max-width: calc(100% - 70px);
}
.contact-item a {
  display: inline-block; /* Needed for padding and background to apply */
  text-decoration: none;
  color: #333;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-item a:hover {
  color: #e17d3e;  
  text-decoration: none;
}

/* Barline divider */
.barline {
  height: 1px;
  background-color: #ddd;
  margin: 10px 0;
  width: 100%;
}


/* Form Styling */
.quote-form {
    width: 100%;
}

form input,
form textarea {
    width: 100%;
    padding: 18px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    box-sizing: border-box;
}

form textarea {
    height: 120px;
    resize: none;
}

.button {
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.button:hover {
    background-color: #f55a00;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .row {
        flex-direction: column;
    }

    .column3 {
        flex: 1 1 100%;
        padding: 20px;
    }

    form input,
    form textarea {
        font-size: 14px;
    }

    .button {
        width: 100%;
        padding: 14px;
    }
}

/* home page */

 .images2 {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: 10px;
  overflow: hidden;
}

.images2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.images2-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 0 20px;
  width: 100%;
}

.images2 h3 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
}

.images2 p {
  margin-top: 10px;
  font-size: 2rem;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .images2 h3 {
    font-size: 2rem;
  }

  .images2 p {
    font-size: 0.95rem;
  }

  .images2-text {
    padding: 0 10px;
  }
    .images2 {
    height:50vh; /* Reduce height for smaller screens */
  }
 
}

/* ----------- Main Section Layout ----------- */
.content2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  background-color: white;
  gap: 30px;
   
}

/* ----------- Image Block ----------- */
.images1 {
  position: relative;
  flex: 1 1 45%;
  max-width: 600px;
}

.images1 img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: block;
}

/* ----------- Hexagon Badge ----------- */
.hexagon {
  position: absolute;
  bottom: 20px;
  left: 70%;
  width: 150px;
  height: 130px;
  background-color: #f55a00;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  padding: 10px;
  z-index: 2;
}

.hex-content2 div:first-child {
  font-size: 28px;
}

/* ----------- Text Container ----------- */
.container1 {
  flex: 1 1 50%;
  min-width: 300px;
  font-size: 17px;
  line-height: 1.6;
  color: #676767;
  padding: 20px;
  font-family: sans-serif;
}

.container1 h4 {
  display: inline-block;
  background-color: #e17d3e;
  color: white;
  padding: 5px 15px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.container1 h2 {
  margin-top: 10px;
  color: #1f1f1f;
}

.container1 .location {
  display: inline-block;
  margin-top: 20px;
  color: #0e9151;
  font-weight: bold;
  text-decoration: none;
}

.container1 .location:hover {
  text-decoration: underline;
  color: #e17d3e;
}

/* ----------- Read More Button ----------- */
.read-more-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  background-color: white;
  color: #0e9151;
  border: 2px solid #0e9151;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.read-more-btn:hover {
  background-color: #e17d3e;
  color: white;
}

.read-more-btn a::before {
  content: '➜ ';
}

.read-more-btn a {
  text-decoration: none;
  color: inherit;
}

/* ----------- Mobile Responsive ----------- */
@media screen and (max-width: 768px) {
  .content2 {
    flex-direction: column;
    padding: 20px;
  }

  .images1,
  .container1 {
    width: 100%;
    padding: 10px;
  }

  .hexagon {
    left: 85%;
    transform: translateX(-50%);
    width: 120px;
    height: 100px;
    font-size: 12px;
  }

  .hex-content2 div:first-child {
    font-size: 22px;
  }

  .main-title {
    font-size: 28px;
  }

  .read-more-btn {
    justify-content: center;
  }
}

  .section1 {
  background: #0d77b6;
  background-size: cover;
  color: white;
  padding: 60px 20px;
}

.container4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.left-content1 {
  flex: 1 1 45%;
  min-width: 300px;
}

.right-content1 {
  flex: 1 1 45%;
  min-width: 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
 
.subtitle {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.main-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.left-content1 p {
   font-size:17px;
  line-height: 1.6;
  margin-left: -10px;
 
}

.info-card {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  padding: 12px 20px;
  background: transparent;
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 200px;
  justify-content: center;
}

.check {
  font-size: 20px;
  color: white;
}

/* Mobile Version */
@media (max-width: 768px) {
  .container4 {
    flex-direction: column;
    align-items: center;
  }

  .left-content1, .right-content1 {
    flex: 1 1 100%;
    text-align: center;
  }

  .main-title {
    font-size: 28px;
  }

  .info-card {
    width: 80%;
    margin-right: 20px;
  }
}


/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  top: 50%;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: small;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: right 0.3s ease, width 0.3s ease;
 
}
.whatsapp-float:hover
{
  background-color: #e17d3e;
}




.whatsapp-float span {
  display: none;
  margin-left: 20px;
  font-size: 16px;
  color: white;
  white-space: nowrap;
}



.whatsapp-float i {
  animation: rotate-whatsapp 2s linear infinite;
}


/* Call Floating Button - Top Left */
.call-float {
  position: fixed;
  top: 50%;
  left: 20px;
  background-color: #25D366;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: small;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: left 0.3s ease, width 0.3s ease, background-color 0.3s ease;
}




.call-float span {
  display: none;
  margin-left: 10px;
  font-size: 16px;
  color: white;
  white-space: nowrap;
}
.call-float:hover
{
  background-color: #e17d3e;
}


/* Optional: Show span text on hover */
/* //rotare section icond */
@keyframes rotate-whatsapp {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotate-call {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.call-float i {
  animation: rotate-call 2s linear infinite;
}
/* Mobile Responsive Styles with Rotation */
@media screen and (max-width: 768px) {
  .whatsapp-float,
  .call-float {
    width: 30px;
    height: 30px;
    font-size: 20px;
    border-radius: 50%;
    bottom: 46%;
    top: auto;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  }

  .whatsapp-float {
    right: 20px;
  }

  .call-float {
    left: 10px;
  }

  .whatsapp-float span,
  .call-float span {
    display: none; /* Hide label text on mobile */
  }

  .whatsapp-float i,
  .call-float i {
     font-size: small;
    animation: rotate-mobile 2s linear infinite;
  }
}

/* Separate rotation keyframes for mobile (optional, same as desktop) */
@keyframes rotate-mobile {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/* slide show */
.carousel {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel .container-fluid {
  padding: 0;
}

.carousel-item {
  position: relative;
  height: 100vh;
}

.carousel-img {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* <-- was cover */
  object-position: center;
  top: 0;
  right: 0;
  left: 0;
  bottom: auto;
}

/* Dark overlay */
.carousel-img::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.carousel-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}

.carousel-text h3 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.carousel-text p {
  font-size: 1.2rem;
}

 

@media (max-width: 576px) {
  .carousel {
    height: 100%;
  }

  .carousel-item {
    height: 100%;
  }

  .carousel-text h3 {
    font-size: 1.5rem;
  }

  .carousel-text p {
    font-size: 0.9rem;
  }
}

/* scroll */

    .slider-container {
      width: 100%;
      overflow: hidden;
      background: #fff;
      padding: 40px 0;
      margin-top: 20px;
    }

    .slider-track {
      display: flex;
      width: fit-content;
      animation: scrollLoop 20s linear infinite;
    }

    .card {
      flex: 0 0 auto;
      width: 200px;
      height: 120px;
      margin-right: 20px; /* consistent spacing */
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
    }

    .card img {
      width: 100%;
      height: 100px;
      object-fit: cover;
      border-bottom: 1px solid #ddd;
    }

    @keyframes scrollLoop {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* Responsive tweaks */
    @media (max-width: 768px) {
      .card {
        width: 150px;
        height: 100px;
      }

      .slider-track {
        animation-duration: 30s;
      }

      .card img {
        height: 80px;
      }
    }


/* START STATE — move only, DO NOT HIDE */
.animation-left {
  transform: translateX(-60px);
  opacity: 0;
}

.animation-right {
  transform: translateX(60px);
  opacity: 0;
}

/* WHEN ACTIVE */
.animate-show-left,
.animate-show-right {
  opacity: 1 !important;
  transform: translateX(0) !important;
  transition: all .8s ease-out;
}

    @media (max-width: 480px) {
      .card {
        width: 120px;
        height: 90px;
      }

      .slider-track {
        animation-duration: 40s;
      }

      .card img {
        height: 70px;
      }
    }
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 1;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

 
@keyframes slideInLeft {
  from {
    opacity: 1;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 1;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === Testimonial Section Styling === */
.testimonial1 {
  background: #f9f9f9;
  padding: 60px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container3 {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-header3 {
  text-align: center;
  margin-bottom: 50px;
}

.section-header3 p {
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.section-header3 h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

 
.testimonial1-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}


/* Testimonial Text */
.testimonial1-item p {
  font-size: 16px;
  color: white;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.testimonial1-item h2 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin: 0;
}

.testimonial1-item h3 {
  font-size: 14px;
  color: black;
  margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-header3 h2 {
    font-size: 26px;
  }

  .testimonial1-item {
    padding: 20px 15px;
    max-width: 90%;
    min-height: 340px;
  }

  .testimonial1-item p {
    font-size: 15px;
  }

  .testimonial1-item h2 {
    font-size: 18px;
  }

  .testimonial1-item h3 {
    font-size: 13px;
  }
}
/* Testimonial Section */
.testimonial1 {
  background: #f8f9fa;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.container3 {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Section Header */
.section-header3 p {
  color: #0d77b6;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-header3 h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 50px;
}

/* Owl Carousel Item */
.owl-carousel .testimonial1-item {
  background: #0d77b6;
  border-radius: 15px;
  padding: 35px 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  min-height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.owl-carousel .testimonial1-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.testimonial1-item img {
  width: 120px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto 20px auto;
  background: #fff;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.testimonial1-item p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial1-item h2 {
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial1-item h3 {
  font-size: 1rem;
  color: #d1e7ff;
  font-weight: 400;
}

/* Owl Navigation Buttons */
.owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: #0d77b6;
  color: #fff;
  border: none;
  font-size: 1.8rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  pointer-events: all;
  transition: all 0.3s ease;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: #095a87;
  transform: scale(1.1);
}

/* Hide Owl Dots */
.owl-dots {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header3 h2 {
    font-size: 1.6rem;
  }

  .testimonial1-item {
    padding: 25px 15px;
    min-height: 340px;
  }

  .testimonial1-item img {
    width: 75px;
    height: 75px;
  }

  .testimonial1-item p {
    font-size: 0.95rem;
  }

  .owl-nav button.owl-prev,
  .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

/* Owl Carousel Nav Buttons */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  pointer-events: none; /* Prevent nav overlap issues */
}

.owl-nav button {
  background: rgba(255, 255, 255, 0.85);
  color: #0d77b6;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto; /* Re-enable click */
}

.owl-nav button:hover {
  background: #0d77b6;
  color: #fff;
  transform: scale(1.1);
}

.owl-nav button span {
  font-size: 30px;
  line-height: 0;
}

.owl-nav.disabled {
  display: none !important;
}
/* =======================
   LAPTOPS SECTION
======================= */

.laptops-section {
  text-align: center;
  padding: 60px 20px;
  background: #f8f9fa;
  font-family: "Poppins", sans-serif;
}

.laptops-section h2 {
  font-size: 32px;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.laptops-section p {
  font-size: 15px;
  color: #666;
  margin-bottom: 40px;
}

/* =======================
   LAPTOP CARD GRID
======================= */
.laptops-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

/* =======================
   LAPTOP CARD
======================= */
.laptop-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.laptop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* =======================
   IMAGES
======================= */
.laptop-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.laptop-card:hover img {
  transform: scale(1.05);
}

/* =======================
   TEXT & SPECS
======================= */
.laptop-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.specs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #555;
  font-size: 14px;
  margin-bottom: 15px;
}

.specs span {
  display: block;
}

/* =======================
   BUY BUTTON
======================= */
.buy-btn {
  background: #25D366 ;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buy-btn:hover {
  background: #e17d3e;
  transform: scale(1.05);
}

/* =======================
   RESPONSIVE DESIGN
======================= */
@media (max-width: 992px) {
  .laptops-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .laptops-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .laptop-card img {
    height: 160px;
  }

  .buy-btn {
    width: 100%;
    padding: 12px 0;
  }
}

  /* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popup {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-align: left;
  animation: fadeIn 0.3s ease-in-out;
}

/* Inputs */
.popup form input {
  width: 100%;
  padding: 10px;
  margin: 8px 0 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

/* Buttons */
.popup-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.submit-btn, .close-btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
}

.submit-btn {
  background-color: #007bff;
  color: white;
}

.close-btn {
  background-color: #dc3545;
  color: white;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* Mobile-friendly */
@media (max-width: 600px) {
  .popup {
    width: 95%;
    padding: 20px;
  }
}

.laptops-section {
  text-align: center;
  padding: 40px 20px;
  background: #fafafa;
}

.laptops-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #222;
}

.laptops-section p {
  color: #555;
  margin-bottom: 30px;
}

.laptops-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  justify-content: center;
  max-width: 1100px;
  margin: auto;
}

.laptop-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.laptop-card:hover {
  transform: translateY(-5px);
}

.laptop-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 15px;
}

.laptop-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #222;
}

.specs span {
  display: block;
  color: #666;
  font-size: 14px;
}

.service-btn {
  margin-top: 12px;
  background-color: #25D366 ;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.service-btn:hover {
  background-color: #e17d3e;
}

/* Popup */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  text-align: left;
}

.popup h2 {
  text-align: center;
  margin-bottom: 15px;
  color: #333;
}

.popup label {
  display: block;
  margin-top: 10px;
  color: #555;
}

.popup input,
.popup select {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-top: 5px;
}

.popup-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.submit-btn {
  background: #28a745;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.close-btn {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .laptops-container {
    grid-template-columns: 1fr;
  }
  .popup {
    width: 95%;
  }
}
/* ===== Popup Overlay (background) ===== */
.popup-overlay {
  display: none; /* hidden by default */
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* dark transparent background */
  justify-content: center; 
  align-items: center;
  z-index: 1000;
}

/* ===== Popup Box ===== */
.popup {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  animation: popupFade 0.3s ease;
}

/* ===== Popup Animation ===== */
@keyframes popupFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Heading ===== */
.popup h2 {
  margin-bottom: 15px;
  color: #222;
  font-size: 22px;
  font-weight: 600;
}

/* ===== Laptop Name Input (readonly) ===== */
.popup input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 16px;
  background-color: #f8f8f8;
}

/* ===== Accessory List ===== */
.accessory-list {
  text-align: left;
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 15px;
  padding: 8px 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fafafa;
}

/* ===== Individual Checkbox Items ===== */
.accessory-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #333;
}

.accessory-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0078d7; /* modern browsers */
}

/* ===== Buttons Container ===== */
.popup-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

/* ===== Submit Button ===== */
.submit-btn {
  background: #0078d7;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s;
}

.submit-btn:hover {
  background: #005fa3;
}

/* Disabled State */
.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* ===== Close Button ===== */
.close-btn {
  background: #777;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.2s;
}

.close-btn:hover {
  background: #555;
}
