* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: sans-serif;
    }

    .navbar1 {
      background-color: white;
      padding: 10px 20px;
      height: 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
    }
    .left-nav a, .right-nav a {
      text-decoration: none;
      color: #031119;
      font-size: 1rem;
    }
    .left-nav a i {
      margin-right: 5px;
    }
    .right-nav a {
      font-size: 1.1rem;
    }
    .right-nav a:hover,
    .left-nav a:hover {
      color: rgb(227, 161, 39);
    }

    /* ----------- MAIN NAVBAR ------------ */
    header {
      background-color: #031119;
      padding: 10px 20px;
      position: fixed;
      top: 50px;
      left: 0;
      width: 100%;
      z-index: 999;
      border-bottom: 1px solid rgb(227, 161, 39);
    }

    .navbar2 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .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 rgb(227, 161, 39) 2px;
      text-underline-offset: 4px;
    }

    /* ----------- TOGGLE (HAMBURGER) ------------ */
    .nav_toggle {
      display: none;
    }

    .nav_icon {
      display: none;
      font-size: 30px;
      color: white;
      cursor: pointer;
      order: 3;
    }
    .nav_icon::before {
      content: "\2630";
    }
    .nav_toggle:checked + .nav_icon::before {
      content: "\2715";
    }

    /* ----------- RESPONSIVE CSS ------------ */
    @media (max-width: 768px) {
      .navbar1 {
        display: none;
      }
      header {
        top: 0; 
      }
      .nav_content {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #031119;
        margin-top: 10px;
        padding: 10px 0;
      }
      .nav_content a {
        padding: 10px;
        text-align: center;
        font-size: 1rem;
      }
      .nav_icon {
        display: block;
      }
      .nav_toggle:checked ~ .nav_content {
        display: flex;
      }
    }

    /* ----------- BODY PADDING FIX ------------ */
    body {
      padding-top: 120px;
    }
    @media (max-width: 768px) {
      body {
        padding-top: 70px;
      }
    }

    /* ----------- HERO SECTION ------------ */
    .hero {
      background-image: url("hero img.png");
      background-repeat: no-repeat;
      background-size: cover;
      background-color: #f9f4ed;   
      height: 100vh;                   
      display: flex;
      align-items: center;             
      justify-content: flex-start;    
      padding: 0 50px;
      text-align: left;
    }
    .container {
      max-width: 750px;
      width: 100%;
    }
    .container-name1 {
      font-size: 60px;
      color: white;
      margin-bottom: 10px;
      margin-left: 200px;
    }
    .container-name {
      font-size: 100px;
      color: white;
      font-weight: bold;
      margin-left: 100px;
    }
    .tag-line{
        color:rgb(227, 161, 39);
        font-size:40px;
        margin-left:190px;
        margin-top: 10px;
    }
    @media (max-width: 992px) {
      .container-name1 {
        font-size: 48px;
        margin-left: 50px;
      }
      .container-name {
        font-size: 80px;
        margin-left: 50px;
      }
      .tag-line{
        font-size: 30px;
        margin-left: 30px;
      }
    }
    @media (max-width: 768px) {
      .hero {
        background-image: none;
        background-color: #031119;
        justify-content: center;
        text-align: center;
        padding: 100px 20px;
        height: auto;
      }
      .container-name1 {
        font-size: 36px;
        margin-left: 0;
      }
      .container-name {
        font-size: 60px;
        margin-left: 0;
      }
      .tag-line{
        font-size: 30px;
        margin-left:0px;
      }
    }
    @media (max-width: 480px) {
      .hero {
        padding: 80px 15px;
      }
      .container-name1 {
        font-size: 28px;
        margin-left: 0;
      }
      .container-name {
        font-size: 42px;
        margin-left: 0;
      }
      .tag-line{
        font-size: 30px;
        margin-left: 30px;
      }
    }

    .services {
        padding: 50px 0;
        background-color: #031119;
    }

    .main-info {
        font-size: 20px;
        text-align: center;
        max-width: 1000px;
        margin: 0 auto;
        color:white;
        padding: 0 15px;
    }

    .main-description {
        color:white;
    }
    .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: #031119;
        border-radius: 5px;
        padding: 30px;
        color: white;
        gap: 2px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        transition: background-color 0.3s, color 0.3s, transform 0.3s;
        border: 1px solid rgb(227, 161, 39);
    }
    .services_iteam:hover {
        background-color: white;
        color: #031119;
        transform: translateY(-5px);
    }
    .feature-svg {
        height: 150px;
        width: 150px;
        border-radius: 5px;
        border: 0.5px solid #031119;
    }

    .feature-title {
        font-size: 20px;
        margin: 10px;
    }

    .feature-description {
        font-size: 16px;
        margin-left: 10px;
        padding: 5px;
        color: white;
    }

    .feature-description:hover {
        color: #031119;
    }
    .services_iteam:hover .feature-description {
    color: #031119;
}
/* ---------- 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;
        }
    }

.about {
  padding: 50px 0;
  background-color: #031119;
}
/* heading */
.about_heading {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 30px;
  padding: 0 16px;
}
.about_heading .main-title {
  font-size: 28px;
  color:white;
  margin-bottom: 10px;
}
.about_heading .main-description {
  color:white;
  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);
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
  border: 1px solid rgb(227, 161, 39);
}
.about_iteam:hover {
  background-color:white;
  color: white;
  transform: translateY(-5px);
}
.about_iteam:hover .about_description {
  color:black;
}
.about_iteam:hover .about_title {
  color:black;
}
.about_avtar {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-svg {
  height:150px;
  border-radius: 10px;
  border: 0.5px solid rgb(227, 161, 39);
}
/* title */
.about_title {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
  text-align: center;
  color:white;
}

/* description */
.about_description {
  font-size: 16px;
  margin-top: 5px;
  color:white;
  text-align: center;
}

@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;
  }
}

