main {
    margin: 105px 0;
}

/* ------------------------------ *\
                HERO
\* ------------------------------ */

#hero {
    padding: 0 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#hero .hero-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 50%;
  max-width: 650px;
  color: #002136;
}

/* Headline */
#hero .headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  color: #002136;
  margin: 0;
}

#hero .headline span{
   color: #ffbd59;
}

/* Service List */
#hero ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#hero ul h2 {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.8rem;
  margin: 0;
  color: #00324f;
  display: flex;
  align-items: center;
}

#hero h2 i {
  color: #00c853; /* Bright green check */
  margin-right: 10px;
  font-size: 1rem;
}

/* Subtext */
#hero h3 {
  font-size: 1.05rem;
  font-weight: 300;
  color: #334e68;
  margin: 10px 0 0;
  line-height: 1.6;
}

/* CTA Button */
#hero .hero-info .btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: #3a5bcc;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 4px 10px rgba(58, 91, 204, 0.2);
}

#hero .hero-info .btn:hover {
  transform: translateY(-3px) scale(1.05);
  background-color: #2948a0;
  box-shadow: 0 6px 14px rgba(58, 91, 204, 0.3);
}

#hero .hero-img {
    width: 50%;
}

#hero .hero-img video {
    width: 100%;
    max-width: 800px;
}

@media (max-width: 960px) {
    #hero {
        padding: 0 5%;
    }

    #hero .hero-img video {
        width: 100%;
        min-width: 400px;
    }
}


@media (max-width: 780px) {
    #hero {
        padding: 0 20px;
        flex-wrap: wrap-reverse;
        gap: 40px;
        justify-content: center;
    }

    #hero .hero-img {
        width: 100%;
    }

    #hero .hero-img video {
        width: 100%;
        min-width: 100%;
    }

    #hero .hero-info {
        width: 100%;
    }

}


/* ------------------------------ *\
            providing
\* ------------------------------ */

.providing {
    text-align: center;
    margin: 80px 10px;
}

.providing h3 {
    font-size: clamp(1rem, 4vw, 1.25rem);
    font-weight: 400;
    margin-bottom: 25px;
}


.animated-text h2 {
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    font-weight: 600;
    min-width: 280px;
}

.animated-text span {
    position: relative;
    text-wrap: nowrap;
}

.animated-text span::before {
    content: "Youtuber";
    color: #ff7f50;
    animation: words 20s infinite;
}

.animated-text span::after {
    content: "";
    position: absolute;
    width: calc(100% + 8px);
    height: 110%;
    background-color: #ffffff;
    border-left: 2px solid #ff7f50;
    right: -8px;
    animation: cursor .8s infinite, typing 20s steps(14) infinite;
}

@keyframes cursor {
    to {
        border-left: 2px solid #ff7f5000;
    }
}

@keyframes words {

    0%,
    20% {
        content: "Website Development";
    }

    21%,
    40% {
        content: "SEO(Search Engine Optimization)";
    }

    41%,
    60% {
        content: "Digital Marketing";
    }

    61%,
    80% {
        content: "Video Editing";
    }

    81%,
    100% {
        content: "UI/UX Design";
    }
}

@keyframes typing {

    10%,
    15%,
    30%,
    35%,
    50%,
    55%,
    70%,
    75%,
    90%,
    95% {
        width: 0;
    }

    5%,
    20%,
    25%,
    40%,
    45%,
    60%,
    65%,
    80%,
    85% {
        width: calc(100% + 8px);
    }
}






/* ============================
   SERVICES SECTION
============================ */
.services {
  padding: 80px 10%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  background-color: rgba(58, 91, 204, 0.08);
}

.services .title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #002136;
  text-align: center;
  position: relative;
}

.services .title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #3a5bcc;
  display: block;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* ============================
   SERVICE CARDS GRID
============================ */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
}

.services-cards .card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.services-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card .card-container img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card .card-content {
  padding: 25px 20px 30px;
}

.card .card-content h3 {
  color: #3a5bcc;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
}

.card .card-content p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #333;
  line-height: 1.7;
  text-align: left;
}

/* ============================
   SPECIAL OFFER
============================ */
.special-offer {
  text-align: center;
  font-size: 1.1rem;
  background-color: #e6edff;
  color: #002136;
  border-left: 4px solid #3a5bcc;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: 400;
  line-height: 1.6;
}

