main {
  margin: 105px 0;
  line-height: 1.4;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}



/* ------------------------------ *\
                HERO
\* ------------------------------ */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 10px 10%;
}

.hero-text {
  width: 50%;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 3vw, 3.1rem);
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-text h1 span {
  color: #ffbd59;
  /* orange highlight */
}

.hero-text p {
  font-size: clamp(0.8rem, 1vw, 1rem);
  color: #a6a6a6;
  margin-bottom: 20px;
}

.btns {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.btn-primary {
  background: #3a5bcc;
  color: #fff;
  padding: 6px 15px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
}

.btn-secondary {
  background: #FFF;
  color: #8d8d8d;
  padding: 6px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
}

.hero-image {
  width: 45%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width:1080px) {
  .hero {
    padding: 0px 15px;
    text-align: left;
  }

  .hero-text h1 {
    font-size: 24px;

  }

  .hero-text p {
    font-size: 12px;
  }

  .btns {
    margin-top: 15px;
  }

  .btn-primary {
    background: #3a5bcc;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
  }

  .btn-secondary {
    background: #f2f2f2;
    color: #333;
    padding: 5px 10px;
    font-size: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
  }
}

@media (max-width:520px) {
  main {
    margin: 80px 0;
    line-height: 1.4;
    box-sizing: border-box;
  }

  .hero {
    flex-wrap: wrap-reverse;
    gap: 20px;
  }

  .hero-text {
    width: 100%;
  }

  .hero-image {
    width: 100%;
  }

}

/*--------------------------------------*\
  How To Get our Service? 
\*--------------------------------------*/
.service-steps {
  background: #3a5bcc;
  /* निळा रंग */
  color: #fff;
  padding: 40px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  gap: 40px;
}

.service-left {
  width: fit-content;
}

.service-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.service-left p {
  color: #fffffff1;
  font-weight: 500;
  font-size: 18px;
}

.service-right {
  width: fit-content;
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}

.step-card {
  background: #fff;
  color: #222;
  width: 150px;
  height: 150px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.step-card img {
  height: 35px
}

@media(max-width:1080px) {
  .service-steps {
    padding: 40px 15px;
  }

  .step-card {
    padding: 6px;
    font-weight: 500;
    width: 120px;
    height: 120px;
    font-size: 14px;
  }

  .service-right {
    gap: 15px;
  }
}

@media(max-width:520px) {
  .service-steps {
    flex-wrap: wrap;
    padding: 40px 15px;
    gap: 25px;
    justify-content: center;
  }

  .step-card img {
    height: 25px
  }

  .step-card {
    padding: 6px;
    font-weight: 500;
    width: 90px;
    height: 90px;
    font-size: 12px;
  }

  .service-left p {
    font-size: 16px;
  }
}


/*--------------------------------------*\
KEY FEATURE
\*--------------------------------------*/

.features {
  padding: 20px 10%;
  background: #fff;
  text-align: center;
  margin-top: 60px;
}

.features-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 5px;
}

.features-header .left h3 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #000000;
  font-weight: 400;
  text-wrap: nowrap;
}

.features-header .left h2 {
  float: left;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  font-weight: 700;
  color: #000000;
}


.features-header .right {
  width: 90%;
  border-bottom: 1px solid #a6a6a6;
}

.features-header .right h2 {
  font-size: 45px;
  font-weight: 700;
  color: #000;
  text-align: right;
}

.features-header .highlight {
  color: #ffbd59;
  /* orange */
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  /* center content */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* center horizontally */
  transition: .3s ease;
}

.feature-card img {
  max-width: 60px;
  /* icon/image size */
  height: 70px;

  margin-bottom: 5px;
  /* spacing below image */
}

.feature-card:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.feature-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #222;
}

.feature-card p {
  font-size: 13px;
  color: #737373;
  line-height: 1.5;
}

@media(max-width:1080px) {
  .features {
    padding: 0 15px;
  }


  .features-header .right h2 {
    font-size: 35px;
  }

  .features-grid {
    gap: 20px;
  }

}

@media(max-width:520px) {
  .features {
    margin-top: 20px;
  }

  .features-header {
    flex-wrap: wrap-reverse;
    margin-bottom: 20px;
  }

  .features-header .right {
    width: 100%;
  }

  .features-header .right h2 {
    font-size: 25px;
    text-align: center;
  }

  .features-header .left {
    display: flex;
    gap: 5px;
    justify-content: center;
    width: 100%;
  }

  .features-header .left h2 {
    float: left;
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 700;
    color: #000000;
  }

  .features-grid {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
  }

  .feature-card {
    padding: 5px;
    width: calc(50% - 5px);
  }

  .feature-card h4 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .feature-card p {
    font-size: 10px;
    line-height: 1.5;
  }
}

