* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

/* ----------- SOCIAL NAVBAR (TOP) ------------ */
.navbar1 {
  background-color: white;
  padding: 10px 20px;
  height: 50px; /* fixed height */
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  flex-wrap: wrap;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.left-nav a {
  margin-right: 15px;
  text-decoration: none;
  color: #005751;
  font-size: 1rem;
}
.left-nav a i {
  margin-right: 5px;
}
.right-nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #005751;
  font-size: 1.2rem;
}

.right-nav a:hover,
.left-nav a:hover {
  color: #00c8b3;
}

/* ----------- MAIN NAVBAR ------------ */
header {
  background-color: #005751;
  padding: 10px 20px;

  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.navbar2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav_toggle {
  display: none;
}
.nav_icon {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  order: 3;
}

.nav_left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo {
  height: 50px;
  width: 60px;
  border-radius: 10px;
}
.nav_c_name {
  font-size: 22px;
  color: white;
  font-weight: bold;
}
.nav_content {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav_a_content {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
}
.nav_a_content:hover {
  text-decoration: underline #00c8b3 2px;
  text-underline-offset: 4px;
}

.social_mobile {
  display: none;
  gap: 15px;
}

.social_mobile a {
  color: white;
  font-size: 1.2rem;
}

/* ----------- RESPONSIVE CSS ------------ */
@media (max-width: 768px) {
  .navbar1 {
    display: none;
  }

  header {
    top: 0;
  }

  .nav_icon {
    display: block;
    order: 3;
  }

  .nav_content {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    order: 4;
  }

  .nav_toggle:checked ~ .nav_content {
    display: flex;
  }

  .nav_a_content {
    padding: 10px 0;
  }

  .social_mobile {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
  }

  .navbar2 {
    flex-direction: row;
  }
}
body {
  padding-top: 120px;
}
.hero{
   background-image: url("hero1.png");
   background-repeat: no-repeat;
   background-size: contain;
   background-position: right center; 
   background-color:#f9f4ed; 
   height: 100vh;
}
.container{
  max-width: 750px;
  margin-left: 70px;;
  padding: 100px 20px;
  text-align: center;
} 
.hero h1{
    font-size:40px;
    text-align: center;
    color: #005751;
}
.hero h3{
    text-align: center;
    font-size:25px;
    margin:20px;
    font-weight: bold;
    color: #ff6600;
}
.subtitle{
    font-size:20px;
    text-align: center;
    color:black;
}
.hero-actions{
    text-align: center;
    margin:40px;
    margin:40px;
    gap: 10px;
}
.cta-button {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
    border: 2px solid #005751;
    color: #005751;
}
.cta-button.primary{
  font-weight: bold;
    color: #005751;
}
.cta-button.secondary{
    font-weight: bold;
}
.cta-button.secondary:hover{
    background-color:#005751;
    color:white;
}
@media (max-width: 1024px) {
  body {
  padding-top:50px;
}
  .hero {
    background-position: center;
    background-size: cover;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .container {
    padding: 60px 15px;
    padding-top:120px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero h3 {
    font-size: 20px;
  }

  .subtitle {
    font-size: 16px;
  }

  .cta-button {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* Extra small devices */
@media (max-width: 300px) {
  .hero {
    background-image: none;
    background-color: #f9f4ed;
  }

  .container {
    padding: 40px 10px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero h3 {
    font-size: 18px;
  }

  .subtitle {
    font-size: 14px;
  }
}
.services {
        padding: 50px 0;
        background-color: white;
    }

    .main-info {
        font-size: 20px;
        text-align: center;
        max-width: 1000px;
        margin: 0 auto;
        color: #005751;
        padding: 0 15px;
    }

    .main-description {
        color: black;
    }

    .services_list {
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        margin-top: 40px;
        gap: 20px;
    }

    .services_iteam {
        box-sizing: border-box;
        width: 23%;
        min-width: 250px;
        margin-bottom: 20px;
        text-align: center;
        background-color: white;
        border-radius: 5px;
        padding: 30px;
        color: #005751;
        gap: 2px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transition: background-color 0.3s, color 0.3s, transform 0.3s;
    }

    .services_iteam:hover {
        background-color: #005751;
        color: white;
        transform: translateY(-5px);
    }

    .feature-svg {
        height: 150px;
        width: 150px;
        border-radius: 5px;
        border: 0.5px solid #005751;
    }

    .feature-title {
        font-size: 20px;
        margin: 10px;
    }

    .feature-description {
        font-size: 16px;
        margin-left: 10px;
        padding: 5px;
        color: black;
    }

    .feature-description:hover {
        color: white;
    }

    .read-more1 {
        margin-top: 20px;
    }

    .read_more {
        color: white;
        text-decoration: none;
        font-size: 18px;
        padding: 5px;
        width: 150px;
        border-radius: 5px;
        border: 1px solid white;
        background-color: #005751;
        display: inline-block;
    }

    .services_iteam:hover .feature-description {
    color: white;
}
    /* ---------- Responsive Design ---------- */
    @media (max-width: 1200px) {
        .services_iteam {
            width: 30%;
        }
    }

    @media (max-width: 992px) {
        .services_iteam {
            width: 45%;
        }
    }

    @media (max-width: 576px) {
        .services_iteam {
            width: 100%;
        }
        .feature-svg {
            height: 120px;
            width: 120px;
        }
        .feature-title {
            font-size: 18px;
        }
        .feature-description {
            font-size: 14px;
        }
        .read_more {
            font-size: 16px;
            width: auto;
            padding: 8px 15px;
        }
    }
    .about {
  padding: 50px 0;
  background-color: #f1f8f7;
}

/* heading */
.about_heading {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 30px;
  padding: 0 16px;
}
.about_heading .main-title {
  font-size: 28px;
  color: #005751;
  margin-bottom: 10px;
}
.about_heading .main-description {
  color: black;
  font-size: 20px;
}

/* list container */
.about_list {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}
.about_list1 {
  padding: 20px;
  box-sizing: border-box;
  width: 49%;
}

/* card container */
.about_container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

/* single card */
.about_iteam {
  box-sizing: border-box;
  width: 48%;
  padding: 20px;
  border-radius: 10px;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  color: #005751;
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
}
.about_iteam:hover {
  background-color: #005751;
  color: white;
  transform: translateY(-5px);
}
.about_iteam:hover .about_description {
  color: white;
}
.about_iteam:hover .about_title {
  color: white;
}

/* image inside */
.about_avtar {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-svg {
  height: 50px;
  border-radius: 10px;
  border: 0.5px solid #005751;
  transition: transform 0.4s ease;
}
.about_iteam:hover .about-svg {
  transform: scale(1.15);
}

/* title */
.about_title {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
  text-align: center;
  color: #005751;
}

/* description */
.about_description {
  font-size: 16px;
  margin-top: 5px;
  color: black;
  text-align: center;
}

/* button */
.about-btn {
  margin-top: 15px;
  text-align: center;
}
.learn-more-btn {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 5px;
  border: 1px solid white;
  background-color: #005751;
  display: inline-block;
  transition: all 0.2s ease;
}
.learn-more-btn:hover {
  background-color: #f1f8f7;
  border: 0.5px solid #005751;
  color: black;
}

/* image right side  */
.about_img {
  height: 500px;
  width: 100%;
  background-image: url(about1.png);
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about_img:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about_list1 {
    width: 100%;
  }
  .about_iteam {
    width: 48%;
  }
  .about_img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .about_list {
    flex-direction: column;
    align-items: center;
  }
  .about_container {
    flex-direction: column;
    align-items: center;
  }
  .about_iteam {
    width: 100%;
  }
  .about_img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .about_heading .main-title {
    font-size: 22px;
  }
  .about_heading .main-description {
    font-size: 14px;
  }
  .about_iteam {
    padding: 15px;
  }
  .about_description {
    font-size: 14px;
  }
  .learn-more-btn {
    font-size: 14px;
    padding: 6px 12px;
  }
  .about_img {
    height: 240px;
  }
}
.scope_heading {
    text-align: center;
    color: #005751;
    padding: 20px;
}

.scope_heading h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.our_graphic {
    padding: 20px 0;
}

.graphic_list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

/* ---------- Left Image ---------- */
.scope-img {
    background-image: url(scope.jpg);
    background-size: cover;
    background-position: center;
    height: 480px;
    width: 450px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease;
}
.scope-img:hover {
    transform: scale(1.03);
}
.timeline {
    position: relative;
    padding-left: 70px;
    max-width: 600px;
}

.timeline::before {
    content: "";
    position: absolute;
    left:35px;
    top:20px;
    bottom:-5px;
    width: 2px;
    background-color: #005751;
}

.timeline-step {
    position: relative;
    margin-bottom:40px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left:-50px;
    top: 0;
    background-color: #eaf5f4;
    border: 2px solid #005751;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #005751;
    line-height: 26px;
    z-index: 1;
}

.step-content {
    padding-left: 20px;
}

.scope_heading1 {
    color: #005751;
    margin: 0 0 5px 0;
    font-size:20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.scope_para {
    color: #333;
    font-size:16px;
    line-height: 1.5;
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .graphic_list {
        flex-direction: column;
        align-items: center;
    }
    .scope-img {
        height: 400px;
        width: 90%;
    }
}

@media (max-width: 768px) {
    .timeline {
        padding-left:40px;
    }
    .timeline::before {
        left: 25px;
    }
    .step-number {
        left:-30px;
    }
}

@media (max-width: 480px) {
    .scope_heading h1 {
        font-size: 22px;
    }
    .scope-img {
        height: 220px;
    }
    .scope_heading1 {
        font-size: 16px;
    }
    .scope_para {
        font-size: 14px;
    }
}
/* MAIN CONTACT SECTION */
.contact {
    padding: 30px 0;
    background-color: #f1f8f7;
}

.contact_heading {
    text-align: center;
    padding: 10px;
}

.contact_heading h1 {
    font-size: 28px;
    margin: 0;
}

.us {
    color: #005751;
}

.contact_list {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.contact_iteam {
    background-color: #f1f8f7;
    padding: 30px;
    box-sizing: border-box;
    width: 48%;
    border-top: 3px solid #005751;
    min-width: 320px;
}

/*  LEFT SIDE  */
.contact_iteam_heading {
    text-align: center;
    color: #005751;
    font-size: 22px;
    margin-bottom: 20px;
}

.visit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact_me {
    width: 100%;
    max-width: 400px;  
    min-height: 80px;  
    padding:45px;     
    font-size: 20px;   
    text-align: center;
    background-color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    border-radius: 0px 20px 0px 20px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_me:hover {
    background-color: #005751;
    border-radius: 20px 0px 20px 0px;
    transform: scale(1.05); 
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15); 
}

.visit_a {
    text-decoration: none;
    color: black;
    display: inline-block;
    width: 100%;
}

.contact_me:hover .visit_a {
    color: white;
}

.contact-heading, 
.contact-description {
    animation: fadeSlide 0.8s ease-out;
}


/*RIGHT SIDE  */
.contact-heading {
    color: #005751;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px; 
}

.contact-description {
    text-align: center;
    margin-top: 0; 
    color: black;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px; 
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form_name, .form_msg, .file_input {
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
    border: 1px solid #005751;
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    background-color: #fff;
}

.form_msg {
    height: 150px;
    resize: none;
}

.send_button {
    height: 45px;
    width: 180px;
    font-size: 18px;
    margin-top: 20px;
    border-radius: 25px;
    border: 1px solid #005751;
    color: white;
    background-color: #005751;
    transition: background-color 0.3s, color 0.3s;
}

.send_button:hover {
    background-color: white;
    color: #005751;
}

/*  RESPONSIVE STYLES  */
@media (max-width: 1024px) {
    .contact_iteam {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact_me {
        font-size: 16px;
        padding: 12px;
    }
    .form_name, .form_msg, .file_input {
        max-width: 90%;
    }
    .send_button {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .contact_heading h1 {
        font-size: 22px;
    }
    .contact_iteam_heading h1 {
        font-size: 18px;
    }
}
.social {
    background-color: #f1f8f7;
    padding: 30px 0;
}
.social_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.social_item {
    width: 19%;
    border-top: 1px solid #005751;
    padding-top: 5px; /* Reduced for better vertical alignment */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.social_item h3 {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin: 5px 0 8px 0; /* Tighter spacing above */
}
.bar {
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color: #005751;
    margin-right: 8px;
}
.social_item p {
    font-size: 15px;
    margin: 3px 0;
    line-height: 1.4;
}
.social_icons {
    display: flex;
    gap: 10px;
    font-size: 20px;
    margin-top: 3px; 
}
.social_icons a {
    color: #005751; 
    transition: color 0.3s, transform 0.3s;
}
.social_icons a:hover {
    color: #009688;
    transform: scale(1.2); 
}
/* Tablet view */
@media (max-width: 992px) {
    .social_item {
        width: 45%;
        margin-bottom: 20px;
        text-align: center;
    }
}

/* Mobile view */
@media (max-width: 576px) {
    .social_item {
        width: 100%;
    }
    .social_icons {
        justify-content: center;
    }
    .social_item h3 {
        justify-content: center;
    }
}
.foot {
    padding: 20px 10px;
    background-color: #005751;
}
.p_footer {
    text-align: center;
    font-size: 18px;
    color: white;
    margin: 0;
}
@media (max-width: 992px) {
    .p_footer {
        font-size: 16px;
        padding: 0 15px;
    }
}
@media (max-width: 576px) {
    .p_footer {
        font-size: 14px;
        padding: 0 10px;
        line-height: 1.4;
    }
}