* {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* ---------------------------------------------- navbar start -------------------------------------------------- */

.logo{
  width: 100%;
  height: 100%;
}



/* ---------------------------------------------- navbar end -------------------------------------------------- */

/* ---------------------------------- Features --------------------------- */
.features {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 40px 10%;
    background: #fff;
    margin-top: -120px; /* overlaps hero by ~20% */
    position: relative;
    z-index: 3;
  }
  
  
  
  .feature-card {
    background: #f8f9fa;
    padding: 35px 20px;
    text-align: center;
    border-radius: 12px;
    transition: transform 0.3s;
  }
  
  .feature-card-1{
    background-color: #0E3E4C;
    color: white;
  }
  
  
  .feature-card i {
    font-size: 40px;
    color: #ffb400;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }
  
  .feature-card p {
    font-size: 15px;
    color: #555;
  }
  
  .feature-card-1 p{
    color: white;
  }
  
  .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .header-container {
      flex-direction: column;
      align-items: flex-start;
    }
    .header-right {
      margin-left: 0;
      width: 100%;
    }
    .top-bar {
      flex-direction: column;
      align-items: flex-start;
    }
    .navbar {
      flex-direction: column;
      align-items: flex-start;
      margin-top: 10px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 32px;
    }
    .nav-links {
      flex-direction: column;
      gap: 12px;
    }
  }
  
  /* ---------------------------------- Features end here --------------------------- */
  
  
/* ---------------------------------- intro --------------------------- */

/* Introduction Section */
.introduction {
    padding: 80px 10%;
    background: #fff;
    font-family: 'Poppins', sans-serif;
  }
  
  .intro-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }
  
  .intro-text {
    flex: 1;
  }
  
  .section-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    display: block;
    margin-bottom: 10px;
    position: relative;
  }
  
  .section-subtitle::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: #222;
    top: 50%;
    left: -50px;
  }
  
  .section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #012b2f;
  }
  
  .intro-highlight {
    border-left: 3px solid #f8b400;
    padding: 10px 15px;
    background: #f9f9f9;
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
  }
  
  .intro-desc {
    font-size: 15px;
    margin-bottom: 20px;
    color: #666;
  }
  
  .intro-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .intro-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
  }
  
  .intro-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .btn-primary {
    background: #012b2f;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
  }
  
  .btn-primary:hover {
    background: #f8b400;
    color: #000;
  }
  
  .btn-secondary {
    font-size: 14px;
    color: #012b2f;
    text-decoration: none;
    font-weight: 500;
  }
  
  .btn-secondary span {
    font-weight: 700;
    color: #f8b400;
  }
  
  /* Right Images */


  .intro-img{
    width: 800px;
    height: 400px;
  }
  
  
  .img-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
  }
  
  
  .intro-images {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .main-img img {
    width: 350px;
    /* height: 450px; */
    border-radius: 12px;
    border: 2px solid black;
  }
  
  .overlay-img {
    position: absolute;
    left: -80px;    
    bottom: -15px;  
  }
  
  
  .overlay-img img {
    width: 220px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  @media (max-width: 992px) {
    .intro-container{
      display: flex;
      flex-direction: column-reverse;
    }
    .overlay-img{
      display: none;
    }
  }
  
  .experience-badge {
    position: absolute;
    bottom: 15px;
  
  
    background: #f8b400;
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 10px;
    border-radius: 50%;
    font-size: 14px;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    z-index: 2;
  }
  
  /* ----------------------------2nd section ------------------------- */
  /* ---------------------------------- intro end here --------------------------- */
  
/* ---------------------------------- services --------------------------- */


/* Services Section */
.services {
    background: #0c3842;
    padding: 60px 10%;
    text-align: center;
  }
  .hervices_h2{
    color: white;
    font-size: 28px;
    margin-bottom: 25px;
  }
  
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .service-box {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    transition: 0.3s;
  }
  
  .service-box:hover{
    background: #ffb400;
    border-color: #ffb400;
    color: #000;
    font-weight: bold;
  }
  
  .service-btn .btn {
    background: #ffb400;
    color: #000;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
  }
  
  .service-btn .btn:hover {
    background: #ffc933;
  }
  
  .service_icon{
    border: 1px solid white;
    border-radius: 50%;
    padding: 3px;
  }
  
  .service_icon:hover{
    background-color: white;
  }
  
  /* ---------------------------------- services end here --------------------------- */

/* ---------------------------------- work process --------------------------- */




  
  /* ---------------------------------- recent works card section ------------------- */
  
.recent-work-container{
    /* background-color: #0b3d46; */
    padding: 20px 10px;
    color: whitesmoke;
    text-align: justify;
  
  }
  
  .recent-work-container h4{
    text-align: center;
    color: #ffb703;
  
  }
  
  .recent-work-container h2{
    text-align: center;
    font-size: 24px;
    font-weight: bolder;
    color: #0b3d46;
  }
  /*--------------------------------------------- new code  -------------*/

  
  /*------------------------------------------------- recent work section end --------------------------------------------------- */
  
  /*------------------------------------------------- company performance  section --------------------------------------------------- */
  .stats-section {
    position: relative;
    /* background: url('') no-repeat center center/cover; */
    padding: 80px 20px;
    color: #fff;
  }
  
  /* dark overlay */
  .stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 61, 70, 0.85);
    z-index: 0;
  }
  
  .stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    padding: 20px 10px;
  }
  
  /* white divider line */
  .stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: #fff;
  }
  
  /* small circle at middle of divider */
  .stat-item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: 88%;
    right: -6px;
    width: 12px;
    height: 12px;
    background: #0b3d46;
    border: 2px solid #fff;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  
  .stat-icon {
    font-size: 32px;
    color: #f8c300;
    margin-bottom: 15px;
    display: inline-block;
  }
  
  .stat-number {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #f8c300;
  }
  
  
  /*------------------------------------------------- compnay performance  section end --------------------------------------------------- */
  /*------------------------------------------------- testimonials section --------------------------------------------------- */
  /* Testimonials Section */