/* ============================
   FEATURE SECTION
============================ */
.feature {
  position: relative;
  text-align: center;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature hr {
  margin: 0;
  width: 100%;
  border: none;
  height: 1px;
  background-color: #d0d8f0;
}

.feature h4 {
  position: absolute;
  background: #f0f4ff;
  padding: 10px 25px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #002136;
  border-radius: 10px;
}

/* ============================
   FEATURE GRID
============================ */
.feature-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: start;
  justify-content: center;
  align-items: center;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #3a5bcc;
  margin-bottom: 15px;
}

.feature-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card ul li {
  font-size: 1.05rem;
  color: #333;
  font-weight: 300;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.feature-card ul li::before {
  content: "✔";
  color: #00c853;
  position: absolute;
  left: 0;
  font-size: 1rem;
}

.feature-card.image-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  box-shadow: none;
}

.feature-card.image-card img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

/* ============================
   RESPONSIVE DESIGN
============================ */
@media (max-width: 992px) {
  .services {
    padding: 60px 7%;
  }
}

@media (max-width: 768px) {
  .services .title {
    font-size: 2rem;
  }
  .card .card-content p {
    text-align: center;
  }
  .feature-card ul li {
    font-size: 1rem;
  }

    .services {
    padding: 60px 15px;
  }

  .services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}

.services-cards .card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

}



/* ============================
   TESTIMONIALS SECTION
============================ */
.testimonials {
  margin: 80px 0;
  padding: 0 10%;
}



.testimonials .title {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  margin-bottom: 10px;
  text-align: center;
}

.testimonials h3 {
  font-size: clamp(1.1rem, 1.2vw, 1.25rem);
  font-weight: 200;
  color: rgba(0, 0, 0, 0.66);
  text-align: center;
  margin-bottom: 40px;
}

/* Horizontal scroll wrapper */
.clients-wrapper {
  overflow-x: auto;
  padding-bottom: 20px;
}

.clients-wrapper::-webkit-scrollbar {
  display: none;
}

.clients {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
}

.clients .card {
  flex: 0 0 320px; /* width of each card */
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.clients .card:hover {
  transform: translateY(-5px);
}

.clients .card img {
  width: 120px;
  display: block;
  margin: 0 auto;
}

.clients .card p {
  margin: 15px 0;
  line-height: 1.6;
  font-size: 1rem;
  color: #333;
}

.clients .card .client-info {
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  color: #002136;
}

/* Scrollbar styling (optional) */
.clients-wrapper::-webkit-scrollbar {
  height: 8px;
}
.clients-wrapper::-webkit-scrollbar-thumb {
  background: #3a5bcc;
  border-radius: 4px;
}
.clients-wrapper::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials {
    padding: 0 20px;
  }

  .clients .card {
    flex: 0 0 260px;
  }
}


/* ------------------------------ *\
          Who are we
\* ------------------------------ */


/*--------------------------------------*\
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;
  }
}



/* ------------------------------ *\
           Process
\* ------------------------------ */


.process {
    padding: 60px 6%;
    background-color: #F9F9F7;
}

.process h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 40px;
}

#tab_section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    font-size: 1.4rem;
    padding-bottom: 20px;
    gap: 10px;
}

.tab_btn {
    cursor: pointer;
    padding: 10px 20px;
    color: #333;
    text-align: center;
    line-height: 1.6;
    font-weight: 500;
    background-color: #ececec;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    animation: fadeIn 1s ease-in-out;
}

.tab_btn:hover {
    background-color: #ddd;
}

.tab_btn.active {
    background-color: #fff;
    color: #3a5bcc;
    margin-top: 0;
    border-bottom: 2px #3a5bcc solid;
    box-shadow: rgba(51, 51, 51, 0.349) 0 -2px 4px 0px;
}

.tabsection {
    background-color: #fff;
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid #4d4c4c5e;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.5s ease-in-out;
}

.section-container {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
}

.hidden {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .process {
        padding: 50px 4%;
    }

    .process h2 {
        font-size: 2rem;
    }

    #tab_section {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .tab_btn {
        font-size: 1.2rem;
        padding: 8px 16px;
    }

    .section-container {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .process {
        padding: 30px 2%;
    }

    .process h2 {
        font-size: 1.8rem;
    }

    .tab_btn {
        font-size: 1rem;
        padding: 6px 12px;
    }

    .section-container {
        font-size: 0.9rem;
    }
}

/*--------------------------------------*\
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 #3a5bcc;
    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;
    }
}


/* ------------------------------ *\
    Cost-Calculator
\* ------------------------------ */

.Cost-Calculator {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.Cost-Calculator .container {
    max-width: 800px;
    margin: 0 auto;
}

.Cost-Calculator h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.Cost-Calculator p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.Cost-Calculator a {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #3a5bcc;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.Cost-Calculator a:hover {
    background-color: #0030cc;
}