/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #151515;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  background: #202020;
  color: #fff;
  padding: 2px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  /* font-size: 15px; */
  height: 55px;
  width: auto;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #c7cccd;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #01244e, #00c6ff);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.btn {
  background: #fff;
  color: #0072ff;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  position: center;
}

.btn:hover {
  background: #00c6ff;
  color: #fff;
}

/* Services */
.services {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.service-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}


.card {
  background: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: #f3f4f6;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  backdrop-filter: blur(0);
}
.card h3 {
  position: relative;
  padding-bottom: 0.5rem;
  transition: color 0.3s;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 25px rgba(0, 0, 0, 0.15);
  background: rgba(66, 164, 235, 0.3);
  backdrop-filter: blur(8px);
}
.card:hover h3::after,
.card:hover h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #1e40af; /* deep blue line */
  border-radius: 2px;
}

.card h3::after,
.card h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: transparent;
  transition: width 0.3s ease;
}

/* Animate underline on hover */
.card:hover h3::after,
.card:hover h4::after {
  width: 100%;
  background-color: #1e40af;
}

.card:hover h3 {
  font-size: 1.5rem; /* or increase as needed */
  transform: scale(1.05);
}

/* About */

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.image-side {
  flex: 1;
  max-width: 35%; /* smaller width */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.image-side img {
  width: 80%; /* smaller image */
  border-radius: 30px;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease; /* for animation */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.image-side img:hover {
  transform: scale(1.05); /* slight zoom on hover */
  opacity: 0.9; /* slight fade effect */
}

.text-side {
  flex: 1;
  max-width: 50%;
}

.section-label {
  color: #34d1c3;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 32px;
}

h1 {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.text-side p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.signature {
  font-style: italic;
  margin-top: 20px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ----------- */



.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.container h4
{
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 32px;
  padding: 20px 0px;
 
}

.content {
  flex: 1;
  max-width: 50%;
}

.content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.content ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 16px;
}

.image-box {
  flex: 1.15;
  max-width: 40%;
  text-align: center;
}

.image-box img {
  width: 100%;
  border-radius: 30px;
  clip-path: polygon(
    25% 0%,
    75% 0%,
    100% 25%,
    100% 75%,
    75% 100%,
    25% 100%,
    0% 75%,
    0% 25%
  );
  /* hexagon shape-like effect */
}



.section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.text-content {
  max-width: 55%;
}

.subtitle {
  color: #34d1c3;
  font-weight: bold;
  margin-bottom: 30px;
}

h1 {
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.progress-wrapper {
  width: 100%;
}

.label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-weight: bold;
}

.progress-bar {
  background-color: #e0e0e0;
  height: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 8px;
  background-color: #34d1c3;
  width: 0;
  border-radius: 8px;
  transition: width 1s ease-in-out;
  gap: 5px;
}

.image-content {
  max-width: 40%;
}

.image-content img {
  width: 100%;
  border-radius: 16px;
}


.testimonial-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.testimonial-text {
  flex: 1;
  min-width: 300px;
}

.testimonial-text h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.stars {
  color: #f4c542;
  font-size: 24px;
  margin-bottom: 20px;
}

.testimonial-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.testimonial-image img {
  max-width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Contact */

.contact-form {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.subtitle {
  color: #34d1c3;
  font-weight: bold;
  margin-bottom: 10px;
}

h1 {
  font-size: 32px;
  margin-bottom: 40px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row.full-width {
  flex-direction: column;
}

input,
textarea {
  flex: 1;
  padding: 14px 18px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}
