/* Reset some basic elements */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body 
{
  font-family: "Times New Roman", Times, serif;
  line-height: 1.6;
  color: #333;
  /* background-color: #f4f4f4; */
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

/* Styling ScrollBar */
::-webkit-scrollbar
{
  width: 10px;
}

::-webkit-scrollbar-track
{
  background: #ffffff;
}

::-webkit-scrollbar-thumb
{
  background: #b0d6ff;
  border-radius: 15px;
}

/* Header Styles */
header 
{
  background: black;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  /* box-shadow: 0 2px 5px rgba(105, 105, 105, 0.2); */
}

header nav 
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

header .logo img 
{
  height: 70px;
  width: 140px;
  margin: -18px;
  /* filter: drop-shadow(0px 4px 15px #fff); */
}

header .menu-toggle 
{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
}

header .menu-icon::before 
{
  content: "☰";
}

header .nav-links 
{
  list-style: none;
  display: flex;
  gap: 20px;
}

header .nav-links li 
{
  margin: 0;
}

header .nav-links a 
{
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  transition: background 0.3s, color 0.3s;
}

header .nav-links a:hover 
{
  background: #b0d6ff;
  color: #010101;
  border-radius: 5px;
  backdrop-filter: blur(34px);
  box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
}

/* Hero Section Styles */
.hero 
{
  background: url("https://via.placeholder.com/1200x600") no-repeat center
    center/cover;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.hero::after 
{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content 
{
  position: relative;
  z-index: 1;
}

.hero h1 
{
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeIn 2s ease-out;
}

.hero p 
{
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero .btn 
{
  padding: 10px 20px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.hero .btn:hover 
{
  background: #0056b3;
}

/* get started button style */
#home a 
{
  text-decoration: none;
  /* border: 3px solid red; */
  font-size: 17px;
  padding: 10px;
  margin: 10px;
  color: rgb(255, 255, 255);
  border-radius: 10px;
  background-color: #070707;
}

#parax p 
{
  color: #010101;
}

.parax 
{
  left: 30%;
}

#home a:hover 
{
  background-color: #87ceeb;
  color: black;
}

/* Parallax Background */
.parallax 
{
  background-image: url("../images/masking.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  width: auto;
  position: relative;
}

.parallax-content 
{
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  color: #000000;
  text-align: center;
  padding: 30px;
  font-family: "Times New Roman", Times, serif;
}

.parallax-contents 
{
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #000000;
  text-align: center;
  padding: 30px;
  font-family: "Times New Roman", Times, serif;
}

.parallax-section 
{
  position: relative;
  overflow: hidden;
}

#about h2 
{
  color: #fff;
  backdrop-filter: blur(10px);
  height: auto;
  width: auto;
}

/* Section Styles */
section 
{
  padding: 20px 0px;
  /* max-width: 1200px; */
  margin: 0 auto;
}

section h2 
{
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

section p 
{
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #ffffff;
  /* backdrop-filter: blur(24px); */
}

/* Services Section Styles */
.services-container 
{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service
{
  background: #fff;
  color: #fff;
  background-image: url("https://www.simplilearn.com/ice9/free_resources_article_thumb/is_web_development_good_career.jpg");
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: calc(50% - 20px);
  margin-bottom: 40px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 300px;
}

.service1 
{
  background: #fff;
  background-image: url("https://media.istockphoto.com/id/1345778718/photo/cloud-computing-the-data-transfer-and-storage-concept-consists-of-a-white-polygonal.webp?b=1&s=170667a&w=0&k=20&c=GnhRL-ni1TLWITFWdYUAygacWEiSOK8nS_uo8pKw9rY=");
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: calc(50% - 20px);
  margin-bottom: 40px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 300px;
}

.service2 
{
  background: #fff;
  background-image: url("https://media.istockphoto.com/id/1628291798/photo/artificial-intelligence-and-machine-learning-concept.jpg?s=612x612&w=0&k=20&c=7HuC-jduWch3dDGzcw5Rx4JTFJIEiHSx4bsUzBiQAJI=");
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: calc(50% - 20px);
  margin-bottom: 40px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 300px;
}

.service3 
{
  background: #fff;
  background-image: url("https://media.istockphoto.com/id/2157446707/photo/social-media-engagement-digital-marketing-concept-businesswomen-use-laptops-to-create-social.jpg?s=612x612&w=0&k=20&c=3zFZgrquXhauKvh6ZwiK8Aio32giXlP2CVUJYhygs_g=");
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: calc(50% - 20px);
  margin-bottom: 40px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 300px;
}

.service4 
{
  background: #fff;
  background-image: url("https://media.istockphoto.com/id/2162847347/photo/business-person-with-time-management-activity-to-improve-productivity-process-optimization.jpg?s=612x612&w=0&k=20&c=HIqpB0tsYryNb_bOeRwstqHN8lglnNQSWTJzu1-YSfo=");
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: calc(50% - 20px);
  margin-bottom: 40px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 300px;
}

.service5 
{
  background: #fff;
  background-image: url("https://media.istockphoto.com/id/1443560890/photo/digital-marketing-business-technology-concept-website-advertisement-email-social-media.jpg?s=612x612&w=0&k=20&c=S7d_Mof_fEsM69inW540APogoXkz-eA23XE1AIhTaBA=");
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: calc(50% - 20px);
  margin-bottom: 40px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 300px;
}

.service:hover,
.service1:hover,
.service2:hover,
.service3:hover,
.service4:hover,
.service5:hover
{
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service h3,
.service1 h3,
.service2 h3,
.service3 h3,
.service4 h3,
.service5 h3 
{
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.service p,
.service1 p,
.service2 p,
.service3 p,
.service4 p,
.service5 p 
{
  color: #b0d6ff;
  line-height: 1.5;
  backdrop-filter: blur(10px);
} 

/* Portfolio Section Styles */
/* .portfolio-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.portfolio-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
  width: calc(50% - 20px);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-item img {
  width: 100%;
  height: auto;
}

.portfolio-item h3 {
  margin: 15px 0;
  font-size: 1.3rem;
  color: #333;
}

.portfolio-item p {
  padding: 0 15px 15px;
  color: #666;
} */

/* Our Clients Section Styles */
#clients 
{
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

#clients h2 
{
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.clients-container 
{
  overflow: hidden; /* Hide the overflowing part */
  position: relative;
}

.clients-logos 
{
  display: flex;
  justify-content: space-around;
  align-items: center;
  animation: scrollClients 20s linear infinite; /* Continuous scrolling effect */
}

.clients-logos img 
{
  max-width: 150px;
  margin: 0 20px;
}

/* Keyframes for scrolling animation */
@keyframes scrollClients {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Counter Css */
.experience-stats 
{
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  background-color: black;
  color: white;
  padding: 50px;
  margin: 50px;
  border-radius: 10px;
  backdrop-filter: blur(30px) black;
  -webkit-backdrop-filter: blur(24px) brightness(20px) contrast(20px);
}

.stat 
{
  flex: 1;
  padding: 20px;
  backdrop-filter: blur(30px);
}

.stat span 
{
  color: #fff;
}

.stat h2 
{
  font-size: 48px;
  margin: 0;
  color: #fff;
  font-family: url("fonts/Avenir\ Next\ Cyr\ Medium.ttf");
}

.stat p 
{
  font-size: 18px;
  margin: 10px 0 0;
  font-family: myfont;
  font-weight: 400;
  font-size: 25px;
}

@font-face 
{
  font-family: myfont;
  src: url("regular.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

/* Contact Section Styles */
.contact-section 
{
  padding: 25px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contact-section h2 
{
  font-size: 2.5rem;
  margin-bottom: 8px;
  color: #333;
}

.contact-container 
{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

.contact-form
{
  /* flex: 1 1 400px; */
  max-width: 500px;
  margin: 0 20px;
}

.contact-form 
{
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: rgba(223, 217, 217, 0.4);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.contact-form form input,
.contact-form form textarea 
{
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
  font-size: 1rem;
  font-family: "Times New Roman", Times, serif;
}

.contact-form form textarea 
{
  height: 100px;
  resize: vertical;
}

.contact-form .btn 
{
  width: 100%;
  padding: 10px;
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-family: "Times New Roman", Times, serif;
}

.contact-form .btn:hover 
{
  background-color: #87ceeb;
  color: black;
}

.services 
{
  width: auto; /* Adjust the width as needed */
  box-sizing: border-box; /* Ensure padding/margin doesn't affect width */
}

#map {
  margin-top: 20px;
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}

/* Footer Styles */
footer 
{
  /* background: #333; */
  color: #fff;
  padding: 20px 0;
  text-align: center;
  background-image: url("https://img.freepik.com/free-vector/data-visualization-dynamic-wave-pattern-vector_53876-77456.jpg?size=626&ext=jpg&ga=GA1.1.291584493.1723730739&semt=ais_hybrid");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.footer-links 
{
  margin-bottom: 20px;
}

.footer-links a 
{
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-links a:hover 
{
  color: #007bff;
}

.social-media 
{
  margin-top: 20px;
}

.social-media a 
{
  color: #fff;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-media a:hover
{
  color: #007bff;
}

form input 
{
  font-family: "Times New Roman", Times, serif;
  border: 5px solid;
}

/* SERVICE SECTION STYLING  */
.container 
{
  display: flex;
  flex-wrap: wrap;
  justify-content:space-around;/* Space between the two divs */
  height: auto;
  width: auto;
}

.services h2,
.support h2,
.quick h2,
.socila h2,
.location h2
{
  text-align: left;
  margin-bottom: 10px;
  color: #faebd7;
  margin-top: 14px;
  align-items: center;
}

.services p,
.support p,
.quick p,
.socila p,
.location p
{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 0; /* Remove default padding */
}

.services p i,
.support p i,
.quick p i,
.socila p i
{
  margin-right: 8px; /* Space between icon and text */
  color: #faebd7;
}

.services p a,
.support p a,
.quick p a,
.socila p a
{
  text-decoration: none;
  color: #f5fffa; /* Change color as needed */
  flex: -1; /* Take up the remaining space to ensure alignment */
}

.services p a:hover,
.support p a:hover, 
.quick p a:hover, 
.socila p a:hover
{
  color: #87ceeb; /* Hover color */
}

/* Image for the services section css */
/* #web
{
  background-image: url('webdev.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  position: relative;
}

#cloud
{
  background-image: url('cloud.png');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  position: relative;
} */


/* LAST ICON STYLE IN FOOTER */
.social-media {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0px;
  margin-left: auto;
  justify-content: center;
}

.social-media a {
  text-decoration: none;
  color: #ffffff;
  font-size: 24px;
  transition: color 0.3s, transform 0.3s;
}

.social-media a:hover {
  transform: scale(1.2);
}

.social-media .fa-instagram:hover {
  color: #e4405f;
}

.social-media .fa-x-twitter:hover {
  color: #000000;
}

.social-media .fa-facebook:hover {
  color: #007bff;
}



/* RESPONSIVE DESIGN ALL CODE */
/* 
@media (min-width: 600px) and (max-width: 1024px) {
  .service,
  .portfolio-item {
    width: 80%;
  }

  .hero {
    height: 500px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
} */


/* Responsive Design */
/* Mobile Styles */
/* @media (max-width: 600px) {
  header .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  header .nav-links li {
    margin-left: 0;
    margin-bottom: 10px;
  }

  .services-container,
  .portfolio-container {
    flex-direction: column;
    align-items: center;
  }

  .service,
  .portfolio-item {
    width: 47%;
  }

  .hero {
    height: 400px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .parallax-content {
    padding: 0 10px;
  }
}  */

/* Responsive Design */
/* @media (max-width: 600px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-form,
  .contact-info {
    margin: 20px 0;
  }

  .contact-form form input,
  .contact-form form textarea {
    width: 100%;
  }
}  */

/* Responsive styling for smaller screens */
@media (max-width: 600px) {
  .experience-stats {
    flex-direction: column;
  }

  .stat {
    margin-bottom: 20px;
  }
}  

/* Mobile Styles */
@media (max-width: 650px) {
  header .menu-toggle {
    display: block;
  }

  header .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #333;
    flex-direction: column;
    gap: 0;
  }

  header .nav-links.active {
    display: flex;
  }

  header .nav-links li {
    margin: 0;
    padding: 10px 20px;
    text-align: center;
  }
}  

/* Right Side Space for all screen*/
@media (min-width:100px) and (max-width:650px){
  body{
    overflow-x: hidden;
  }
}

@media(min-width:350px) and (max-width:600px)
{ 
  footer{
    width: auto;
    height:auto;
  }

  #contain
  {
    display: flex;
    flex-wrap: wrap;
  }

  #contain h2
  {
    font-size: 0.6rem;
    display:flex;
    flex-wrap: wrap;
  }

  #contain p
  {
    font-size: 0.4rem;
  }

  .social-media a
  {
    font-size: 0.9rem;
  }

  footer .para
  {
    font-size: 0.8rem;
  }

  body
  {
    overflow-x: hidden;
  }
}