/*--------------------------------------*\
KEY FEATURE
\*--------------------------------------*/
.cta {
  background: #3a5bcc;
  /* निळा background */
  color: #fff;
  text-align: center;
  padding: 30px 20px;
  margin-top: 50px;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 10px;
}

.cta-content h2 span {
  font-weight: 600;
  font-size: 48px;
}

.cta-content p {
  font-size: 20px;
  line-height: 1.6;
  max-width: 1200px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.cta-btn {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: .3s;
  display: block;
  width: fit-content;
}

.cta-btn:hover {
  background: #fff;
  color: #3a5be0;
}

@media(max-width:1080px) {
  .cta {
    padding: 30px 15px;
  }

  .cta-content .h2 {
    font-size: 25px;
  }

  .cta-content p {
    font-size: 11px;
  }
}



/*--------------------------------------*\
About Us
\*--------------------------------------*/
.about-section {
  padding: 60px 10%;
  background: #fff;
  color: #222;
}

.second-heading {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 5px;
}

.second-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 5px;
}

.second-heading .left h3 {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #000000;
  font-weight: 400;
  text-wrap: nowrap;
}

.second-heading .left h2 {
  float: right;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  font-weight: 700;
  color: #000000;
}


.second-heading .right {
  width: 90%;
  border-bottom: 1px solid #a6a6a6;
}

.second-heading .right h2 {
  font-size: 45px;
  font-weight: 700;
  color: #000;
  text-align: left;
}

.second-heading .highlight {
  color: #ffbd59;
  /* orange */
}

.about-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}

.about-image {
  width: 30%;
}

.about-image img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

.about-text {
  width: 60%;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.about-text h4 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-text p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #737373;
}

@media(max-width:1080px) {
  .about-section {
    padding: 60px 15px;
  }

  .second-heading .right h2 {
    font-size: 35px;
  }

  .about-text h4 {
    font-size: 20px;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-content {
    align-items: center;
  }

}

@media(max-width:520px) {
  .second-heading {
    flex-wrap: wrap-reverse;
    margin-bottom: 20px;
  }

  .second-heading .right {
    width: 100%;
  }

  .second-heading .right h2 {
    font-size: 25px;
    text-align: center;
  }

  .second-heading .left {
    display: flex;
    gap: 5px;
    justify-content: center;
    width: 100%;
  }

  .second-heading .left h2 {
    float: left;
    font-size: clamp(1rem, 2vw, 2rem);
    font-weight: 700;
    color: #000000;
  }


  .about-content {
    flex-wrap: wrap;
  }

  .about-image {
    width: 100%;
  }

  .about-text {
    width: 100%;
    padding: 5px;
  }
}



/*--------------------------------------*\
Our Portfolio - Website Design Project
\*--------------------------------------*/

.portfolio-section {
  background: #3a5bcc;
  color: #fff;
  padding: 40px 10%;
  text-align: center;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  flex-wrap: wrap;
}

.portfolio-header h2 {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}

.view-more-btn {
  background: #fff;
  color: #3a5bcc;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.view-more-btn:hover {
  background: #e0e0e0;
}

.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px auto 0;
}

.card {
  background: #fff;
  color: #000;
  border-radius: 10px 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #ddd;
}

.card-content {
  padding: 15px;
}

.card-content h3 {
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: bold;
  color: #3a5bcc;
}

.card-content p {
  text-align: left;
  font-size: 14px;
  color: #444;
  margin: 0 0 15px;
  padding: 10px 10px;
  /* 🔹 paragraph ला बाजूला padding */
}

.card-content a {
  color: #ffbd59;
  font-weight: bold;
  text-decoration: none;
}

.card-content a:hover {
  text-decoration: underline;
}

@media(max-width:1080px) {
  .portfolio-section {
    padding: 30px 15px;
  }

  .portfolio-header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .portfolio-header h2 {
    flex-direction: column;
    text-align: center;
    font-weight: 700;
    font-size: 25px;

  }

  .view-more-btn {
    padding: 5px 10px;
  }

}
section.get-started {
    margin-top: 60px;
    padding: 60px 10%; /* Padding for spacing */
    background-color: #3a5bcc; /* Background color */
    text-align: center; /* Center align text */
    border-top: 2px solid #e0e0e0; /* Top border for separation */
}

