* {
     margin: 0; 
     padding: 0; 
     box-sizing: border-box; 
    }
html, body { 
    height: 100%; 
    /* overflow: hidden; */
    font-family: 'Segoe UI', sans-serif; 
    
}
/* start navigation bar */
header {
    background: #fff;
    padding: 0px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .logo {
    color: #333;
    font-size: 24px;
    font-weight: bold;
  }

  nav {
    display: flex;
    gap: 20px;
  }

  nav a {
    position: relative;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 15px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
  }

  nav a::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3c6fb5;
    z-index: -1;
    transition: top 0.4s ease;
  }

  nav a:hover {
    color: #fff;
  }

  nav a:hover::before {
    top: 0;
  }

  .right-section {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .social-icons {
    display: flex;
    gap: 25px;
  }

  .social-icons a {
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #aaa;
  }

  .animated-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #073842;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease;
  }

  .animated-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #073842;
    transition: left 0.4s ease;
    z-index: -1;
  }

  .animated-btn:hover {
    color: #fff;
  }

  .animated-btn:hover::before {
    left: 0;
  }
/* mobile header start */
@media (max-width: 768px) {
  .mobile-header {
    display: flex !important;
  }
  header {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-header {
    display: none;
  }
}


.mobile-header {
  display: none;
  width: 100%;
  background: #ffff;
  color: white;
  padding: 15px 20px;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-icon {
  font-size: 44px;
  cursor: pointer;
  color: #000;
  font-weight: 600;
}
.side-menu {
  position: fixed;
  top: 0;
  left: -70%;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  display: flex;
  flex-direction: column;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 999;
}
.side-menu.active {
  left: 0;
}
.side-menu .close-icon {
  align-self: flex-end;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 20px;
}
.side-menu a {
  color: white;
  text-decoration: none;
  margin-bottom: 15px;
  font-size: 18px;
}
.dropdown{
  margin-bottom: 15px;
}
.dropdown-content {
  display: none;
  flex-direction: column;
  margin-left: 10px;
}
.dropdown-content a {
  font-size: 16px;
  margin-bottom: 10px;
}
.dropdown.open .dropdown-content {
  display: flex;
}
.bni{
    margin-top:30px;
}

/* end header end */
  /* end navigation bar */

  .slider-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1s ease, transform 8s ease;
  }

  .slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }

  .slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1.1);
  }

  .content-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    /* background: rgba(0, 0, 0, 0.5); */
    color: #fff;
    padding: 30px;
    /* border-radius: 10px; */
    opacity: 0;
    z-index: 2;
    overflow: hidden;
  }

  .vertical-bar {
    position: absolute;
    left: 40%;
    top: 120px;
    transform: translateX(-50%);
    width: 400px;
    height: 0;
    /* background: linear-gradient(to top, rgba(255,255,255,0.3), rgba(255,255,255,0)); */
   background:  linear-gradient(to top, rgb(10 10 10 / 54%), rgba(255, 255, 255, 0));
    z-index: 1;
    /* border-radius: 10px; */
  }

  .slide.active .vertical-bar {
    animation: growVerticalBar 2s ease forwards;
  }

  @keyframes growVerticalBar {
    from {
      height: 0;
      opacity: 0;
    }
    to {
      height: 300px;
      opacity: 1;
    }
  }

  .slide.active .content-box {
    opacity: 1;
  }

  .slide.active[data-slide="0"] .content-box,
  .slide.active[data-slide="2"] .content-box {
    animation: growFromTop 1s ease forwards;
  }

  .slide.active[data-slide="1"] .content-box {
    animation: growFromLeft 1s ease forwards;
  }

  @keyframes growFromTop {
    0% {
      height: 0;
      transform: translate(-50%, -50%) scaleY(0);
      opacity: 0;
    }
    100% {
      height: auto;
      transform: translate(-50%, -50%) scaleY(1);
      opacity: 1;
    }
  }

  @keyframes growFromLeft {
    0% {
      width: 0;
      transform: translate(-50%, -50%) scaleX(0);
      opacity: 0;
    }
    100% {
      width: 700px;
      transform: translate(-50%, -50%) scaleX(1);
      opacity: 1;
    }
  }

  .content-box h1 {
    font-size: 66px;
    margin-bottom: 10px;
    text-align: center;
  }

  .content-box p {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
  }

  .content-box a {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }

  .nav-buttons {
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
  }

  .nav-buttons i {
    font-size: 18px;
    color: white;
    padding: 15px;
    border: 2px solid white;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .nav-buttons i:hover {
    background: white;
    color: black;
  }
 /* media query start */
 @media (max-width: 768px) {
  .slider-wrapper {
    height: 100vh; /* reduce height on mobile */
  }

  .content-box {
    width: 90%;
    padding: 20px 15px;
    top: 55%;
  }

  .content-box h1 {
    font-size: 60px;
  }

  .content-box p {
    font-size: 25px;
  }

  .content-box a {
    font-size: 14px;
    padding: 8px 16px;
  }

  .vertical-bar {
    width: 200px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }

  @keyframes growFromLeft {
    0% {
      width: 0;
      transform: translate(-50%, -50%) scaleX(0);
      opacity: 0;
    }
    100% {
      width: 90%;
      transform: translate(-50%, -50%) scaleX(1);
      opacity: 1;
    }
  }

  @keyframes growFromTop {
    0% {
      height: 0;
      transform: translate(-50%, -50%) scaleY(0);
      opacity: 0;
    }
    100% {
      height: auto;
      transform: translate(-50%, -50%) scaleY(1);
      opacity: 1;
    }
    
  }

  .nav-buttons {
    top: auto;
    bottom: 20px;
    right: 20px;
    flex-direction: row;
    gap: 10px;
  }

  .nav-buttons i {
    font-size: 16px;
    padding: 10px;
  }

 
  .left-box h1 {
    font-size: 40px;
    font-weight: 500;
    
  }
  .about-images{
    padding-top: 30px;
  }
}
 /* media query end */
  /* start about section  */

  .services-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 80px;
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
  }
  
  .left-box {

    /* max-width: 60%; */
    width: 900px;
   
    
  }
  
  .left-box h1 {
    font-size: 50px;
    font-weight: 700;
    color: #3c6fb5;
    margin: 0;
  }
  
  .left-box hr {
    width: 100%;
    border: none;
    border-top: 1px solid #ccc;
    margin: 20px 0;
  }
  
  .left-box p {
    font-size: 22px;
    color: #063940;
    margin: 0;
    font-style: italic;
  }
  
  .right-box {
    /* align-self: flex-end; */
    align-self: flex-end;
    width: 300px;
    height: 200px;
    background-image: url('../upload/Flower-pot-home.webp');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
   
  }
  
  .services-link {
    color: #102a43;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    font-weight: 500;
  }
  
  .services-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #102a43;
    transition: all 0.3s ease;
  }
  
  .services-link:hover::after {
    width: 0;
  }
  

   /* end about section  */

   /* start service description section */

   .services-section-discription {
    max-width: 1200px;
    margin: auto;
    padding: 0px 160px;
  }
   .services-grid-discription {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    
  }

  .column {
    flex: 1;
    min-width: 250px;
  }

  .service-item-discription {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #0c2a4d;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .service-item-discription i {
    color: #0c2a4d;
    margin-right: 10px;
    font-size: 12px;
  }

  .service-item-discription:hover {
    transform: translateX(5px);
    color: #002244;
  }

  @media (max-width: 768px) {
    .services-section-discription {
      padding: 0 70px; /* reduced padding for small screens */
    }
  
    .services-grid-discription {
      flex-direction: column;
      gap: 20px; /* less gap for compact layout */
    }
  
    .column {
      flex: 1 1 100%; /* full width columns on mobile */
      min-width: unset; /* remove the minimum width */
    }
  
    .service-item-discription {
      font-size: 14px;
      margin-bottom: 12px;
    }
  
    .service-item-discription i {
      font-size: 10px;
      margin-right: 8px;
    }
    .right-box {
      margin-left: 40px;
    }
    .counter-section {
      display: grid;
    }
  }

   /* end service description section */


   /* start counter-box section */

   .counter-section {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }

  .counter-box {
    flex: 1;
    min-width: 250px;
    padding: 20px;
  }

  .count {
    font-size: 64px;
    font-weight: 600;
    color: transparent;
    -webkit-text-stroke: 1px #0c2a4d;
    margin-bottom: 10px;
  }

  .line1 {
    height: 1px;
    background: #ccc;
    width: 60%;
    margin: 0 auto 10px;
    margin-left: 01;
  }

  .label {
    font-weight: 600;
    color: #0c2a4d;
    font-size: 16px;
  }

  /* end counter-box section */

  /* start swap slider container */
  .swap-body{
    font-family: 'Segoe UI', sans-serif;
    /* background: #f4fd7661; */
    padding: 60px 20px;

    background-image: url('../upload/Wallpaper.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

  }
  .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
  }

  /* === Left Slider Section === */
  .swiper-slider-container {
    position: relative;
    width: 50%;
    height: 400px;
  }

  .swiper {
    width: 100%;
    height: 100%;
    border-radius: 8px;
  }

  .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 8px; */
  }

  .swiper-button-prev,
  .swiper-button-next {
    color: #333;
    background: transparent;
    /*border-radius: 50%;*/
    width: 40px;
    height: 20px;
    top: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: absolute;
    bottom: -50px;
    z-index: 10;
    box-shadow: none;
  }
  .swiper-button-prev:after,
  .swiper-button-next:after {
    display: none;
  }

  .swiper-button-prev {
    left: 10px;
  }

  .swiper-button-next {
    left: 60px;
  }

  /* === Right Content Section === */
  .content-section {
    width: 50%;
  }

  .tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
  }

  .tab {
    font-weight: 600;
    cursor: pointer;
    color: #0c2a4d;
    position: relative;
  }

  .tab.active::after {
    content: '';
    width: 100%;
    height: 2px;
    background: #0c2a4d;
    position: absolute;
    bottom: -5px;
    left: 0;
  }

  .description {
    color: #5d6d7e;
    font-size: 15px;
    margin-bottom: 25px;
  }

  .progress-wrapper {
    margin-bottom: 15px;
  }

  .progress-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: #0c2a4d;
  }

  .progress-bar {
    background: #ddd;
    height: 2px;
    position: relative;
    overflow: hidden;
  }

  .progress-bar span {
    display: block;
    height: 100%;
    background: #0c2a4d;
    width: 0;
    transition: width 1s ease-in-out;
  }
  /* query start */


  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      gap: 30px;
      padding: 0 10px;
    }
  
    .swiper-slider-container,
    .content-section {
      width: 100%;
    }
  
    .swiper-button-prev,
    .swiper-button-next {
      position: static;
      margin: 10px 5px 0 0;
      width: 35px;
      height: 35px;
      font-size: 16px;
    }
  
    .tabs {
      flex-wrap: wrap;
      gap: 15px;
    }
  
    .description {
      font-size: 14px;
    }
  
    .progress-label {
      font-size: 13px;
    }
  
    .swap-body {
      padding: 40px 15px;
      background-position: center center;
    }
    .swiper-button-div{
      display: flex;
    }
    .content-section{
      padding-top: 70px;
    }
    .talk-section{
      height: 40vh;
    }
    .talk-overlay {
      height: 40vh;
    }
    .main-service-body hr {
      margin: 2px 0px 0px 50px !important;
    }
    .left-box h1 {
      font-size: 30px !important;
    }
    .main-service-body h1{
      font-size: 30px !important;

    }
    .section-title4 h1{
      font-size: 30px !important;
    }
    .custom-carousel-text h1 {
      font-size: 30px !important;
    }
    .custom-carousel-text hr {
      margin: 2px 0px 20px 110px !important;
    }
    .about-text h1 {
      font-size: 30px !important;
    }
    .heading-sections1 h1{
      font-size: 30px !important;
    }
    .services-section {
      padding: 40px 20px !important;
    }
  }
  
  /* query end */
  /* end swap slider container */


  /* start main service section */

  .main-service-body{

    font-family: 'Inter', sans-serif;
      /* background: #f5f5f5; */
      padding: 60px;


  }
  .main-service-body h1{
    
    justify-content: center;
    text-align: center;
    /*padding-top: 40px;*/
    /* padding-bottom: 70px; */

    font-size: 50px;
    font-weight: 700;
    color: #3c6fb5;
    margin: 0;
  }
  .main-service-body p{
    justify-content: center;
    text-align: center;
    font-size: 22px;
    padding-top: 20px;
    padding-bottom: 60px;
     font-style: italic;
    
    color: #063940;
    
  }
  .main-service-body  hr{
    width: 60%;
    max-width: 900px;
    /* margin: 0 auto 25px; */
    margin: 2px 0px 0px 230px;
    border: none;
    border-top: 1px solid #ddd;
  }
  .main-service-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }

  .main-service-card {
    position: relative;
    width: 30%;
    min-width: 280px;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .main-service-card:hover {
    transform: translateY(-5px);
  }

  .main-overlay {
    /* background: rgba(0, 0, 0, 0.6); */
    color: #fff;
    padding: 20px;
    width: 80%;
    height: auto;
    /* margin: 20px; */
    align-self: flex-end;
    /* border-radius: 8px; */
  }
  .main-overlay a{
    text-decoration: none;
    color: #fff;
  }

  .main-service-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .main-service-desc {
    font-size: 15px;
    line-height: 1.5;
  }

  /* Individual overlays for different card colors */
  .card1 .main-overlay {
    background: rgba(0, 0, 0, 0.6);
  }

  .card2 .main-overlay {
    background: rgba(0, 51, 102, 0.7);
  }

  .card3 .main-overlay {
    background: rgba(102, 51, 0, 0.7);
  }

  @media (max-width: 991px) {
    .main-service-card {
      width: 48%;
    }
  }

  @media (max-width: 767px) {
    .main-service-card {
      width: 100%;
    }
  }

  /* end main service section */


  /* start wallpepar section */

.Wallpapers{
    padding: 10px;
    margin-top: 40px;
    /* background: #003344; */
  }
  .mixed-height-grid-container.variant-two{
    margin: 0 auto;
      width: calc(100% - 80px);
      display: flex;
  
      flex-direction: row;
      gap: 60px;
  }
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap{
    position: relative;
      height: 470px;
      width: 50%;
  }
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item {
        position: absolute;
      background-color: transparent;
      overflow: hidden;
      border-radius: 8px;
  }
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:first-child{
    top: 0;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(3n - 2){
    left: 0;
      width: 40%;
  }
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(2){
    top: 0;
  }
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(3n - 1){
        left: calc(40% + 10px);
      width: calc(30% - 10px);
  }
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(2) picture{
    height: 301px;
  }
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item picture{
    margin: 0;
  }
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item picture{
        display: block;
      width: 100%;
  }
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item picture img {
    width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 1.5s ease;
  }
  /*img[src*=jpeg],img[src*=jpg],img[src*=png],img[src*=webp] {*/
  /*    background-image: unset*/
  /*}*/
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item .type-name{
        font-weight: 300;
      font-size: 60px;
      line-height: 66px;
      letter-spacing: 0;
      color: #303030;
      margin-bottom: 20px;
      margin-top: 32px;
  }
  .cta .animated-arrow-button{
    width: fit-content !important;
      padding: 14px 20px;
      align-items: center;
      font-size: 14px;
      font-weight: 700;
      display: inline-flex !important;
  
      gap: 10px;
      height: 38px;
      cursor: pointer;
      border-radius: 45px;
      border: 1px solid #232426;
      /* background: linear-gradient(135deg, #2b5de3 0%, #07ffe8 100%); */
      color: #063940;
      text-decoration: none;
  }
  .cta .animated-arrow-button:hover{
    background: #fff;
    color: #333;
    border: 1px solid #232426;
  }
  .mixed-height-grid-container.variant-two {
      margin: 0 auto;
      width: calc(100% - 80px);
      display: flex;
      flex-direction: row;
      gap: 60px;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap {
      position: relative;
      height: 470px;
      width: 50%;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item {
      position: absolute;
      background-color: transparent;
      overflow: hidden;
      border-radius: 8px
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item .type-name {
      font-weight: 300;
      font-size: 60px;
      line-height: 66px;
      letter-spacing: 0;
      color: #303030;
      margin-bottom: 20px;
  }
  
  @media(min-width: 1366px) and (max-width:1600px) {
      .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item .type-name {
          font-size:40px;
          line-height: 66px;
      }
  }
  
  @media(min-width: 1025px) and (max-width:1365px) {
      .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item .type-name {
          font-size:40px;
          line-height: 44px
      }
  }
  
  @media(min-width: 992px) and (max-width:1024px) {
      .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item .type-name {
          font-size:30px;
          line-height: 33px;
      }
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item picture {
      display: block;
      width: 100%
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      transition: transform 1.5s ease;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item picture img:hover {
      transform: scale(1.075);
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.two-column .item {
      width: calc(50% - 7.5px);
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.two-column .item picture {
      margin: 0;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.two-column .item:nth-child(odd) {
      left: 0;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.two-column .item:nth-child(2n) {
      left: calc(50% + 7.5px);
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.two-column .item:first-child,.mixed-height-grid-container.variant-two .mixed-height-grid__wrap.two-column .item:nth-child(2) {
      top: 0;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.two-column .item:nth-child(2) picture {
      height: 192px;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.two-column .item:nth-child(3) {
      top: 155px;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.two-column .item:nth-child(3) picture {
      height: 155px;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.two-column .item:nth-child(4) {
      bottom: 0;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.two-column .item:nth-child(4) picture {
      height: 268px;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.two-column .item:nth-child(5) {
      bottom: 0;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.two-column .item:nth-child(5) picture {
      height: 153px;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item picture {
      margin: 0;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(3n - 2) {
      left: 0;
      width: 40%;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(3n - 1) {
      left: calc(40% + 10px);
      width: calc(30% - 10px)
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(3n) {
      left: calc(70% + 10px);
      width: calc(30% - 10px);
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:first-child,.mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(2) {
      top: 0;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(2) picture {
      height: 301px;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(3) {
      top: 0;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(3) picture {
      height: 150px;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(4) {
      bottom: 0;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(4) picture {
      height: 305px;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(5) {
      bottom: 0;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(5) picture {
      height: 152px;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(6) {
      bottom: 0;
  }
  
  .mixed-height-grid-container.variant-two .mixed-height-grid__wrap.three-column .item:nth-child(6) picture {
      height: 305px;
  }
  
  .mixed-height-grid-container.variant-one {
      position: relative;
      margin: 0 30px;
  }
  
  @media(min-width: 320px) and (max-width:991px) {
      .mixed-height-grid-container.variant-one {
          margin:0 10px;
      }
  }
  
  .mixed-height-grid-container.variant-one .grid-title {
      font-size: 32px;
      font-weight: 800;
      line-height: 41.6px;
      color: #000;
      margin: 40px auto 0;
      width: fit-content;
  }
  
  /*@media(min-width: 320px) and (max-width:991px) {*/
  /*    .mixed-height-grid-container.variant-one .grid-title {*/
  /*        font-size:20px;*/
  /*        line-height: 27.32px*/
  /*    }*/
  /*}*/
  
  .mixed-height-grid-container.variant-one .mixed-height-grid__wrap {
      width: 100%;
      position: relative;
  }
  
  .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item {
      position: absolute;
      width: 33.3%;
      margin-bottom: 25px;
      display: none;
  }
  
  @media(min-width: 320px) and (max-width:991px) {
      .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item {
          width:50%;
          margin-bottom: 10px;
      }
  }
  
  .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item.visible {
      display: block;
  }
  
  .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item figure {
      margin: 0 10px;
  }
  
  @media(min-width: 320px) and (max-width:991px) {
      .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item figure {
          margin:0 5px;
      }
  }
  
  .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item figure img {
      width: 100%;
      height: auto;
      display: block;
  }
  
  .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item figure img.radius-top-only {
      border-radius: 10px 10px 0 0;
  }
  
  .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item figure img.radius-all {
      border-radius: 10px;
  }
  
  .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item figure figcaption {
      font-size: 20px;
      font-weight: 700;
      line-height: 28px;
      text-align: left;
      color: #000;
      padding: 20px 20px 0;
      background: #fff;
      overflow-wrap: break-word;
  }
  
  /*@media(min-width: 320px) and (max-width:991px) {*/
  /*    .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item figure figcaption {*/
  /*        padding:20px 12px 0;*/
  /*        font-size: 14px;*/
  /*        line-height: 21px*/
  /*    }*/
  /*}*/
  
  .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item figure .cta {
      padding: 10px 20px 20px;
      background: #fff;
      border-radius: 0 0 10px 10px;
  }
  
  @media(min-width: 320px) and (max-width:991px) {
      .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item figure .cta {
          padding:10px 12px 20px;
          margin-bottom: 10px;
      }
  }
  
  @media(min-width: 992px) {
      .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item:nth-child(3n - 2) {
          left:0;
      }
  
      .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item:nth-child(3n - 1) {
          left: 33.3%;
      }
  
      .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item:nth-child(3n) {
          left: 66.6%;
      }
  }
  
  @media(min-width: 320px) and (max-width:991px) {
      .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item:nth-child(odd) {
          left:0;
      }
  
      .mixed-height-grid-container.variant-one .mixed-height-grid__wrap .item:nth-child(2n) {
          left: 50%;
      }
  }
  
  .mixed-height-grid-container .cta.animated-btn-black a.load-more-button {
      margin-top: 25px;
  }
  
  @media(min-width: 320px) and (max-width:991px) {
      .mixed-height-grid-container .cta.animated-btn-black a.load-more-button {
          margin-top:10px;
      }
  }
  
  .mixed-height-grid-container .cta.animated-btn-black a.load-more-button,.mixed-height-grid-container .cta.animated-btn-black a.read-more-button,.mixed-height-grid-container .cta.animated-btn-black a.view-all-button {
      cursor: pointer !important;
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
  }
  
  @media(min-width: 320px) and (max-width:991px) {
      .mixed-height-grid-container .cta.animated-btn-black a.load-more-button,.mixed-height-grid-container .cta.animated-btn-black a.read-more-button,.mixed-height-grid-container .cta.animated-btn-black a.view-all-button {
          font-size:14px;
          line-height: 21px;
      }
  }
  
  .mixed-height-grid-container .cta.animated-btn-black a.load-more-button .arrow,.mixed-height-grid-container .cta.animated-btn-black a.read-more-button .arrow,.mixed-height-grid-container .cta.animated-btn-black a.view-all-button .arrow {
      cursor: pointer !important;
  }
  
  .mixed-height-grid-container .cta.animated-btn-black a.load-more-button:hover,.mixed-height-grid-container .cta.animated-btn-black a.read-more-button:hover,.mixed-height-grid-container .cta.animated-btn-black a.view-all-button:hover {
      background: #fff7e8 !important;
      border: .5px solid #1e1e1e !important;
  }
  
  .mixed-height-grid-container .cta.animated-btn-black a.load-more-button:hover .arrow,.mixed-height-grid-container .cta.animated-btn-black a.read-more-button:hover .arrow,.mixed-height-grid-container .cta.animated-btn-black a.view-all-button:hover .arrow {
      transform: none;
  }
  .section-title4{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0px;
    /* padding-bottom: 60px; */
  }
  .section-title4 h1{
    /* font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 60px; */



    text-align: center;
    padding: 40px;
    padding-bottom: 70px;
    font-size: 50px;
    font-weight: 700;
    color: #3c6fb5;
    margin: 0;
    
  }
  /* query start */


  @media (max-width: 768px) {
    .Wallpapers {
      padding: 10px;
      margin-top: 20px;
    }
  
    .section-title4 h1 {
      /* font-size: 28px; */
      padding: 20px;
      padding-bottom: 40px;
    }
  
    .mixed-height-grid-container.variant-two {
      flex-direction: column;
      gap: 30px;
      width: 100%;
      padding: 0 10px;
    }
  
    .mixed-height-grid-container.variant-two .mixed-height-grid__wrap {
      width: 100%;
      height: auto;
      position: static;
    }
  
    .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item {
      position: relative;
      width: 100% !important;
      left: auto !important;
      top: auto !important;
      bottom: auto !important;
      margin-bottom: 20px;
    }
  
    .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item picture {
      height: auto !important;
    }
  
    .mixed-height-grid-container.variant-two .mixed-height-grid__wrap .item .type-name {
      font-size: 34px;
      line-height: 30px;
      margin-top: 10px;
      margin-bottom: 10px;
    }
  
    .cta .animated-arrow-button {
      font-size: 13px;
      padding: 12px 16px;
      height: auto;
    }
    .custom-carousel-text hr{
      width: 60%;
      margin: 2px 0px 20px 90px;
    }
  }
  

  /* query end */
  
  /* end wallpaper section */

  /* start talk section
   */
   .talk-section {
    position: relative;
    /*background-image: url('../upload/Have-project-in-mind.webp');*/
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  .talk-section-bannerArchi{
       background-image: url('../upload/Architecture-Consultancy-new-talk.webp');
  }
  .talk-section-bannerHome{
       background-image: url('../upload/Have-project-in-mind.webp');
  }
  .talk-section-bannerAbout{
      background-image: url('../upload/Have-project-in-mind.webp');
  }
  .talk-section-bannerAllservices{
      background-image: url('../upload/Have-project-in-mind.webp');
  }
  .talk-section-banner-Interior-Consultancy{
       background-image: url('../upload/Interior-consultancy-new-talk.webp');
  }
  .talk-section-banner-Vastu-Consultancy{
      background-image: url('../upload/Vastu-Consultancy-new-talk.webp'); 
  }
  .talk-section-banner-Turnkey-Work-Interior{
      background-image: url('../upload/Turnkey-Work-Interior-new-talk.webp'); 
  }
  .talk-section-banner-Commercial-interior{
       background-image: url('../upload/Have-project-in-mind.webp'); 
  }
  .talk-section-banner-Modular-kitchen{
      background-image: url('../upload/Modular-Kitchen-new-talk.webp'); 
  }
   .talk-section-banner-portfolio{
      background-image: url('../upload/Have-project-in-mind.webp'); 
  }

  .talk-overlay {
    background: rgba(0, 0, 0, 0.4);
    padding: 0px 20px;
    width: 100%;
    /* border-radius: 10px; */
    /* max-width: 800px; */
    height: 60vh;
  }

  .talk-heading {
    font-size: 40px;
    font-weight: 500;
    /* margin-bottom: 20px; */
    margin-top: 154px;
  }

  .talk-paragraph {
    font-size: 1.2rem;
    font-weight: 600;
    min-height: 40px;
    /* margin-bottom: 40px; */
    white-space: pre-wrap;
  }

  .talk-btn {
    font-size: 1rem;
    padding: 12px 30px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  
  .talk-btn:hover {
    background: white;
    color: black;
  }

  .talk-btn i {
    font-size: 1.2rem;
  }

  @media (max-width: 768px) {
    .talk-heading {
      font-size: 2rem;
      margin-top: 140px;
    }

    .talk-paragraph {
      font-size: 1rem;
    }
  }

   /* end talk section */


   /* start prosses section */

  .process-section {
    padding: 40px 70px;
    max-width: 1400px;
    margin: auto;
  }

  .steps-wrapper {
    display: flex;
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px; */
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
    gap: 0px;
  }

  .steps-wrapper::before {
    content: "";
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ccc;
    z-index: 0;
  }

  .step-item {
    flex: 1 1 200px;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
  }

  .step-icon {
    width: 140px;
    height: 140px;
    /* border-radius: 50%; */
    overflow: hidden;
    margin: 0 auto 10px;
    /* border: 4px solid #1e3a5f; */
    position: relative;
    background-color: #fff;
  }

  .step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .step-number {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #1e3a5f;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }

  .step-title {
    font-size: 22px;
    font-weight: 600;
    color: #073842;
    /* font-family: "Segoe UI", sans-serif; */
    /* margin-top: 15px; */
    /* text-align: left; */
  }
  .step-description{
    font-family: "Segoe UI", sans-serif;
    padding-top: 19px;
  }
  

  @media (max-width: 768px) {
    .steps-wrapper {
      flex-direction: column;
      /* grid-template-columns: repeat(2, 1fr); */
      align-items: center;
    }

    .steps-wrapper::before {
      display: none;
    }
  }
  /* @media (max-width: 992px) {
    .steps-wrapper {
        
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .steps-wrapper {
      grid-template-columns: 1fr;
    }
  } */

   /* end prosses section */

   /*  start custom-carousel*/

   .custom-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    /* background: #fbfecb; */

    background-image: url('../upload/Wallpaper.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .custom-carousel-text{
    padding-bottom: 60px;
    justify-content: center;
    text-align: center;
  }

  .custom-carousel-text h1{
    color: #3c6fb5;
    font-size: 50px;
    font-weight: bold;

  }
  .custom-carousel-text hr {
    width: 50%;
    max-width: 900px;
    /* margin: 0 auto 25px; */
    margin: 2px 0px 20px 300px;
    border: none;
    border-top: 1px solid #1f1f1f3d;
  }
  .custom-carousel-text p{
    font-size: 22px;
    color: #063940;
    padding: 10px;
    font-style: italic;
  }

  .custom-carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
  }

  .custom-slide {
    flex: 0 0 20%; /* 5 items on screen */
    max-width: 20%;
    padding: 0 10px;
    box-sizing: border-box;
    transform: scale(0.85);
    transition: transform 0.5s ease;
    position: relative;
  }

  .custom-slide.active {
    transform: scale(1.05);
    z-index: 2;
  }

  .custom-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    /* border-radius: 12px; */
  }

  .caption {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    /* background-color: rgba(0, 0, 0, 0.6); */
    background-color: rgb(0 0 0 / 38%);
    color: #fff;
    padding: 6px 12px;
    font-size: 14px;
    /* border-radius: 5px; */

  }
  .custom-slide .caption {
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
  }
  .custom-slide:hover .caption {
    opacity: 1;
  }
  

  /* Buttons */
  .custom-prev,
  .custom-next {
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
  }

  .custom-prev {
    left: 10px;
  }

  .custom-next {
    right: 10px;
  }

  @media (max-width: 768px) {
    .custom-slide {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  /*start query */
        /* Tablet view: 768px and below */
@media (max-width: 768px) {
  .custom-carousel-text h1 {
    font-size: 36px;
  }
  .custom-carousel-track {
    justify-content: center !important;
   
  }

  .custom-carousel-text hr {
    margin: 2px auto 20px; /* Center on smaller screens */
    width: 60%;
  }

  .custom-carousel-text p {
    font-size: 18px;
  }

  .custom-slide {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .custom-slide img {
    height: 220px;
  }

  .custom-prev,
  .custom-next {
    top: 65%;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* Mobile view: 480px and below */
@media (max-width: 480px) {
  .custom-carousel {
    padding: 20px 0;
  }

  .custom-carousel-text h1 {
    font-size: 28px;
  }

  .custom-carousel-text hr {
    width: 70%;
    margin: 2px auto 15px;
  }

  .custom-carousel-text p {
    font-size: 16px;
    padding: 5px;
  }

  .custom-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .custom-slide img {
    height: 180px;
  }

  .custom-prev,
  .custom-next {
    top: 60%;
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .caption {
    font-size: 12px;
    padding: 4px 8px;
  }
  .news-section h2 {
      font-size: 35px !important;
  }
}

  /*end query*/
   /*  end custom-carousel*/


   /* blog section start */

   .news-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 60px;
    text-align: left;
  }

  .news-section h2 {
    font-size:50px;
    margin-bottom: 10px;
    /* padding-left:70px; */
    color: #3c6fb5;
    font-weight: bold;
  }

  .news-section p {
    font-size: 22px;
    /* padding-left:70px; */
    margin-bottom: 20px;
    margin-top:30px ;
    color: #073842;
    font-style: italic;
  }

  .news-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 30px;
    flex-wrap: wrap;
  }

  .news-card {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #fff;
    /* border-radius: 8px; */
    overflow: hidden;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
    text-align: left;
    transition: transform 0.3s ease;
  }

  .news-card:hover {
    transform: translateY(-5px);
  }

  .news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .news-content {
    padding: 15px;
  }

  .news-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
  }

  .news-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #003049;
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
  }

  .news-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 0%;
    background-color: #003049;
    transition: width 0.3s ease;
  }

  .news-title:hover::after {
    width: 100%;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .news-card {
      flex: 1 1 calc(50% - 20px);
    }
  }

  @media (max-width: 768px) {
    .news-card {
      flex: 1 1 100%;
    }
  }
  hr{
    /* margin-left: 70px; */
  /* width: 1070px; */
  height: 0.1px;
  background: #edebeb00;
  font-weight: 400;
   

  }

    /* blog section end */


    /* footer section start */

    .footer {
      background-color: #073842;
      padding: 60px 30px 20px;
      margin-top: 30px;
    }
    
    .footer-container {
      max-width: 1183px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
    }
    
    .footer-column {
      flex: 1 1 200px;
      min-width: 180px;
    }
    
    .footer h4 {
      font-size: 18px;
      margin-bottom: 20px;
      color: #f5f2f2;
      margin-top: 20px;
    }
    
    .footer p {
      font-size: 17px;
      color: #f5f2f2;
      line-height: 1.6;
    }
    .footer p a{
      text-decoration: none;
      color: #fff !important;
    }
    
    .footer ul {
      list-style: none;
      padding: 0;
    }
    
    .footer ul li {
      margin-bottom: 10px;
      list-style: none;
    }
    
    .footer ul li a {
      color: #f5f2f2;
      text-decoration: none;
      font-size: 17px;
      transition: 0.3s;
    }
    
    .footer ul li a:hover {
      text-decoration: underline;
    }
    
    .footer .contact-info i {
      margin-right: 8px;
      color: #3467af;
    }
    
    .store-buttons {
      display: flex;
      gap: 10px;
      margin: 15px 0;
    }
    
    .store-buttons a {
      background: #333;
      padding: 10px 15px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #fff;
      font-size: 14px;
    }
    
    .social-icons {
      display: flex;
      gap: 10px;
      margin-top: 10px;
      margin-bottom: 10px;
    }
    
    .social-icons a {
      width: 30px;
      height: 30px;
      background: #3467af;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 14px;
      text-decoration: none;
      transition: 0.3s;
    }
    
    .social-icons a:hover {
      background: #063940;
      /* background: linear-gradient(135deg, #2b5de3  0%, #07ffe8 100%); */
      color: #fff;
    }
    
    .footer-bottom {
      text-align: center;
      font-size: 14px;
      padding: 30px;
      border-top: 1px solid #adaaaa;
      color: #555;
      background-color: #073842;
    }
    
    .footer-bottom .payment-icons {
      margin-bottom: 10px;
    }
    
    .footer-bottom .payment-icons i {
      margin: 0 6px;
      font-size: 18px;
      color: #444;
    }
    
    /*start scrolling button*/
     /* Scroll Button Styling start*/
    #scrollTopBtn {
      display: none; /* Hidden by default */
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      background-color: #000;
      color: #fff;
      border: none;
      outline: none;
      width: 40px;
      height: 40px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 20px;
      transition: opacity 0.3s ease;
    }
    #scrollTopBtn:hover {
      opacity: 0.8;
    }
    
    /*end scrolling button*/
    
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        gap: 40px;
        text-align: start;
      }
    
      .store-buttons {
        justify-content: center;
      }
    
      .social-icons {
        justify-content: center;
      }
    }

    /* Floating Icons start */
/*.floating-icons {*/
/*  position: fixed;*/
/*  bottom: 30px;*/
/*  right: 20px;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 15px;*/
/*  z-index: 998;*/
/*}*/
/*.floating-icons .icon {*/
/*  width: 50px;*/
/*  height: 50px;*/
/*  background-color: white;*/
/*  border-radius: 50%;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);*/
/*  transition: transform 0.2s ease;*/
/*  text-decoration: none;*/
/*}*/
/*.floating-icons .icon:hover {*/
/*  transform: scale(1.1);*/
/*}*/
/*.floating-icons .icon img {*/
/*  width: 28px;*/
/*  height: 28px;*/
/*}*/

/* Container floating vertically */
.floating-icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.floating-icons a{
   text-decoration:none;
}

/* Each icon box */
.floating-icons .icon {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Icon colors */
.floating-icons .icon.orange {
  background: #15d715;
}

.floating-icons .icon.blue {
  background: #577ce5;
}
.floating-icons .icon.pink {
  background: linear-gradient(88deg, #ca15f7, #fe3947);
}
.floating-icons .icon.red {
  background: #b50c24;
}
.floating-icons .icon.blue-light {
  background: #22c5db;
}

.floating-icons .icon i {
  color: #fff;
  font-size: 22px;
}

/* Hidden label by default */
.floating-icons .icon .label {
  position: absolute;
  right: 45px;
  background: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  font-size: 13px;
}

/* Tooltip arrow */
.floating-icons .icon .label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #333;
}

/* Show label on hover */
.floating-icons .icon:hover .label {
  opacity: 1;
  transform: translateX(0);
}

/* Floating Icons end */
/* 8888888all banner images start8888888888888 */

.hero-image-allservices {
  width: 100%;
  height: 100%;
  background: url('../upload/Service-banner-1.jpeg') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-Architecture-consultancy {
  width: 100%;
  height: 100%;
  background: url('../upload/Architecture-Consultancy-new-banner.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-Commercial-interior {
  width: 100%;
  height: 100%;
  background: url('../upload/Commercial-banner.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-Interior-Consultancy {
  width: 100%;
  height: 100%;
  background: url('../upload/Interior-consultancy-new-banner.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-Modular-kitchen {
  width: 100%;
  height: 100%;
  background: url('../upload/Modular Kitchen-new-banner.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-Turnkey-Work-Interior {
  width: 100%;
  height: 100%;
  background: url('../upload/Turnkey-Work-Interior-new-banner.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-Vastu-Consultancy {
  width: 100%;
  height: 100%;
  background: url('../upload/Vastu-Consultancy-new-banner.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-portfilio {
  width: 100%;
  height: 100%;
  background: url('../upload/protfolio1350 × 400.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-countact-us {
  width: 100%;
  height: 100%;
  background: url('../upload/contact-us-1350 × 400.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}
.hero-image-all-blogs {
  width: 100%;
  height: 100%;
  background: url('../upload/blog-1350 × 400.webp') no-repeat center center;
  background-size: cover;
  position: relative;
}

/* 8888888all banner images end 8888888888888 */
    /******************************************* about page  **********************************/

    .about-hero {
      width: 100%;
      height: 400px;
      position: relative;
      overflow: hidden;
    }
    
    .hero-image {
      width: 100%;
      height: 100%;
      background: url('../upload/About-us-banner.webp') no-repeat center center;
      background-size: cover;
      position: relative;
    }
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /*background: rgb(0 0 0 / 14%);*/
      background: rgb(0 0 0 / 34%);
    }
    
    .hero-content {
      position: absolute;
      top: 20% !important;
      left: 0;
      transform: translate(-50%, -50%);
      text-align: center;
      color: #fff;
      z-index: 1;
      width: 90%;
      text-align: right;
      max-width: 800px;
    }
    
    .hero-content h1 {
      font-size: 18px;
      font-weight: 600 !important;
      margin-bottom: 20px;
      font-family: 'Ubuntu', sans-serif;
      /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); */
      color: #fff;
    }
    
    .hero-content p {
      font-size: 18px;
      font-weight: 400;
      line-height: 1.6;
      font-family: 'Ubuntu', sans-serif;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    /* Responsive styles for about hero section */
    @media screen and (max-width: 768px) {
      .hero-content h1 {
          font-size: 32px;
      }
    
      .hero-content p {
          font-size: 16px;
      }
      .hero-content{
        transform: none;
      }
    }
    
    @media screen and (max-width: 480px) {
      .hero-content h1 {
          font-size: 28px;
      }
    
      .hero-content p {
          font-size: 15px;
      }
     
    
   
    }

    /* about section from about page */

    .about-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 80px 5%;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1;
      min-width: 280px;
    }

    .about-text h1 {
      font-size: 50px;
      margin-bottom: 10px;
      color: #3c6fb5;
      font-weight: bold;
    }

    .about-text hr {
      width: 50%;
      border: 1px solid #ccc;
      margin: 20px 0;
    }

    .about-text p {
      font-size: 15px;
      color: #303030c7;
      text-align: justify;
    }
    .about-text.about-text-p  {
        font-size: 22px;
    color: #063940;
    margin: 0;
    font-style: italic;
       }
    .about-images {
      position: relative;
      flex: 1;
      display: flex;
      justify-content: center;
      min-width: 280px;
    }

    .image-stack {
      position: relative;
      width: 320px;
      height: 400px;
    }

    .image-stack img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      transition: all 0.6s ease;
      opacity: 0;
      transform: scale(0.95);
    }

    .image-stack img.active {
      opacity: 1;
      transform: scale(1);
      z-index: 3;
    }

    .image-stack img.prev {
      z-index: 2;
      top: 10px;
      left: 10px;
      opacity: 0.5;
    }

    .image-stack img.prev2 {
      z-index: 1;
      top: 20px;
      left: 20px;
      opacity: 0.3;
    }

    .nav-buttons2 {
      /* margin-top: 20px;
      text-align: center;
      font-size: 1.5rem; */

      margin-top: -60px;
    text-align: right;
    font-size: 1.5rem;
    margin-right: 410px;
    padding-bottom: 20px;
    }

    .nav-buttons2 button {
      background: none;
      border: none;
      cursor: pointer;
      margin: 0 10px;
      font-size: 1.5rem;
    }

    /* lime lime section start */

    
    .timeline-container {
      max-width: 1200px;
      margin: auto;
      position: relative;
      padding: 40px 20px;
    }

    .timeline-line {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 2px;
      background-color: #1c2a4c;
      transform: translateY(-50%);
      z-index: 0;
    }

    .timeline {
      display: flex;
      justify-content: flex-start;
      flex-wrap: nowrap;
      overflow-x: auto;
      position: relative;
      z-index: 1;
      padding: 13px 0;
    }

    .timeline-item {
      flex: 1 0 auto;
      width: 300px;
      margin: 0 40px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
    }

    .timeline-dot {
      width: 20px;
      height: 20px;
      background-color: #1c2a4c;
      border-radius: 50%;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
    }

    .top {
      margin-bottom: 10px;
    }

    .bottom {
      /* margin-top: 120px; */
      margin-top: 100px;
    }

    .timeline-content, .timeline-image-wrapper {
      width: 100%;
      text-align: center;
    }

    .timeline-title {
      font-weight: bold;
      color: #3c6fb5;
      margin-bottom: 8px;
      font-size: 22px;
    }

    .timeline-text {
      font-size: 14px;
      color: #555;
      margin-bottom: 8px;
      text-align: justify;
    }

    .timeline-year {
      font-size: 13px;
      color: #999;
    }

    .timeline-image-wrapper img {
      width: 100%;
      /* border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    }

    @media (max-width: 768px) {
      .timeline {
        gap: 20px;
      }
    }


    @media (max-width: 768px) {
      .timeline-container {
        padding: 20px 10px;
      }
    
      .timeline {
        flex-direction: column;
        gap: 40px;
        position: relative;
      }
    
      .timeline-line {
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #ccc;
        position: absolute;
      }
    
      .timeline-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
        padding-bottom: 40px;
      }
    
      .timeline-dot {
        width: 14px;
        height: 14px;
        background: #0c2a4d;
        border-radius: 50%;
        position: relative;
        z-index: 2;
        margin: 10px 0;
      }
    
      .timeline-image-wrapper {
        width: 100%;
        max-width: 280px;
      }
    
      .timeline-image-wrapper img {
        width: 100%;
        height: auto;
        border-radius: 8px;
      }
    
      .timeline-content {
        padding: 10px 15px;
      }
    
      .timeline-title {
        font-size: 20px;
        font-weight: 600;
        color: #0c2a4d;
        margin-bottom: 10px;
      }
    
      .timeline-text {
        font-size: 14px;
        color: #333;
        line-height: 1.6;
      }
    
      /* Optional: center line on mobile */
      .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #ccc;
        transform: translateX(-50%);
      }
      .why-us-section {
        padding: 20px 60px !important;
      }
    }
    

    /* time lime section end */

    /* hide section start */

    /* Base style: hidden on desktop */
.mission-section {
  display: none;
}

/* Responsive view for mobile and tablet only */
/* Base hidden */
.mission-mobile-section {
  display: none;
}

/* Show on mobile and tablet only */
@media (max-width: 991px) {
  .mission-mobile-section {
    display: block;
    padding: 30px 20px;
    background: #f7f7f7;
  }

  .mission-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
  }

  .mission-image {
    width: 320px;
    height: 220px;
    /* border-radius: 50%; */
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #0c2a4d;
  }

  .mission-text {
    font-size: 16px;
    color: #333;
    max-width: 300px;
  }
}

@media (max-width: 991px) {
  .timeline-container{
    display: none;
  }
}

    /* hide section end */

    /* why chooes us start */

    .main-service-body1 h1{
    
      justify-content: center;
      text-align: center;
      padding: 40px;
      padding-bottom: 40px;
  
      font-size: 50px;
      font-weight: 700;
      color: #063940;
      margin: 0;
    }

    .why-us-section {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px 20px;
      padding: 20px 0px 30px;
    }
    
    .why-us-box {
      display: flex;
      align-items: flex-start;
      gap: 15px;
    }

    .why-us-box i {
      font-size: 36px;
      color: #073842;
      min-width: 40px;
    }

    .why-us-text {
      flex: 1;
    }

    .why-us-title {
      font-size: 18px;
      font-weight: 600;
      color: #000;
      margin-bottom: 8px;
    }

    .why-us-desc {
      font-size: 14px;
      color: #555;
      line-height: 1.5;
    }

    .heading-sections1 {
      text-align: left;
      padding: 0px 20px 60px;
      /* height: 60vh; */
    }

    .heading-sections1 h1 {
      font-size: 50px;
      margin-bottom: 20px;
      font-weight: bold;
      margin-left: 40px;
      color: #3c6fb5;
    }

    .heading-sections1 hr {
      width: 50%;
      max-width: 900px;
      /* margin: 0 auto 25px; */
      margin: 2px 0px 20px 45px;
      border: none;
      border-top: 1px solid #ddd;
    }

    .heading-sections1 p {
      font-size: 1.2rem;
      color: #003b4c;
      font-style: italic;
      max-width: 800px;
      margin: 0 auto;
      margin-left: 40px;
    }

    @media (max-width: 768px) {
      .why-us-section {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .why-us-section {
        grid-template-columns: 1fr;
      }
    }
    
     /* why chooes us end */

     /* ---------------------portfolio gallery--------------------------------- */
     .heading-section {
      text-align: left;
      padding: 80px 20px 40px;
      /* height: 60vh; */
    }

    .custom-gallery-section{
      padding: 0px 60px;
    }

    .heading-section h1 {
      font-size: 50px;
      margin-bottom: 20px;
      font-weight: bold;
      margin-left: 40px;
      color: #3c6fb5;
    }

    .heading-section hr {
      width: 80%;
      max-width: 900px;
      /* margin: 0 auto 25px; */
      margin: 2px 0px 20px 45px;
      border: none;
      border-top: 1px solid #ddd;
    }

    .heading-section p {
      font-size: 1.2rem;
      color: #003b4c;
      font-style: italic;
      max-width: 800px;
      margin: 0 auto;
      margin-left: 40px;
    }

   /* gallery portfolio start */

   .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s;
  }

  .gallery img:hover {
    transform: scale(1.05);
  }

  .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  .lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
  }

  .lightbox:target {
    display: flex;
  }

  .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
  }

   /* gallery portfolio end */

   
      /* gallery */

.section-title-gallary {
  text-align: center;
  font-size: 2.2rem;
  margin: 40px 0 20px;
  font-weight: 400;
  /* background-color: #2b5de3; */
  padding: 30px;
  /* color: #fff; */
}
.section-title-gallary h1 {
 
  font-size: 2.2rem;
  font-weight: 400;
  
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* gap: 20px; */
  padding: 40px;
  /* background-color: #2b5de3; */
  /* background: linear-gradient(135deg, #2b5de3  0%, #07ffe8 100%); */
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  /* border-radius: 10px; */
  border-radius: 0;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* transition: transform 0.5s ease; */
  border-radius: 0 !important;
}

 .overlay-gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 153, 153, 0.7); */
 /* background: linear-gradient(to right, rgba(0, 0, 0, 0.9), transparent); */
 background: linear-gradient(to right, rgb(5 44 52 / 79%), transparent);
  color: white;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 20px;
  transition: opacity 0.4s ease;
  text-align: start;
}

.overlay-gallery h3 {
  font-size: 24px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.2s;
}

.overlay-gallery .line {
  width: 90px;
  height: 3px;
  background: white;
  /* margin: 10px auto; */
  transform: scaleX(0);
  transition: transform 0.4s ease 0.4s;
}

.overlay-gallery p {
  font-size: 16px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.6s;
}

/* .gallery-item:hover img {
  transform: scale(1.1);
} */

.gallery-item:hover .overlay-gallery {
  opacity: 1;
}

.gallery-item:hover .overlay-gallery h3,
.gallery-item:hover .overlay-gallery p {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover .overlay-gallery .line {
  transform: scaleX(1);
}

/* ----------------------interrior consultancy page start------------------------------------- */

/* top section start*/

.services-section4 {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.services-title4 {
  margin-bottom: 30px;
}

.services-title4 h2 {
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  color: #3c6fb5;
}

.services-title4 h2 span {
  display: block;
}

.divider4 {
  width: 100%;
  height: 1px;
  background-color: #ccc;
  margin: 25px 0;
}

.services-description4 {
  font-size: 20px;
  font-weight: 500;
  color: #0b3943;
  margin-bottom: 30px;
  font-style: italic;
}
.service-text1{
 text-align: justify;
 padding-bottom: 40px;
}

.services-items4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 0px;
  list-style: none;
  padding: 0;
}

.services-items4 li {
  font-size: 16px;
  font-weight: 500;
  color: #1f4d57;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
}
.services-items4 li a{
  text-decoration: none;
  color: #003049;
}

.services-items4 li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #1f4d57;
}

.services-items4 li:hover {
  text-decoration: underline;
}

.services-container4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.services-left4 {
  flex: 1;
  min-width: 600px;
}

.services-right4 {
  flex: 1;
  min-width: 300px;
  background-image: url('../upload/Interior-blur-img.webp');
  background-size: cover;
  background-position: center;
  padding: 40px;
  border-radius: 10px;
}

.services-right4 .services-items4 {
  /* background-color: rgba(255, 255, 255, 0.85); */
  background-color: rgb(255 255 255 / 58%);
  padding: 20px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .services-container4 {
    flex-direction: column;
  }

  .services-items4 {
    grid-template-columns: 1fr;
  }

  .services-title4 h2 {
    font-size: 35px;
  }
  .services-left4 {
    min-width: 0px;
  }
  .section-container{
    padding: 30px 40px 21px;
  }
  .heading-section h1 {
      font-size:35px !important;
  }
  .contact-left h1 {
      font-size: 35px !important;
  }
  .contact-left .phone-number{
      font-size: 20px !important;
  }
}

/* top section end */
/* all services fixed bg start */



.fixed-bg-section6 {
  position: relative;
  height: 70vh;
  background-image: url('../upload/Modular-Kitchen-new-sec.webp');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}
.fixed-bg-section2 {
  position: relative;
  height: 70vh;
  background-image: url('../upload/Vastu-Consultancy-new-secod.webp');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.fixed-bg-section3 {
  position: relative;
  height: 70vh;
  background-image: url('../upload/Turnkey-Work-Interior-new-secd.webp');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}
.fixed-bg-section4 {
  position: relative;
  height: 70vh;
  background-image: url('../upload/Commercial-down-img.webp');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}
.fixed-bg-section5 {
  position: relative;
  height: 70vh;
  background-image: url('../upload/Architecture-Consultancy-new-second-img.webp');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

/* all services fixed bg end */


/* second section strat*/
.fixed-bg-section {
  position: relative;
  height: 70vh;
  /* background-image: url('../upload/Interior-consultency-down-img.webp')  center center; */
  background: url('../upload/Interior-consultancy-new-second.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.fixed-bg-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* background: rgba(0, 0, 0, 0.4); full-section overlay */
  background: rgba(0, 0, 0, 0.267);
  z-index: 1;
}

.content-box3 {
  position: relative;
  z-index: 2;
  padding: 40px;
  border-radius: 10px;
}

.content-box3 h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.content-box3 p {
  font-size: 18px;
}

.section-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  padding: 30px 0px 21px;
}

.left-panel {
  width: 60%;
}

.custom-tabs {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
}

.custom-tab-item {
  font-weight: 200;
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
  font-size: 28px;
}

.custom-tab-item.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #1f4d57;
}

.custom-tab-content {
  font-size: 16px;
  line-height: 1.6;
}

.right-panel {
  width: 40%;
}

.right-panel img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Optional responsive */
@media screen and (max-width: 768px) {
  .section-container {
    flex-direction: column;
    padding: 30px;
  }

  .left-panel, .right-panel {
    width: 100%;
  }
}

/* second section end*/

/* ------------------------------------All services pages--------------- */
 /* 2nd section chnage css */
 .services-section6 {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 30px;
}

.services-grid6 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-card6 {
  /*background-color: #fff;*/
  /*border-radius: 10px;*/
  overflow: hidden;
  /*box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);*/
  transition: transform 0.3s;
}

.service-card6:hover {
  transform: translateY(-5px);
}

.service-card6 img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card6 .content6 {
  padding: 20px;
}

.service-card6 h3 {
  color: #333;
  font-size: 20px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}

.service-card6 p {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

.service-card6 a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 13px;
  text-transform: capitalize;
}

@media screen and (max-width: 768px) {
  .services-grid6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  .services-grid6 {
    grid-template-columns: 1fr;
    /* grid-template-columns: repeat(2, 1fr); */
  }
}


/*2nd section  change css end */

/*contact us paage start*/

.contact-section {
  display: flex;
  justify-content: space-between;
  padding: 80px 10%;
  flex-wrap: wrap;
}

.contact-left {
  max-width: 40%;
  min-width: 300px;
}

.contact-left h1 {
  font-size: 60px;
  font-weight: bold;
  color: #3c6fb5;
}

.contact-left p {
  font-size: 22px;
  margin-top: 20px;
  color: #073842;
}

.contact-left .phone {
  margin-top: 40px;
}

.contact-left .phone span {
  font-weight: bold;
  font-size: 16px;
  display: block;
  margin-bottom: 8px;
}

.contact-left .phone-number {
  font-size: 24px;
  font-weight: bold;
  color: #0e3749;
}
.contact-left .phone-number a{
  text-decoration: none !important;
  color: #0e3749;
}

.contact-left .social-icons-contact {
  margin-top: 30px;
}

.social-icons-contact i {
  font-size: 18px;
  margin-right: 15px;
  color: #0e3749;
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons-contact i:hover {
  color: #0077b5;
}

.contact-form {
  max-width: 45%;
  min-width: 300px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 10px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 2px solid #ccc;
  font-size: 16px;
  outline: none;
  resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-family: 'Segoe UI', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: #0e3749;
}

.contact-form button {
  background-color: #3c6fb5;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #1c3f65;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    gap: 40px;
  }

  .contact-left,
  .contact-form {
    max-width: 100%;
  }
}

.contact-left hr {
  width: 50%;
  max-width: 900px;
  /* margin: 0 auto 25px; */
  margin: 2px 0px 20px 5px;
  border: none;
  border-top: 1px solid #ddd;
}

/*contact us paage end*/


/************************** blog page start *************************/


.blog-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 40px;
}
.blog-card {
  width: 300px;
  /* border-radius: 10px; */
  overflow: hidden;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s;
  background-color: #fff;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.blog-content {
  padding: 20px;
}
.blog-category {
  display: inline-block;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  background: #e0f0f5;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.blog-title {
  font-size: 18px;
  font-weight: bold;
  color: #003366;
  margin-bottom: 10px;
}
.blog-meta {
  display: flex;
  font-size: 12px;
  color: #555;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.blog-meta i {
  margin-right: 5px;
}
.read-more {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #0077cc;
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}

/************************** blog page end *************************/

/* single blog page start */


.blog-description {
  max-width: 1000px;
  margin: 0 auto;
   padding: 40px;
  line-height: 1.7;
}
.blog-description h2 {
  font-size: 50px;
  font-weight: bold;
  color: #073842;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.blog-description p {
  margin-bottom: 20px;
  text-align: justify;
}

.blog-description h3 {
  font-size: 24px;
  font-weight: 500;
  color: #222;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.blog-description h3 i{
  color: #073842;
}
/* single blog page end */




    

   