.testimonials {
    padding: 80px 10%;
    /* background: #0a2f43; */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
  }

  

  .testimonials .tag{
    color: #ffb400;


  }
  .testimonials h2{
    color: #0b3d46;

  }
  .testimonials .section p{
    color: #000;

  }
  
 
  /* Grid */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  /* Card */
  .testimonial-card {
    background: #10364d;
    padding: 30px 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  }
  
  .client-img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
  }
  
  .client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffb400;
  }
  
  .review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
    margin-bottom: 20px;
  }
  
  .client-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
  }
  
  .client-role {
    font-size: 13px;
    color: #ffb400;
  }
  
  /*------------------------------------------------- testimonials section end --------------------------------------------------- */
  /*------------------------------------------------- staff section  --------------------------------------------------- */
  .staff-section {
    background: #023047;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-header .section-tag {
    color: #ffb703;
    font-weight: bold;
    position: relative;
  }
  
  .section-header .section-tag::before,
  .section-header .section-tag::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #ffb703;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .section-tag::before {
    /* left: 50px; */
    
    right: 100%;
    margin-right: 10px;
  }
  
  .section-tag::after {
    /* right: 50px; */
    
    left: 100%;
    margin-left: 10px;
  }
  
  
  .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 15px 0;
    color: white;
  }
  
  .section-header p {
    color: #ccc;
    max-width: 600px;
    margin: auto;
    font-size: 15px;
  }
  
  /* Staff Cards */
  .staff-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .staff-card {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    max-width: 280px;
    position: relative;
    transition: transform 0.3s ease;
  }
  
  .staff-card:hover {
    transform: translateY(-10px);
  }
  
  .staff-img {
    position: relative;
  }
  
  .staff-img img {
    width: 280px;
    height: 300px;
    display: block;
  }
  
  .social-icons {
    position: absolute;
    width: 60px;
    padding: 10px 5px;
    top: 20px;
    left: -60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.3s ease;
    background: #023047;
  
  }
  
  .social-icons a {
    color: #ffb703;
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
    transition: background 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #fff;
  }
  
  .staff-card:hover .social-icons {
    left: 20px;
  }
  
  /* Staff Info */
  .staff-info {
    background: #ffb703;
    padding: 15px;
    text-align: left;
  }
  
  .staff-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #000;
  }
  
  .staff-info span {
    font-size: 14px;
    color: #333;
  }
  
  
  /*------------------------------------------------- staff section end --------------------------------------------------- */

  
  /*------------------------------------------------- blog section  --------------------------------------------------- */
  .blog-section {
    padding: 80px 10%;
    text-align: center;
    background: #fff;
  }
  
  .section-header {
    margin-bottom: 20px;
  }
  
  .section-tag {
    color: #0b3d46;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    display: inline-block;
    padding: 0 60px;
    /* margin-bottom: 10px; */
  }
  
  
  .section-tag::before,
      .section-tag::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 40px;
        height: 2px;
        background: #0b3d46;
      }
  
      .section-tag::before {
        right: 100%;
        margin-right: 10px;
      }
  
      .section-tag::after {
        left: 100%;
        margin-left: 10px;
      }
  
  .section-header .blog-section-title{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0b3d46;
  }
  
  .section-subtitle {
    font-size: 16px;
    color: #6c757d;
  }
  
  /* blog cardds */
  .blog-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
  }