.contact {
    padding: 30px 0;
    background-color: #031119;
}

.contact_heading {
    text-align: center;
    padding: 10px;
}

.contact_heading h1 {
    font-size: 28px;
    margin: 0;
    color: white;
}

.us {
    color:white;
}

.contact_list {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.contact_iteam {
    background-color: #031119;
    padding: 30px;
    box-sizing: border-box;
    width: 48%;
    border-top: 3px solid white;
    min-width: 320px;
    border: 1px solid rgb(227, 161, 39);
    border-radius:10px;
}

/*  LEFT SIDE  */
.visit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact_me {
    width: 100%;
    max-width: 400px;  
    min-height:100px;  
    padding:45px;     
    font-size: 20px;   
    text-align: center;
    background-color: #031119;
    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;
    border: 1px solid rgb(227, 161, 39);
}
.contact_me:hover {
    background-color: white;
    border: 1px solid rgb(227, 161, 39);
    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: white;
    display: inline-block;
    width: 100%;
}

.contact_me:hover .visit_a {
    color: black;
}

.contact-heading, 
.contact-description {
    animation: fadeSlide 0.8s ease-out;
}

/*RIGHT SIDE  */
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 rgb(227, 161, 39);
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    background-color: #031119;
}
.form_msg {
    height: 150px;
    resize: none;
}

.send_button {
    height: 45px;
    width: 180px;
    font-size: 18px;
    margin-top: 20px;
    border-radius: 25px;
    border: 1px solid rgb(227, 161, 39);
    color:white;
    background-color:#031119;
    transition: background-color 0.3s, color 0.3s;
}

.send_button:hover {
    background-color:white;
    color:black;
    border: 1px solid rgb(227, 161, 39);
}

/*  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 Section */
.social {
    background-color: #031119;
    padding: 30px 0;
    width: 100%;
}

/* Social List */
.social_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

/* Social Item */
.social_item {
    flex: 1;                
    min-width: 300px;        
    max-width: 350px;         
    border-top: 1px solid rgb(227, 161, 39);
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Headings */
.social_item h3 {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin: 5px 0 8px 0;
    color: white;
}
.bar {
    display: inline-block;
    width: 4px;
    height: 18px;
    background-color:rgb(227, 161, 39);
    margin-right: 8px;
}
.social_item p {
    font-size: 15px;
    margin: 3px 0;
    line-height: 1.4;
    color: white;
}
/* Tablet view */
@media (max-width: 992px) {
    .social_list {
        justify-content: center;
        gap: 20px;
    }
    .social_item {
        flex: 1 1 45%;
        max-width: none;
        text-align: center;
    }
}
/* Mobile view */
@media (max-width: 576px) {
    .social_list {
        flex-direction: column;
        align-items: center;
    }
    .social_item {
        flex: 1 1 100%;
        text-align: center;
    }
    .social_icons {
        justify-content: center;
    }
    .social_item h3 {
        justify-content: center;
    }
}
.foot {
    padding: 20px 15px;
    background-color:#031119;
}
.p_footer {
    text-align: center;
    font-size: 18px;
    color:white;
    margin:0;
    padding-top: 20px;
    border-top: 1px solid rgb(227, 161, 39);
}
@media (max-width: 992px) {
    .p_footer {
        font-size: 16px;
        padding: 0 15px;
        padding-top: 15px;
    }
}
@media (max-width: 576px) {
    .p_footer {
        font-size: 14px;
        padding: 0 10px;
        line-height: 1.4;
         padding-top: 15px;
    }
}