.get-started h2 {
    font-size: 2.2em; /* Larger font size for heading */
    margin-bottom: 20px; /* Space below the heading */
    color: #ffffff; /* Heading color */
}

.get-started p {
    font-size: 1.1em; /* Font size for paragraph */
    line-height: 1.6; /* Line height for readability */
    color: #ffffff; /* Paragraph color */
    max-width: 800px; /* Max width for better readability */
    margin: 0 auto; /* Center the paragraph */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section.get-started {
        padding: 40px 5%; /* Reduce padding for smaller screens */
    }

    .get-started h2 {
        font-size: 1.8em; /* Smaller font size for heading on small screens */
    }

    .get-started p {
        font-size: 1em; /* Slightly smaller font size for paragraph on small screens */
    }
}



/*--------------------------------------*\
appointment-section
\*--------------------------------------*/
.appointment-section {
  padding: 60px 10%;
  background: #fff;
  text-align: center;
  padding-bottom: 0;
}

.appointment-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.appointment-heading h2 {
  font-size: 30px;
  font-weight: 700;
}

.appointment-heading h2 span {
  color: #ffbd59;
  /* orange */
}

.appointment-heading .lines {
  flex: 2;
  height: 1px;
  background: #ddd;
}

.appointment-heading .line {
  flex: 2;
  margin-top: 34px;
  height: 1px;
  background: #ddd;
}

.appointment-heading h3 {
  font-size: 16px;
  color: #737373;
  font-weight: 200;
  text-align: right;
  padding: 0px 10px;
}

.appointment-heading h3 span {
  display: block;
  /* NEW - Record खाली येईल */
  font-size: 30px;
  font-weight: 600;
  color: #000;
  margin-top: 5px;

}

.appointment-header p {
  font-size: 16px;
  margin: 0;
}

/* 50-50 Layout */
.appointment-content {
  display: flex;
  gap: 40px;
  align-items: center;

}


.appointment-image {
  width: 40%;
}

.appointment-image img {
  width: 100%;
  height: 100%;
  padding: 30px;
  object-fit: cover;
  border-radius: 10px;
}

.appointment-form {
  display: flex;
  align-items: center;
  width: 60%;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 6px;
  color: #333;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

textarea {
  resize: none;
}

.form-checkbox {
  width: 100%;
  text-align: left;
  display: block;
  margin-top: 10px;
}

.form-checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
}


.Confirm {
  background: #3a5bcc;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #3a5bcc;
}

/* Responsive */
@media (max-width: 1080px) {
  .appointment-section {
    padding: 60px 15px;
  }

  .appointment-heading {
    font-size: 25px;
    text-align: center;
    gap: 0px;
  }

  .appointment-heading h2 {
    font-size: 25px;
  }

}

@media (max-width: 520px) {
  .appointment-section {
    padding: 60px 15px;
  }

  .appointment-image {
    display: none;
  }
  .appointment-form {
  display: flex;
  align-items: center;
  width: 100%;
}
}

/* ------------------------------ *\
    Frequently Asked Questions
\* ------------------------------ */


.FAQ {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.FAQ .title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    font-weight: bold;
}

.FAQ .question {
    border-bottom: 1px solid #eaeaea;
    padding: 15px 0;
}

.FAQ .question:last-child {
    border-bottom: none;
}

.FAQ .question h2 {
    font-size: 1.4rem;
    padding: 10px 0;
    font-weight: 300;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}


.FAQ .question h2 .fa-angle-down {
    transition: transform 0.3s;
}

.FAQ .answer {
    display: none;
    padding: 15px 0;
    background-color: #fff;
    color: #555;
    border-left: 4px solid #007ACC;
    margin-top: 10px;
    animation: fadeIn 0.3s ease-in-out;
    font-size: 1.2rem;
    line-height: 1.6;
    padding-left: 10px;
}

.FAQ .question.open .answer {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .FAQ .title {
        font-size: 1.8rem;
    }

    .FAQ .question h2 {
        font-size: 1.4rem;
        padding: 10px;
    }

    .FAQ .answer {
        font-size: 1.1rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .FAQ .title {
        font-size: 1.6rem;
    }

    .FAQ .question h2 {
        font-size: 1.2rem;
        padding: 8px;
    }

    .FAQ .answer {
        font-size: 1rem;
        padding: 8px;
    }
}
