* {
    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%;
}

nav {
    /* position: fixed; */
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul {
    width: 100%;
    height: 120px;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 80px;
}

nav a {
    height: 100%;
    padding: 0 30px;
    /* margin-top: 20px;
    margin-bottom: 20px; */
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    font-size: 18px;
}

nav a:hover {
    background-color: #f0f0f0;
}

nav li:first-child {
    margin-right: auto;
}
nav li:first-child:hover {
    background-color: white;
}


/*--------------- sidever css ---------------*/


.sidebar{
position: fixed;
top: 0;
right: 0;
height: 100vh;
width: 250px;
z-index: 999;
background-color: rgba(255, 255, 255, 0.436);
backdrop-filter: blur(10px);
box-shadow: -10px 0 10px rgba(0, 0,0, 0.1);
display:none;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
}

.sidebar li{ 
    width: 100%;

}
.sidebar a{
 width: 100%;
}

.menu_button{
    display: none;
}

@media (max-width:800px) { 
.hideOnmobile{
    display: none;
}
.menu_button{
        display: block; } 
}
@media (max-width:400px) {
    .sideber{
    width: 100%;
}
.menu_button{
    display: block;
}

}

/* ---------------------------------------------- navbar end -------------------------------------------------- */


/* ---------------------------------------------- hero new code -------------------------------------------------- */

.hero {
    position: relative;
    min-height: 95vh;
    background: url('https://envisionstudio.cloud/media/intro_image/behind-the-scenes-our-experts-working-office-graphic-design-team-creativity_C1Fo32F.webp')
    no-repeat center / cover;
  overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 10%;
    color: #fff;
    z-index: 1;
  }
  
  .hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1; /* overlay sits under text */
  }
  
  .hero-content {
    position: relative;
    max-width: 650px;
    z-index: 2;
  }
  
  .hero-content h5 {
    font-size: 18px;
    color: #ffb400;
    margin-bottom: 12px;

    backdrop-filter: blur(1px); 
    background: rgba(0, 0, 0, 0.15); 
  }
  
  .hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 15px;

    backdrop-filter: blur(1px); 
    background: rgba(0, 0, 0, 0.15); 
  }
  
  .hero-content h1 span {
    color: #ffb400;
  }
  
  .hero-content p {
    font-size: 17px;
    margin-bottom: 25px;

    backdrop-filter: blur(1px); 
    background: rgba(0, 0, 0, 0.15); 

  }
  
  .hero-btn {
    background: #ffb400;
    color: #000;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .hero-btn:hover {
    background: #ffc933;
  }
  
  /* --------------------------------- hero end here ---------------------- */
  

/* ---------------------------------- 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 --------------------------- */


