* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /* color: #333; */
    background: #f7f7f7;
    scroll-behavior: smooth;
}

.navbar {
    position: sticky;
    top: 0;
    background: #004d99;
    padding: 8px 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* .navbar h1 {
    color: #fff;
    font-size: 24px;
 
} */

.nav-logo{
    background-image: url("./images/logo-TopCV.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80px;
    width: 360px;
}

.navbar ul {
    display: flex;
    list-style: none;
    /* justify-content: center; */
}

.navbar a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}
.navbar a:hover{
    color: #ff6600;
}

.hero {
    text-align: center;
    background: #004d99;
    color: #fff;
    padding: 100px 20px 60px 20px;
    /* height: 50vh; */
}

.hero-name {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button {
    background: #ff6600;
    padding: 10px 16px;
    font-weight: bold;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
}

/* -----------about section ------------ */

.about {
    margin: 80px auto;
    width: 80%;
}

.about h1 {
    text-align: center;
    font-size: 5vmin;
    color: #004d99;
}

.line {
    margin: 10px auto;
    width: 120px;
    height: 4px;
    background: #ff6600;
}

.about .row {
    display: flex;
    margin: 50px;
    /* flex-wrap: wrap; */
}

.row p {
    padding: 50px;
}

/* ------------highlighted div----------- */

.important-contents {
    width: 100%;
    padding: 50px 100px;
    background-color: #004d99;
    color: whitesmoke;
    text-align: center;
}


/* --------------process section------------ */

.process {
    margin: 80px auto;
}

.process h2 {
    text-align: center;
    color: #004d99;
}

.section {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
}

.faqs .faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
}

.toggle-icon {
    font-size: 24px;
    color: #007BFF;
    transition: transform 0.3s ease;
}

.faq-answer {
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

/* .faq-item.active .faq-answer { */
.active .faq-answer {
    display: block;
    padding-top: 10px;
}

.active .toggle-icon {
    transform: rotate(45deg);
    color: #dc3545;
}

/* -----------Template section-------- */

.our-work-slider {
  padding: 80px 20px;
  text-align: center;
  background-color: #f8f9fa;
}

.our-work-slider h1 {
  /* font-size: 2rem; */
  color: #004d99;
  /* margin-bottom: 100px; */
}

/* .our-work-slider p {
  color: #666;
  margin-bottom: 30px;
} */

.slider-container {
  position: relative;
  max-width: 900px;
  margin: 50px auto;
  overflow: hidden;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 5px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  max-width: 360px;
  height: 450px;
  margin: 0 auto;

}

.slide {
  min-width: 100%;
  display: none;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slide.active {
  display: block;
}

.tsprev, .tsnext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #004d99;
  color: white;
  border: none;
  font-size: 1.2rem;
  padding: 12px;
  cursor: pointer;
  border-radius: 50%;
}

.tsprev { left: 30px; }
.tsnext { right: 30px; }

.tsprev:hover, .tsnext:hover {
  background-color: #007BFF;
}


/* -------------pricing table-------------- */

.pricing {
    margin: 100px auto;
}

.pricing h1 {
    text-align: center;
    color: #004d99;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.pricing-card {
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 25px;
    width: 300px;
    height: 350px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #333;
}

.price {
    font-size: 20px;
    color: #004d99;
    margin: 10px 0 20px;
    font-weight: bold;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin: 10px 0;
    font-size: 15px;
    color: #555;
}

button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
}

button:hover {
    background-color: #0056b3;
}

/* ------------------testimonial section------------ */

.testimonials {
    margin: 100px 0;
}

.testimonials h1 {
    text-align: center;
    color: #004d99;
}

.testimonial-section {
    max-width: 1000px;
    /* height: 350px; */
    margin: 60px auto;
    padding: 50px 30px;
    background: white;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* .testimonial-section h2 {
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
} */

.testimonial-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px 50px;
}

.testimonial p {
    font-size: bold;
    padding: 30px;
    color: #555;
    margin: 0 0 10px;
}

.testimonial h4 {
    color: #222;
    font-weight: normal;
}

.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #004d99;
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    z-index: 10;
}

.prev {
    left: 5px;
}

.next {
    right: 5px;
}

.nav:hover {
  background-color: #007BFF;
}

/* ---------------contact us section------------ */

.contact-section {
    /* background-color: #f9f9f9; */
    /* padding: 60px 20px; */
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    text-align: center;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 32px;
    color: #004d99;
    margin-bottom: 10px;
}

.contact-section p {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 250px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.contact-card h4 {
    color: #004d99;
    margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
    color: #444;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
}

.contact-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

* /--------------whats app -------------- */

.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
  background-color: #25d366;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  display: block;
}

.whatsapp-tooltip {
  width: max-content;
  background-color: #004d99;
  color: #fff;
  text-align: center;
  padding: 6px 10px;
  border-radius: 6px;
  position: absolute;
  right: 120%;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  font-size: 16px;
  transition: opacity 0.3s ease;
}


/* -----------------footer----------------- */

.footer {
    text-align: center;
    padding: 20px;
    background: #333;
    color: #fff;
    margin-top: 40px;
}

/* ----------------mobile responsive--------------- */

@media only screen and (max-width:850px) {
    .about .row {
        flex-direction: column;
        width: 90%;
        align-items: center;
    }

    
}