html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
  color: #333;
}
h1{
  margin-bottom: 0px !important;
}



/* .top-bar {
  background-color: #222;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.top-bar p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar i {
  color: #3E7BBE;
}

@media(max-width: 768px){
  .top-bar{
    display: none !important;
  }
} */

/* Header */
/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 20px;
  background-color: #d6e2e8;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo1 img {
  height: 60px; /* Adjust height as needed */
  width: auto;
  display: flex;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #0d0d0e;
  display: flex;
  flex-direction: column;
}

/* Nav Container: Aligns items properly */
header nav {
  display: flex;
  align-items: center;
  flex-grow: 1;  /* Makes nav take available space */
  justify-content: flex-end; /* Moves everything to the right */
}

/* Navbar Links */
header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  transition: transform 0.3s ease-in-out;
}

header nav ul li {
  position: relative;
}

header nav ul li a {
  color: #0e0d0d;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
  padding: 10px;
  display: inline-block;
}

/* Smooth Hover Effect */
header nav ul li a::after {
  content: "";
  width: 0;
  height: 3px;
  background-color: #3E7BBE;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out;
}

header nav ul li a:hover {
  color: #3E7BBE;
}

header nav ul li a:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  color: #0d0d0e;
  display: none;
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  margin-left: auto; /* Pushes the hamburger to the right */
}

.hamburger:hover {
  transform: rotate(90deg);
}

.slogan {
  /* font-family: 'Permanent Marker', cursive; */
  font-size: 16px;
  font-style: normal;
  font-weight: 300px;
  color: #3E7BBE;
  margin-top: -10px;
  text-align: center;
  letter-spacing: 1px;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  header nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #d6e2e8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 200px;
  }

  header nav ul.active {
    display: flex;
    transform: translateY(0);
  }

  .hamburger {
    display: block;
  }
}

  
  /* Floating WhatsApp Icon */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px; /* Pill-shaped button */
    padding: 10px 20px 10px 10px; /* Padding for icon and text */
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .whatsapp-float i {
    font-size: 30px;
  }
  
  .whatsapp-text {
    font-size: 16px;
    font-weight: bold;
    display: inline-block; /* Show "Contact Us" text by default */
  }
  
  .whatsapp-hover-text {
    font-size: 16px;
    font-weight: bold;
    display: none; /* Hide "WhatsApp" text by default */
  }
  
  .whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.05); /* Slightly enlarge on hover */
  }
  
  .whatsapp-float:hover .whatsapp-text {
    display: none; /* Hide "Contact Us" text on hover */
  }
  
  .whatsapp-float:hover .whatsapp-hover-text {
    display: inline-block; /* Show "WhatsApp" text on hover */
  }
 

  /* Floating Social Media Icons */
/* Floating Social Media Icons */
.floating-social {
  position: fixed;
  top: 50%;
  right: 5px; /* Icons initially outside the screen */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
  background-color: #3E7BBE;
  border-radius: 50%;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  position: relative;
  right: 0; /* Normal position */
}

.social-icon:hover {
  right: 10px; /* Moves slightly out when hovered */
  background-color: #fff;
  color: #3E7BBE;
}

.facebook {
  background-color: #1877f2;
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}


  /* Hero Section */
.hero {
    background-image: url('./assest/hero.jpg'); /* Add your image here */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.50); /* Dark overlay for better text visibility */
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .hero .cta-button {
    background-color: #3E7BBE;
    color: #fff;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
    transition: background-color 0.3s;
  }
  
  .hero .cta-button:hover {
    color: #0d0d0e;
    background-color: #d6e2e8;
  }
  
 /* Services Section */
.services {
  position: relative;
  padding: 80px 20px;
  background-image: url(''); /* Add your background image here */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Scrolling effect */
  color: #fff;
  overflow: hidden;
}

.services-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(248, 244, 244, 0); /* Dark overlay for better readability */
}

.services-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #111111;
}

.service-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.service-item {
  flex: 1 1 200px;
  max-width: 300px;
  background-color: rgb(255, 255, 255); /* Semi-transparent white background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-item i {
  font-size: 40px;
  color: #3E7BBE;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.service-item p {
  font-size: 16px;
  color: #555;
}

/* Why Choose Us Section */
.why-choose-us {
  position: relative;
  padding: 80px 20px;
  background-image: url('./assest/services.jpg'); /* Add your background image here */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Scrolling effect */
  color: #fff;
  overflow: hidden;
}

.why-choose-us-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for better readability */
}

.why-choose-us-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
}