/* Work Process Section */
.work-process {
    background: #fff;
    padding: 80px 10%;
    text-align: center;
  }
  
  .work-header h5 {
    color: #0c3842;
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
  }
  
  
  .work-header h5::before,
  .work-header h5::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #0b3d46;
  }
  
  .work-header h5::before {
    right: 100%;
    margin-right: 10px;
  }
  
  .work-header h5::after {
    left: 100%;
    margin-left: 10px;
  }
  
  .work-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #0c3842;
  }
  
  .work-header p {
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto 40px;
    color: #555;
  }
  
  .process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: start;
  }
  
  .process-card {
    text-align: center;
  }
  
  .process-img {
    position: relative;
    display: inline-block;
  }
  
  .process-img img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #ffb400;
  }
  
  .process-img .icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ffb400;
    color: #000;
    padding: 12px;
    border-radius: 50%;
    font-size: 16px;
  }
  
  .process-card h3 {
    font-size: 20px;
    margin: 15px 0 8px;
    color: #0c3842;
  }
  
  .process-card p {
    font-size: 15px;
    color: #555;
  }
  
  /* ---------------------------------- work process end here --------------------------- */

  
  /* ---------------------------------- 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  -------------*/
  
  /* CSS (paste into CodePen's CSS panel) */
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
  
  :root{
    --card-radius: 12px;
    --gap: 24px;
    /* --bg: #f6f7f8; */
  }
  
  .wraper{
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    margin:0;
    background:var(--bg);
    color:#222;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    padding:28px;
    display:flex;
    justify-content:center;
  }
  
  .wrap{
    width:100%;
    max-width:1400px;
  }
  
  /* header */
  .title{
    margin: 0 0 18px 8px;
    font-weight:600;
    color:#333;
    font-size:18px;
  }
  
  /* grid: 2 columns on small, 4 on desktop */
  .grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
  }
  
  /* desktop breakpoint: 4 columns */
  @media(min-width: 980px){
    .grid{
      grid-template-columns: repeat(4, 1fr);
      gap: 2;
    }
  }
  
  /* card */
  .card{
    background: transparent;
    border-radius: var(--card-radius);
    display:block;
    /* gap: 2; */
  }
  
  /* compare box */
  .img-compare{
    position:relative;
    width:100%;
    aspect-ratio: 16 / 10; 
    border-radius: var(--card-radius);
    overflow:hidden;
    box-shadow: 0 10px 30px rgba(20,30,40,0.06), 0 2px 6px rgba(20,30,40,0.04);
    background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.01));
    touch-action: none; 
    -webkit-user-select:none;
    user-select:none;
  }
  

  
  /* base image covers container */
  .base-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    pointer-events:none;
    user-select:none;
  }
  
  /* overlay-wrapper is clipped by left: var(--pos) */
  .overlay-wrapper{
    position:absolute;
    top:0;
    bottom:0;
    left:var(--pos);
    right:0;
    overflow:hidden;
    pointer-events:none; /* allow events to reach container/handle */
    z-index:1;
  }
  
  
  /* vertical divider at the split */
  .divider{
    position:absolute;
    top:0;
    bottom:0;
    left:var(--pos);
    transform:translateX(-50%);
    width:4px;
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    box-shadow: 0 0 0 1px rgba(0,0,0,0.04) inset;
    z-index:2;
    pointer-events:none;
  }
  
  /* circular handle */
  .handle{
    position:absolute;
    left:var(--pos);
    top:50%;
    transform: translate(-50%, -50%);
    z-index:3;
    width:46px;
    height:46px;
    border-radius:50%;
    border: 3px solid rgba(255,255,255,0.95);
    background: linear-gradient(180deg, #ffffff, #f6f7f9);
    box-shadow: 0 8px 20px rgba(12,18,25,0.12), 0 1px 0 rgba(255,255,255,0.6) inset;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:ew-resize;
    padding:0;
    transition: box-shadow .15s ease, transform .08s ease;
  }
  
  .handle:hover,
  .handle:focus{
    transform: translate(-50%, -50%) scale(1.02);
    box-shadow: 0 12px 30px rgba(12,18,25,0.14);
    outline: none;
  }
  
  .handle svg{ display:block; }
  
  body.is-dragging .handle{
    transform: translate(-50%, -50%) scale(1.03);
  }
  
  .handle:focus{
    box-shadow: 0 0 0 4px rgba(90,140,255,0.12);
  }
  
  @media(max-width:480px){
    .title{ font-size:15px }
    .handle{ width:40px; height:40px }
  }
  
  
  /*------------------------------------------------- recent work section end --------------------------------------------------- */
  /*------------------------------------------------- pricing section  --------------------------------------------------- */
    
    /* Pricing Container */

 /* Section Container */
 .pricing-section {
    text-align: center;
    padding: 60px 20px;
  }
  
  /* Small "Projects" tag with lines */
  .pricing-section .pricing-wrap {
    font-size: 14px;
    font-weight: 600;
    color: #0b3d46;
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  .pricing-section .pricing-wrap::before,
  .pricing-section .pricing-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #0b3d46;
  }
  
  .pricing-section .pricing-wrap::before {
    right: 100%;
    margin-right: 10px;
  }
  
  .pricing-section .pricing-wrap::after {
    left: 100%;
    margin-left: 10px;
  }
  
  .pricing-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a2e35;
    margin-bottom: 10px;
  }
  
  .pricing-section p {
    max-width: 600px;
    margin: 0 auto 50px;
    color: #6f6f6f;
    font-size: 14px;
    line-height: 1.6;
  }
  
  /* Pricing Container */
  
  /*------------------------------------------------- pricing  section end --------------------------------------------------- */
  /*------------------------------------------------- company performance  section --------------------------------------------------- */
  .stats-section {
    position: relative;
    background: url('./2018-02-28_163751.png') 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;

  }
  
  .section-header.light .sub-title {
    color: #ffb400;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
  }
  
  .section-header.light h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .section-header.light p {
    color: #ddd;
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 50px auto;
  }
  
  /* 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 --------------------------------------------------- */
  



.copyright{
    width: 100%;
    height: 100px;
    color: white;
    background-color: #0f0f0f;

    text-align: center;










    font-size: 18px;
    padding: 40px;
}

/*------------------------------------------------- footer section end --------------------------------------------------- */
