/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  padding-top: 70px; /* Prevent content from hiding under fixed navbar */
}

/* ---------- HERO ---------- */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 13%;
  background: url("../image/profile-image.jpg") no-repeat center center/cover;
  min-height: 100vh;
}

.hero-text {
  flex: 1;
  max-width: 400px;
}

.hero-text .welcome {
  font-size: 1rem;
  color: #bbb;
  margin-top: 40px;
  margin-left: 100px;
  font-family: "Inter", sans-serif;
}

.hero-text h1 {
  font-family: "Merriweather Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  margin-left: 100px;
}

/* Hero Right Side */
.hero-image {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding-right: 50px;
  margin-top: 270px;
}

.hero-image .tagline {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ccc;
  max-width: 350px;
  line-height: 1.5;
}

.btn1 {
  display: inline-block;
  background: #3366ff;
  color: #fff;
  padding: 12px 24px;
  /* border-radius: 5px; */
  text-decoration: none;
  /* font-weight: bold; */
  transition: background 0.3s ease;
}
.main-btn{
  gap: 20px;
}
.btn:hover {
  background: #1e4ed8;
}

.hero-image img {
  max-width: 400px;
  border-radius: 10px;
}

/* ----------- ABOUT ---------- */
.section {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.about h2 {
  font-size: 35px;
  margin-bottom: 10px;
  margin-top: 50px;
  font-family: "Inter", sans-serif;
}

.about p {
  font-weight: 400;
  font-size: 15px;
  color: #ffffff;
  max-width: 100%;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

.about p a {
  color: #3ea6ff;
  text-decoration: none;
  font-weight: bold;
}

.about p .more {
  display: block;
  margin-top: 8px;
  color: #3ea6ff;
  font-size: 14px;
}

/* ----------- WORK WITH ---------- */
.work {
  margin: 40px 0;
}

.work h2 {
  font-size: 35px;
  margin-bottom: 20px;
}

.work-logos {
  display: flex;
  justify-content: center;
  gap: 180px;
  flex-wrap: wrap;
  align-items: center;
}

.work-logos img {
  max-height: 60px;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}

.work-logos img:hover {
  transform: scale(1.1);
}

/* ----------- SERVICES ---------- */
.services h2 {
  font-size: 35px;
  margin-bottom: 30px;
}

.service-box {
  display: flex;
  gap: 350px;
  justify-content: center;
  /* align-items: center; */
  background: #000;
  border-radius: 10px;
}
.service-box img {
  width: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */   
}
.service-box img:hover {
  transform: scale(1.05); /* Slight zoom */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Shadow effect */
}

.text-box {
  text-align: right;
  max-width: 400px;
}

.text-box h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.text-box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #ccc;
}

.arrow {
  font-size: 24px;
  margin-top: 15px;
  color: #3ea6ff;
  display: inline-block;
}

/* ----------- Stylized B ---------- */
.b-style {
  font-family: "Jolly Lodger", cursive;
  font-size: 70px;
  color: #fff;
  font-weight: 400;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  margin-right: 8px;
}

.service-box1 {
  display: flex;
  gap: 350px;
  justify-content: center;
  /* align-items: center; */
  background: #000;
  border-radius: 10px;
  margin-top: 50px;
}
.service-box1 img {
  width: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */   
}
.service-box1 img:hover {
  transform: scale(1.05); /* Slight zoom */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Shadow effect */
}
.text-box1 {
  text-align: left;
  max-width: 400px;
}
.text-box1 h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.text-box1 p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #ccc;
}
/* ----------- Stylized G ---------- */
.g-style {
  font-family: "Kalam", cursive;
  font-size: 70px;
  color: #fff;
  font-weight: 400;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  /* margin-right: 8px; */
}

/* ----------- Stylized D ---------- */
.d-style {
  font-family: "Courier New", Courier, monospace;
  font-size: 70px;
  color: #fff;
  font-weight: 200;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  /* margin-right: 8px; */
}
.btn-see {
  display: inline-block;
  margin-top: 50px;
  margin-left: 550px;
  padding: 8px 25px;
  background: #0034d1;       /* Button color */
  color: #fff;               /* Text color */
  font-size: 16px;
  /* font-weight: bold; */
  border: none;
  /* border-radius: 6px;    */
  text-decoration: none;     /* Remove underline */
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth hover effect */
}

.btn-see:hover {
  background: #5379eb;       /* Darker blue on hover */
  transform: translateY(-3px); /* Slight lift effect */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* -- --------------------Popular Services------------- -- */

.Popular-Services{
    margin: 40px 0;
}
.Popular-Services-heading{
  font-size: 35px;
  margin-bottom: 30px;
}
.Popular-Services-img{
  display: flex;
  gap: 30px;
}
.Popular-Services-img img{
   width: 50%;
   transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */ 
}

.Popular-Services-img img:hover {
  transform: scale(1.05); /* Slight zoom */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Shadow effect */
}
/* -------------------------Portfolio--------------- */
.Portfolio{
   /* margin: 40px 0; */
   padding-top: 40px;
}
.Portfolio-heading{
  font-size: 35px;
  margin-bottom: 30px;
}
.Portfolio-img{
  display: flex;
  gap: 30px;
}
.Portfolio-img img {
  width: 90%;          
  max-width: 350px;    
  height: 350px;       
  display: block;
  border-radius: 4px; 
  margin: 0 auto; 
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */      
}
.Portfolio-img img:hover {
  transform: scale(1.05); /* Slight zoom */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Shadow effect */
}


/* =================== RESPONSIVE DESIGN =================== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
  }

  .hero-text {
    max-width: 100%;
    margin: 0 auto 30px;
  }

  .hero-text .welcome,
  .hero-text h1 {
    margin-left: 0;
  }

  .hero-image {
    align-items: center;
    text-align: center;
    padding-right: 0;
  }

  .hero-image img {
    max-width: 300px;
  }

  .work-logos {
    gap: 60px;
  }

  .service-box,
  .service-box1 {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .service-box img,
  .service-box1 img {
    width: 80%;
  }

  .text-box,
  .text-box1 {
    max-width: 100%;
    text-align: center;
  }

  .btn-see {
  display: block;
    margin: 30px auto 0;   /* Center horizontally */
    width: 200px;          /* Reduce button width */
    text-align: center; 
  }

  .Popular-Services-img,
  .Portfolio-img {
    flex-direction: column;
    align-items: center;
  }

  .Popular-Services-img img,
  .Portfolio-img img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-image .tagline {
    font-size: 1rem;
    max-width: 100%;
  }

  .text-box h1,
  .text-box1 h1 {
    font-size: 32px;
  }

  .text-box p,
  .text-box1 p {
    font-size: 14px;
  }
.btn-see {
    width: 160px;          /* Even smaller on very small screens */
    font-size: 14px;       /* Adjust font size */
  }
  .work h2,
  .services h2,
  .about h2,
  .Popular-Services-heading,
  .Portfolio-heading {
    font-size: 28px;
  }
}