/*this design for  blog cards view page */
  .blog-cards-view{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px; 
      justify-items: center;
      align-items: start; 
    }

  
  .blog-card {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    max-width: 320px;
    transition: transform 0.3s;
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
  }
  
  .blog-image {
    position: relative;
    overflow: hidden;
  }
  
  .blog-image img {
    width: 100%;  
    height: 300px;
  
    display: block;
    transition: transform 0.4s ease;
  }
  
  .blog-card:hover .blog-image img {
    transform: scale(1.1);
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 48, 71, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
  }
  
  .overlay i {
    font-size: 28px;
    color: #ffb703;
  }
  
  .blog-card:hover .overlay {
    opacity: 1;
  }
  
  .blog-content {
    padding: 20px;
    text-align: left;
  }
  
  .blog-meta {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
  }
  
  .blog-title {
    font-size: 18px;
    font-weight: 600;
    color: #023047;
    margin-bottom: 15px;
  }
  
  .read-more {
    color: #023047;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }
  
  .read-more:hover {
    color: #ffb703;
  }
  
  
  @media only screen and (max-width: 768px) {

    .blog-cards {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .blog-cards-view {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
  }
  
  /*------------------------------------------------- blog section end --------------------------------------------------- */



/*------------------------------------------------- free trial section  --------------------------------------------------- */
.free-trial-h2{
    text-align: center;
    margin: 15px 0;
  }
  .trial-text{
    text-align: justify;
    font-size: 18px;
  }
  
  .trial-text span{
    color: red;
    text-align: center;
  }
  
  .free-trial-container{
    display: flex;
    justify-content:space-around;
    /* justify-items: center; */
  }
  .service-selction-form{
    width: 500px;
    padding: 30px;
    background-color: greenyellow;
  }
  
  @media only screen and (max-width: 768px) {
    /* CSS rules for screens 768px wide or smaller (e.g., tablets and phones) */
  
    .free-trial-container {
      display: flex;
      flex-direction: column;
    }
  
    .service-selction-form{
      width: 90%;
      margin: auto;
    }
  
    .free-trial-text{
      width: 90%;
    }
    .trial-text{
      width: 80%;
    }
  }
  
  
  
  
  /*------------------------------------------------- free trial section end --------------------------------------------------- */
  