.benefits {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.benefit-item {
  flex: 1 1 200px;
  max-width: 300px;
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s;
}

.benefit-item:hover {
  transform: translateY(-10px);
}

.benefit-item i {
  font-size: 40px;
  color: #3E7BBE;
  margin-bottom: 20px;
}

.benefit-item h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.benefit-item p {
  font-size: 16px;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-item, .benefit-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
}
  

  

/* Contact Section */
.contact {
    position: relative;
    padding: 60px 20px;
    background-image: url('./assest/contact.jpg'); /* Add your background image here */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Scrolling effect */
    color: #fff;
    overflow: hidden;
  }
  
  .contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for better readability */
  }
  
  .contact-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }
  
  .contact-info {
    flex: 1;
    max-width: 50%;
  }
  
  .contact-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #3E7BBE;
  }
  
  .contact-info .big-heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .contact-info .sub-heading {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ccc;
  }
  
  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .icon-box {
    background-color: rgba(255, 255, 255, 0.2); /* Medium transparency box */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
  }
  
  .icon-box i {
    font-size: 24px;
    color: #3E7BBE;
  }
  
  .detail-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;
  }
  
  .detail-item p {
    font-size: 16px;
    color: #ccc;
    margin-top: 5px;
  }
  
  .contact-form {
    flex: 1;
    max-width: 50%;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    padding: 30px;
    padding-right: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #3E7BBE;
    outline: none;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 150px;
  }
  
  .contact-form button {
    background-color: #3E7BBE;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .contact-form button:hover {
    background-color: #d6e2e8;
    color: #0d0d0e;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  
    .contact-info, .contact-form {
      max-width: 100%;
    }
  
    .contact-info h2 {
      font-size: 28px;
    }
  
    .contact-info .big-heading {
      font-size: 24px;
    }
  
    .contact-info .sub-heading {
      font-size: 18px;
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  
    .contact-info, .contact-form {
      max-width: 100%;
    }
  
    .contact-info .big-heading {
      font-size: 28px;
    }
  
    .contact-info .sub-heading {
      font-size: 20px;
    }
  }
  
  /* Footer */
  footer {
    background-color: #222;
    color: #fff;
    padding: 40px 20px 20px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
  }
  
  .footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #3E7BBE;
  }
  
  .footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-section ul li a:hover {
    color: #3E7BBE;
  }
  
  /* Social Media Icons */
  .social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-media a {
    color: #ccc;
    font-size: 24px;
    transition: color 0.3s;
  }
  
  .social-media a:hover {
    color: #3E7BBE;
  }
  
  .copyright {
    display: flex;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #ccc;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-section {
      max-width: 100%;
    }
  }
  
/* About Section Styling */
.about {
  background-image: url('./assest/bg-section-01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  padding-bottom: 10px;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* iPhone Image Styling */
.iphone-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.iphone-image img {
  width: 80%;
  max-width: 400px;
  animation: float 3s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Content Section */
.about-content {
  flex: 1;
  padding-left: 50px;
}

.about-content h3 {
  color: #3E7BBE;
  text-transform: uppercase;
  font-size: 16px;
}

.about-content h2 {
  font-size: 32px;
  margin: 10px 0;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Read More Button */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #3E7BBE;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.btn:hover {
  background-color: #d6e2e8;
  color: #0d0d0e;
}

/* Stats Section */
.stats {
  display: flex;
  margin-top: 30px;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  color: #3E7BBE;
}

.stat-item p {
  font-size: 18px;
  color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .iphone-image {
    order: -1;
    margin-bottom: 20px;
  }

  .about-content {
    padding-left: 0;
  }

  .stats {
    flex-direction: column;
  }
}



/* Trusted Brands Section */
.trusted-brands {
  padding: 60px 20px;
  padding-bottom: 100px;
  background-color: #f9f9f9;
  text-align: center;
}

.trusted-brands h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
}

.brands-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px; /* Increased gap for better spacing */
  max-width: 1200px;
  margin: 0 auto;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px; /* Fixed width for all logos */
  height: 120px; /* Fixed height for all logos */
  transition: transform 0.3s, opacity 0.3s;
}

.brand-item img {
  width: 100%; /* Ensure logos fill the container */
  height: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Ensure logos fit nicely */
  transition: transform 0.3s, opacity 0.3s;
}

.brand-item:hover img {
  transform: scale(1.1); /* Slightly enlarge on hover */
  opacity: 0.8; /* Slightly fade on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
  .brands-container {
    gap: 20px;
  }

  .brand-item {
    width: 80px; /* Smaller size for mobile */
    height: 80px;
  }
}

.footer-logo img {
  height: 50px; /* Adjust height as needed */
  width: auto;
  margin-bottom: 10px;
}
/* Responsive Design
@media (max-width: 768px) {
  .brands-container {
    gap: 20px;
  }

  .brand-item {
    padding: 15px;
  }

  .brand-item img {
    width: 80px;
  }
} */

