.navbar-brand img{
    width: auto;
    height: 80px;
}

/* High-Resolution Logo Styles */
.high-res-logo {
    width: auto;
    height: 80px;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: all 0.3s ease;
}

.footer-logo-image.high-res-logo {
    height: 100px;
    max-width: 400px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.high-res-logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

/* Responsive Logo Styles */
@media (max-width: 768px) {
    .high-res-logo {
        height: 60px;
        max-width: 200px;
    }

    .footer-logo-image.high-res-logo {
        height: 80px;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .high-res-logo {
        height: 50px;
        max-width: 180px;
    }

    .footer-logo-image.high-res-logo {
        height: 70px;
        max-width: 250px;
    }
}

.swiper-wrapper{
    height: fit-content!important;

}
.home h2  {
    font-size: 28px!important;
}

.who_we_are_section h2  {
    font-size: 18px !important;
    word-spacing: 6px;
    text-spacing-trim: 11px;
    /* text-indent: 0px; */
    letter-spacing: 1px;
}

/* Who We Are Section - Equal Height Columns */
.who_we_are_section .row.align-items-center {
    display: flex;
    align-items: stretch; /* Make columns equal height */
}

.who_we_are_section .about-left-images,
.who_we_are_section .about-right-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.who_we_are_section .about-left-images img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive adjustments for Who We Are section */
@media (max-width: 991px) {
    .who_we_are_section .row.align-items-center {
        flex-direction: column;
    }
    
    .who_we_are_section .about-left-images,
    .who_we_are_section .about-right-items {
        margin-bottom: 2rem;
    }
    
    .who_we_are_section .about-left-images img {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .who_we_are_section .about-left-images img {
        max-height: 300px;
    }
}


.section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
    margin-top: -7px;
}

.section-title:after {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    content: "";
    position: absolute;
    z-index: -5;
    content: none; 
}













.how_work_section h2{
      font-size:36px;
      font-weight:700;
      margin-bottom:60px;
      color:#0f172a;
    }

    .how_work_section .timeline{
      position: relative;
      margin: auto;
      padding: 20px 0;
    }

    .how_work_section .timeline::after{
      content: '';
      position: absolute;
      width: 4px;
      background-color: var(--primary);;
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -2px;
    }

    .how_work_section .timeline-step{
      padding: 40px 20px;
      position: relative;
      width: 50%;
      box-sizing: border-box;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .how_work_section .timeline-step:nth-child(odd){
      left: 0;
      text-align: right;
    }

    .how_work_section .timeline-step:nth-child(even){
      left: 50%;
      text-align: left;
    }

    .how_work_section .timeline-step::before{
      content: '';
      position: absolute;
      width: 50px;
      height: 50px;
      background-color: var(--primary);;
      border-radius: 50%;
      top: 20px;
      z-index:1;
      display:flex;
      justify-content:center;
      align-items:center;
      font-size:24px;
      color:#fff;
    }

    .how_work_section .timeline-step:nth-child(odd)::before{
      right: -25px;
    }

    .how_work_section .timeline-step:nth-child(even)::before{
      left: -25px;
    }

    .how_work_section .timeline-step:nth-child(1)::before{ content: 'ðŸš—'; }
    .how_work_section .timeline-step:nth-child(2)::before{ content: 'ðŸ“'; }
    .how_work_section .timeline-step:nth-child(3)::before{ content: 'ðŸ’³'; }
    .how_work_section .timeline-step:nth-child(4)::before{ content: 'ðŸ˜Ž'; }

    .how_work_section .step-number{
      font-size:18px;
      font-weight:700;
      color:var(--primary);;
      margin-bottom:8px;
    }

    .how_work_section .step-title{
      font-size:20px;
      font-weight:700;
      margin-bottom:10px;
      color:#0f172a;
    }

    .how_work_section .step-desc{
      font-size:15px;
      color:#475569;
      line-height:1.6;
    }

    .how_work_section .timeline-step:hover{
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }



    .who_we_are_block ul {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 15px;
    }

    .who_we_are_block ul li {
      background: #e0f2fe;
      color: var(--primary);
      padding: 15px 20px;
      border-radius: 15px;
      font-weight: 600;
      text-align: left;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .who_we_are_block ul li::before {
      content: '\2713';
      color: var(--primary);
      font-weight: bold;
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
    }

    .who_we_are_block ul li:hover {
      transform: translateX(10px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .who_we_are_block ul li h6 {
      color: var(--primary);
      padding-left: 20px;
    }

@media (max-width: 500px) {
    .navbar-brand img{
        width: auto;
        height: 60px;
    }
}

.testimonial-section-five .main-box {
    padding: 0;
    gap: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*.faq-wrapper {
    background: linear-gradient(180deg, #e0f7fa 0%, #f9fafb 100%);
    padding-top: 30px;
}
.faq-container {
      max-width: 1000px;
      margin: auto;
    }

    .faq-title {
      font-size: 44px;
      font-weight: 900;
      text-align: center;
      margin-bottom: 60px;
      color: #0f172a;
      text-shadow: 1px 1px 5px rgba(0,0,0,0.1);
    }

    .faq-item {
      background: #ffffff;
      margin-bottom: 20px;
      border-radius: 25px;
      overflow: hidden;
      transition: all 0.5s ease;
      box-shadow: 0 15px 35px rgba(0,0,0,0.08);
      cursor: pointer;
      border-left: 8px solid var(--primary);
      position: relative;
      padding-left: 15px;
    }

    .faq-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 8px;
      background: linear-gradient(180deg, #198754, #43dfdf);
      border-radius: 25px 0 0 25px;
    }

    .faq-item:hover {
      transform: translateY(-5px) scale(1.01);
      box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    }

    .faq-question {
      padding: 25px 35px;
      font-weight: 700;
      font-size: 19px;
      position: relative;
      color: #1e293b;
    }

    .faq-question::after {
      content: '\276F';
      position: absolute;
      right: 35px;
      font-size: 22px;
      transition: transform 0.3s ease, color 0.3s ease;
      color: var(--primary);
    }

    .faq-item.active .faq-question::after {
      transform: rotate(90deg);
      color: var(--primary);
    }

    .faq-answer {
      padding: 0 35px 25px 35px;
      display: none;
      font-size: 17px;
      line-height: 1.9;
      color: #334155;
      border-top: 1px solid #e2e8f0;
      background: #f1f5f9;
      border-radius: 0 0 25px 25px;
    }

    .faq-item.active .faq-answer {
      display: block;
      animation: slideDown 0.5s ease;
    }

    @keyframes slideDown {
      from {opacity: 0; transform: translateY(-10px);}
      to {opacity: 1; transform: translateY(0);}
    }

    @media (max-width: 768px) {
      .faq-question {
        font-size: 17px;
      }
      .faq-answer {
        font-size: 16px;
        padding: 0 25px 20px 25px;
      }
    }*/

.margin-both-8 {
    margin-left: 8.3%;
    margin-right: 3.3%;
    margin-bottom: 80px;
}
.mb-0{
        margin-bottom: 0px!important;
    }
    .card-box {
      background: #fff;
      border-radius: 16px;
      padding: 30px;
      margin: 20px 0;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
      
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .left-choose-section{
        transform: rotate(5deg);
    }
    .right-choose-section{
        transform: rotate(-5deg);
        margin-top: 82px;
    }

    .why-choose-section .card-box:hover {
      transform: rotate(0deg) scale(1.05);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .why-choose-section .card-box .icon {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 22px;
      margin-bottom: 15px;
    }

    /* Colors */
    .yellow { background: #fff9e6; }
    .yellow .icon { background: #facc15; }

    .purple { background: #f4e9ff; }
    .purple .icon { background: #a855f7; }

    .pink { background: #ffe6f1; }
    .pink .icon { background: #ec4899; }

    .blue { background: #e6f4ff; }
    .blue .icon { background: var(--primary); }

    .green { background: #e6ffe6; }
    .green .icon { background: #22c55e; }

    .red { background: #ffe6e6; }
    .red .icon { background: #ef4444; }

    .why-choose-section .content-description{
        text-align: center;
        width: 90%;
        margin: auto;
        padding: 20px 0px;
    }
    .why-choose-section .content-title {
        text-align: center;
        width: 90%;
        margin: auto;
    }




    /*hero slider css*/
    .hero-slider{
        position:relative;
        width:100%;
        height:100vh;
        overflow:hidden;

    
    }

  .slide{
    position:absolute;
    width:100%;
    height:100%;
    left:100%;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    color:white;transition:all 1s ease;


    background-size: cover;           /* fills area but may crop */
    background-repeat: no-repeat;
    background-position: right center; /* ðŸ‘ˆ ensures right side always visible */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
        margin-top: 120px;
        background:  url(../img/homebanner1.jpg);
}
  .slide.active{left:0;}

  .slide::before {
    content: '';
    position: absolute;
    top:0; left:0;
    width:100%; height:100%;
    /*background: linear-gradient(135deg, var(--primary) 0%, #0ea5e9 100%);*/
    z-index:0;
  }

  .slide-content{
    position: relative;
    z-index:1;
    max-width:50%;
    margin-left:60px;
    padding:40px 50px;
    background: rgba(255,255,255,0.1);
    border-radius:20px;
    animation: slideIn 1s ease;
    color:#fff;
  }

  @keyframes slideIn {
    0% {opacity:0; transform: translateX(-50px);}
    100% {opacity:1; transform: translateX(0);}
  }

  .slide-content h1{
    font-size:20px;margin-bottom:20px;font-weight:700;
    letter-spacing: 1px;
    color: #000;
}
  .slide-content p{font-size:17px;margin-bottom:20px;line-height:1.3;color: #000; word-spacing: 10px; letter-spacing: 1px}
  .slide-content a{
    display:inline-block;
    padding:20px 40px;
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    font-size:16px;
    transition:0.4s;
  }
  .slide-content a:hover{background:#000; transform: translateY(-3px);}

  @media(max-width:768px){
    .slide-content h1{font-size:32px;}
    .slide-content p{font-size:16px;}
    .slide-content{margin-left:20px;max-width:90%;padding:20px;}
  }
  .services-section li:hover p{
    color: #fff !important;
  }
  .services-section li:hover h4{
    color: #fff !important;
  }


.footer-card .footer-logo {
    width: 200px;
}

/*Faq */
.rv-faq-section {
    position: relative;
}
.faq-section .right-shape {
    position: absolute;
    top: 0;
    right: 0;
}
.faq-section .faq-shape-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    max-width: 847px;
    width: 100%;
    z-index: -1;
    height: 950px;
}

.rc-faq-content  .section-title {
    position: relative;
    z-index: 99;
    margin-bottom: 30px;
    margin-top: -7px;
}
 .rc-faq-content .section-title {
    text-align: center;
    margin-left: 15%;
    width: 70%;
}
.blog-home-section{
    width: 60%;
    margin: auto;
}

.section-title h3, .section-title h2, .section-title h1, .section-title h4, .content-title h3, .blog-home-section h1 {
    font-size: 32px;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    font-family: 'Poppins', sans-serif !important;
}
.blog-home-section span{
    font-size: 20px;
    color: var(--primary);
}


.faq-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* overflow: hidden; */
    /* width: 200px; */
    height: 534px;
    margin-top: 104px;
    border-radius: 22px;
}

.faq-content .accordion-item {
    border: 0;
    background-color: #fff;
}
.faq-content .accordion-item {
    border: 1px solid #E3E3E3;
    border-radius: 15px;
    margin-right: 0px;
    margin-bottom: 1rem !important;
}
.faq-content .accordion-item .accordion-header{
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
}



.faq-content .accordion-item .accordion-header .accordion-button {
    letter-spacing: -.2px;
    border-radius: 0;
    box-shadow: none;
    font-weight: 600;
    color: color: #0F0D1D;
    background-color: #fff0;
    padding: 15px 30px;
    text-transform: capitalize;
    font-size: 17px;
    border: 0px solid #E3E3E3;
    border: 0;
}
/*.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\2212";
    color: color: #0F0D1D;
    font-weight: 800;
    font-size: 18px;
    padding-top: 0px;

    transform: rotate(0);
    background-image: none !important;
    margin-left: auto;
    line-height: 1;
    align-self: flex-start;
    transition: .3s ease-in-out !important;
}*/


.faq-content .accordion-item .accordion-header .accordion-button::after {
    background-image: none !important;
    content: "\002B"; /* Plus */
    font-size: 2rem;
    margin-left: auto;
    line-height: 1; /* keeps icon tight */
    align-self: flex-start; /* align to top of flex container */
    padding-top: 2px; /* fine-tune for exact alignment */
    color: color: #0F0D1D;
    font-weight: 800;
    font-size: 28px;
    padding-top: 0px;
    width: 2px;
    height: auto;
    color: #000;
    position: initial;
    right: 5px;
    background-color: #fff;
}

.faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: "\2212"; /* Minus */
    color: color: #0F0D1D;
    font-weight: 800;
    font-size: 28px;
    padding-top: 0px;
    width: 2px;
    height: auto;
    color: #000;
    position: initial;
    right: 5px;
    background: none;
    transform: rotate(0deg);
}


.faq-content .accordion-item .accordion-header .accordion-button {
    font-weight: 600;
    color: color: #0F0D1D;
    background-color: #fff0;
    padding: 15px 30px;
    text-transform: capitalize;
    font-size: 17px;
    border: 0px solid #E3E3E3;
    border: 0;
}

.faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 150px;
    padding-left: 30px;
    padding-top: 0px;
    color: var(--text);
    background-color: #fff0;
}
.faq-content .accordion-item {
    border: 1px solid #E3E3E3;
    border-radius: 15px;
}
.faq-content .accordion-item .accordion-header .accordion-button.collapsed {
    background-color: #fff0;
    border: 0px solid #E3E3E3;
    padding: 15px 30px;
    color: #0F0D1D;
}






/*hero section */
@media only screen and (min-width: 1200px) {
    .hero-section-top {
        margin-top : 135px;
    }
}
/* Hero Section Slider */
    .hero { height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: white; position: relative; overflow: hidden; }
    .hero-carousel { position: absolute; inset: 0; z-index: 0; }
    .hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease-in-out; z-index: 0; }
    .hero-slide.active { opacity: 1; }
    .hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 1; }
    .hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; max-width: 1200px; width: 100%; padding: 0 20px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }

    @media (max-width: 768px) {
        .hero-content {
            padding: 0 15px;
            top: 45%;
        }
        .hero-content h1 {
            font-size: 2rem !important;
        }
        .hero-content p {
            font-size: 1rem !important;
        }
    }

    @media (max-width: 480px) {
        .hero-content {
            top: 40%;
        }
        .hero-content h1 {
            font-size: 1.5rem !important;
        }
        .hero-content p {
            font-size: 0.9rem !important;
        }
    }
    .hero-content h1 { font-size: 36px; font-weight: 700; margin-bottom: 10px; color: #fff;}
    .hero-content p { font-size: 18px; margin-bottom: 24px; color: #e0e0e0; }
    .hero .btn { padding: 12px 24px; border: none; border-radius: 8px; font-weight: 600; cursor: pointer; transition: transform .3s, background .3s; }
    .hero .btn-primary { background: var(--primary); color: #fff; }
    .hero .btn-primary:hover { transform: scale(1.05); }
    .hero .btn-outline { background: transparent; border: 2px solid #fff; color: #fff; margin-left: 8px; }

    /* Modern Hero Section Styles */
    .modern-hero-section {
        border: 3px solid #0ea5a4 !important;
        border-radius: 20px !important;
        margin: 20px !important;
        box-shadow: 0 10px 30px rgba(14, 165, 164, 0.3) !important;
        overflow: hidden;
        transition: all 0.3s ease !important;
    }

    .modern-hero-section:hover {
        border-color: #667eea !important;
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4) !important;
        transform: translateY(-2px) !important;
    }

    .modern-hero-content h1 {
        color: #ffffff !important;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.7) !important;
        border-bottom: 3px solid #0ea5a4 !important;
        padding-bottom: 10px !important;
        display: inline-block !important;
        margin-bottom: 20px !important;
        transition: all 0.3s ease !important;
    }

    .modern-hero-content h1:hover {
        border-bottom-color: #667eea !important;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.8) !important;
    }

    .modern-hero-content p {
        color: #e8f8f9 !important;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5) !important;
        border-left: 4px solid #667eea !important;
        padding-left: 20px !important;
        background: rgba(102, 126, 234, 0.1) !important;
        padding: 15px 20px !important;
        border-radius: 10px !important;
        backdrop-filter: blur(5px) !important;
        transition: all 0.3s ease !important;
    }

    .modern-hero-content p:hover {
        background: rgba(102, 126, 234, 0.15) !important;
        border-left-color: #0ea5a4 !important;
        transform: translateX(5px) !important;
    }

    .modern-hero-btn {
        border: 2px solid #0ea5a4 !important;
        background: linear-gradient(45deg, #0ea5a4, #667eea) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 15px rgba(14, 165, 164, 0.4) !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .modern-hero-btn::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent) !important;
        transition: left 0.5s !important;
    }

    .modern-hero-btn:hover::before {
        left: 100% !important;
    }

    .modern-hero-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(14, 165, 164, 0.6) !important;
    }

    .modern-hero-btn-outline {
        border: 2px solid #ffffff !important;
        color: #ffffff !important;
        background: rgba(255, 255, 255, 0.1) !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2) !important;
        transition: all 0.3s ease !important;
    }

    .modern-hero-btn-outline:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
        border-color: #0ea5a4 !important;
    }

    /* Responsive adjustments for modern hero */
    @media (max-width: 768px) {
        .modern-hero-section {
            margin: 10px !important;
            border-radius: 15px !important;
        }

        .modern-hero-content h1 {
            font-size: 28px !important;
            border-bottom-width: 2px !important;
        }

        .modern-hero-content p {
            font-size: 16px !important;
            border-left-width: 3px !important;
            padding: 12px 15px !important;
        }
    }

    @media (max-width: 576px) {
        .modern-hero-section {
            margin: 5px !important;
            border-width: 2px !important;
        }

        .modern-hero-content h1 {
            font-size: 24px !important;
        }

        .modern-hero-content p {
            font-size: 14px !important;
            padding: 10px 12px !important;
        }
    }

    section { padding: 20px 0px; opacity: 1; transform: translateY(40px); transition: all 1s ease-in-out; }
    section.visible { opacity: 1; transform: translateY(0); }



    /*how work */

    #how-it h2 , .services-section h2 , #why-choose h2 ,.who_we_are_block .section-heading .rc-sub-title , #rc-app h2,
    .testimonial-section-five .section-heading .rc-sub-title { text-align: center; margin-bottom: 40px; font-size: 32px; color: var(--primary); }
    .how-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 35px; max-width: 100%; margin: auto; }
    .how-step { background: #f0f6ff; border-radius: 16px; padding: 24px; flex: 1 1 220px; text-align: center; box-shadow: 0 8px 20px rgba(0,0,0,0.05); transition: transform .3s, box-shadow .3s; }
    .how-step:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,0.1); }
    .how-step img { width: 80px; margin-bottom: 16px; }
    .how-step h3 { margin-bottom: 12px; color: var(--primary); font-size: 22px; }
    .how-step p { color: #444; font-size: 16px; }

    @media(max-width:600px){ .blog-home-section{width: 94%;} .hero-content h1{font-size:32px} .hero-content p{font-size:16px} .how-grid{flex-direction:column; gap:20px;} }

    /* why choose */

    /*.why-grid { display: block; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; max-width: 100%; margin: auto; width:100% }
    .why-card { background: #fff; border-radius: 30px; padding: 40px 30px 30px 30px; text-align: center; box-shadow: 0 15px 35px rgba(0,0,0,0.1); transition: transform 0.5s, box-shadow 0.5s; position: relative; display:inline-block; width:48%;margin-left:1%;margin-right:1%; margin-bottom:30px; }
    .why-card:hover { transform: translateY(-12px); box-shadow: 0 25px 45px rgba(0,0,0,0.15); }
    .why-card::after { content: ''; position: absolute; width: 80px; height: 80px; border-radius: 50%; background: #f59e0b; top: -20px; left: calc(50% - 40px); z-index: 0; opacity: 0.2; }
    .why-card img { width: 60px; margin-bottom: 20px; z-index: 1; position: relative; }
    .why-card h3 { font-size: 22px; color: var(--primary); margin-bottom: 12px; position: relative; z-index:1; }
    .why-card p { font-size: 16px; color: var(--muted); line-height: 1.6; position: relative; z-index:1; }*/


    /* Section 5 - New Unique Design */
    .why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 50px; max-width: 1200px; margin: auto; }
    .why-card { background: linear-gradient(135deg, #ffffff, #e0f7f7); border-radius: 40px; padding: 60px 30px 40px 30px; text-align: center; box-shadow: 0 20px 50px rgba(30,132,132,0.1); transition: transform 0.5s, box-shadow 0.5s; position: relative; overflow: hidden; }
    .why-card:hover { transform: translateY(-15px); box-shadow: 0 35px 70px rgba(30,132,132,0.2); }
    .why-card img { width: 70px; margin-bottom: 25px; }
    .why-card h3 { font-size: 24px; color: var(--primary); margin-bottom: 15px; font-weight: 700; }
    .why-card p { font-size: 16px; color: var(--muted); line-height: 1.6; }

    /* Add floating circle accent */
    .why-card::before { content: ''; position: absolute; width: 400px; height: 80px; border-radius: 50%; background: #f59e0b; top: -30px; right: -30px; opacity: 0.2; z-index: 0; }



    @media(max-width:600px){ .why-grid{grid-template-columns:1fr; gap:30px;} }


/* App-section */

    #rc-app .app-section { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; max-width: 1200px; margin: auto; }
    #rc-app .app-text { padding: 20px; }
    #rc-app .app-text h3 { font-size: 32px; color: var(--primary); margin-bottom: 20px; }
    #rc-app .app-text p { font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 30px; }
    #rc-app .app-buttons { display: flex; gap: 20px; flex-wrap: wrap; justify-content: flex-start; }
    #rc-app .btn { padding: 14px 28px; border-radius: 12px; font-size: 16px; font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
    #rc-app .btn-primary { background: var(--primary); color: #fff; }
    #rc-app .btn-primary:hover { background: #186f6f; }
    #rc-app .btn-secondary { background: #f59e0b; color: #fff; }
    #rc-app .btn-secondary:hover { background: #d88c06; }

    #rc-app .app-mockup { display: flex; justify-content: center; }
    #rc-app .app-mockup img { max-width: 300px; border-radius: 40px; box-shadow: 0 30px 70px rgba(0,0,0,0.2); transition: transform 0.3s; }
    #rc-app .app-mockup img:hover { transform: scale(1.05); }

    .testimonial-section-five .section-heading .rc-sub-title {
      margin-bottom: 10px;
    }

    @media(max-width:900px){
      #rc-app .app-section{grid-template-columns:1fr; text-align:center; gap:40px;}
      #rc-app .app-buttons{justify-content:center;}
    }

    /*normal css*/

    @media (min-width: 1400px) {
        .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
          max-width: 85%;
        }
        .hero-content h1 {
            font-size: 44px;
        }
        .hero-content p {
            font-size: 24px;
        }

        .hero .btn {
            padding: 16px 35px;
            font-size: 20px;
        }
        .services-section ul li img{
            height: 240px!important;
        }

        .services-section ul li h4{
            font-size: 25px!important;
        }
        .services-section ul li p{
            font-size: 20px!important;
        }
        .who_we_are_section h2 {
            font-size: 22px !important;
        }
        .about-wrapper-five .about-right-items .about-text {
            font-size: 20px !important;
        }
        .who_we_are_block ul li h6 {
            font-size: 20px;
        }
        .how-step img {
            width: 100px;
            margin-bottom: 16px;
        }
        .how-step h3 {
            font-size: 24px;
        }
        .how-step p {
            font-size: 20px;
        }

        .why-grid {
            max-width: 100%;
        }
        .why-card {
            padding: 60px 20px 40px 20px;
        }
        .why-card img {
            width: 85px;
            margin-bottom: 25px;
        }
        .why-card p {
            font-size: 20px;
        }

      /* Quick booking form and hero wave styles */
      .quick-booking-form input.form-control { min-width: 160px; max-width: 220px; }
      .quick-booking-form .form-control { border-radius: 8px; padding: 10px 12px; }
      .quick-booking-form button { border-radius: 8px; padding: 10px 14px; }
      .hero-wave { position: relative; z-index: 1; margin-top: -3px; }

      @media (max-width: 767px) {
        .quick-booking-form { flex-wrap: wrap; gap: 8px; }
        .quick-booking-form input.form-control { max-width: 100%; }
        .quick-booking-form .form-control.d-none { display: none !important; }
      }
    }


    @media (max-width: 450px){
        .hero-content h1 {
            font-size: 24px;
        }
        #how-it h2, .services-section h2, #why-choose h2, .who_we_are_block .section-heading .rc-sub-title, #rc-app h2, .testimonial-section-five .section-heading .rc-sub-title {
            
            font-size: 26px;
        }
        .services-section ul li{
            width: 100%!important;
        }

        .services-section ul li h4{
            font-size: 18px!important;
        }
        .services-section ul li p{
            font-size: 16px!important;
        }
        .testimonial-section-five .main-box .box {
            width: 500px !important;
        }

        .faq-content .accordion-item .accordion-collapse .accordion-body {
            padding-right: 30px;
            padding-left: 30px;
            padding-top: 0px;
            color: var(--text);
            background-color: #fff0;
        }
    }
.footer-card .footer-logo {
    border-radius: 15px;
    width: 200px;
    background: #fff;
    padding: 10px 0px;
}
.about-bottom-items .counts {
    border-right: 1px solid var(--border);
    margin-right: 7px;
    padding-right: 7px;
    line-height: 1;
}
section.page-header{
    margin-top: 120px;
    //height: auto;
}
.col-white{
    color: #fff!important;
}
.read-more:hover a{
    color: #fff;
}
.page-header.hero::before {
    content: none;

}
.breadcrumb{
    --bs-breadcrumb-divider-color: rgb(255 255 255 / 75%);
    justify-content: center;
}



    .blog-page.posts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 90%;
      margin: 60px auto;
      padding: 0 20px;
    }
    .blog-page .post {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0,0,0,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .blog-page .post:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(0,0,0,0.1);
    }
    .blog-page .post .thumb {
      height: 200px;
      background-size: cover;
      background-position: center;
    }
    .blog-page .post .content {
      padding: 20px;
    }
    .blog-page .meta {
      font-size: 13px;
      color: #6b7280;
      margin-bottom: 8px;
    }
    .blog-page .post h3 {
      margin: 0 0 10px;
      font-size: 20px;
    }
    .blog-page .excerpt {
      font-size: 15px;
      line-height: 1.6;
      color: #374151;
    }
/* Modern Website Enhancements */

/* Modern Header Styles */
.modern-header {
    position: relative;
    z-index: 1000;
}

.modern-header-top {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modern-header-top .contact-item span {
    color: #ffffff !important;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.modern-header-top .contact-item i {
    color: #0ea5a4 !important;
}

.modern-header-top .vr-line {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    color: #0ea5a4 !important;
}

.social-link {
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.social-link:hover {
    color: #0ea5a4;
    transform: translateY(-2px);
}

.modern-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modern-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.modern-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.modern-brand:hover {
    transform: scale(1.05);
}

.modern-brand img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-toggler {
    border: none;
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    transition: all 0.3s ease;
}

.modern-toggler:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(14, 165, 164, 0.3);
}

.toggler-line {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.modern-nav-collapse {
    justify-content: space-between;
}

.modern-nav-list {
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.modern-nav-link {
    font-weight: 600;
    color: #1a1a2e !important;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 164, 0.1), transparent);
    transition: left 0.5s ease;
}

.modern-nav-link:hover::before {
    left: 100%;
}

.modern-nav-link:hover {
    color: #0ea5a4 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(14, 165, 164, 0.2);
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.modern-dropdown {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    overflow: hidden;
}

.dropdown-item {
    padding: 12px 20px;
    font-weight: 500;
    color: #1a1a2e;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    hyphens: auto;
    max-width: 100%;
}

.dropdown-item:hover {
    background: linear-gradient(45deg, rgba(14, 165, 164, 0.1), rgba(102, 126, 234, 0.1));
    color: #0ea5a4;
    transform: translateX(5px);
}

/* General dropdown word wrapping */
.dropdown-menu .dropdown-item,
.dropdown-item,
.dropdown-menu a,
.dropdown-menu li a {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    hyphens: auto;
    max-width: 100%;
    display: block;
}

.modern-cta-btn {
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(14, 165, 164, 0.3);
}

.modern-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 165, 164, 0.4);
    color: white;
}

/* Modern Services Section */
.modern-services-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.modern-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(14,165,164,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(102,126,234,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(14,165,164,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(102,126,234,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, rgba(14, 165, 164, 0.1), rgba(102, 126, 234, 0.1));
    color: #0ea5a4;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(14, 165, 164, 0.2);
}

.modern-section-title {
    background: linear-gradient(45deg, #1a1a2e, #16213e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.modern-section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.modern-service-card {
    background: white;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-bottom: 2rem;
}

.modern-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modern-card-img {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.modern-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-service-card:hover .modern-card-image {
    transform: scale(1.1);
}

.modern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(14, 165, 164, 0.9), rgba(102, 126, 234, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-card-btn {
    background: white;
    color: #0ea5a4;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.modern-service-card:hover .modern-card-btn {
    transform: translateY(0);
}

.service-icon-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1a1a2e;
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.service-number-modern {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(14, 165, 164, 0.3);
}

.modern-card-body {
    padding: 2rem 1.5rem 1rem;
}

.modern-card-title {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.modern-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-badge-modern {
    background: linear-gradient(45deg, rgba(14, 165, 164, 0.1), rgba(102, 126, 234, 0.1));
    color: #0ea5a4;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(14, 165, 164, 0.2);
}

.modern-card-footer {
    padding: 0 1.5rem 1.5rem;
}

.modern-footer-btn {
    width: 100%;
    background: transparent;
    border: 2px solid #0ea5a4;
    color: #0ea5a4;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.modern-footer-btn:hover {
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.modern-view-all-btn {
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(14, 165, 164, 0.3);
}

.modern-view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 165, 164, 0.4);
    color: white;
}

/* Modern Testimonials Section */
.modern-testimonials-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 80px 0;
}

.testimonials-carousel-modern {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card-modern {
    min-width: 100%;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.testimonial-card-modern.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-content-modern {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    margin: 0 20px;
}

.quote-icon-modern {
    margin-bottom: 2rem;
}

.testimonial-text-modern {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info-modern {
    text-align: left;
}

.author-name-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.author-location-modern {
    font-size: 0.9rem;
    color: #64748b;
}

.rating-modern {
    color: #fbbf24;
    font-size: 1.2rem;
}

.testimonial-dots-modern {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.dot-modern {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(14, 165, 164, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-modern.active {
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    transform: scale(1.2);
}

.testimonial-arrow-modern {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(14, 165, 164, 0.3);
}

.testimonial-arrow-modern:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(14, 165, 164, 0.4);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    overflow: hidden;
}

.footer-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.footer-shape-1,
.footer-shape-2,
.footer-shape-3 {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(14, 165, 164, 0.1), rgba(102, 126, 234, 0.1));
    animation: floatShape 8s ease-in-out infinite;
}

.footer-shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.footer-shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.footer-shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 70%;
    animation-delay: 6s;
}

.modern-footer-card {
    margin-bottom: 2rem;
}

/* Enhanced Footer Logo Design */
.footer-logo-container {
    position: relative;
    margin-bottom: 2rem;
}

.footer-logo-enhanced {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-logo-enhanced:hover {
    transform: translateY(-5px) scale(1.02);
}

.logo-wrapper-enhanced {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.logo-image-container {
    position: relative;
    flex-shrink: 0;
}

.footer-logo-image {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(14, 165, 164, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.footer-logo-enhanced:hover .footer-logo-image {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 45px rgba(14, 165, 164, 0.4);
    border-color: rgba(14, 165, 164, 0.4);
}

.logo-glow-effect {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 25px;
    background: linear-gradient(45deg, rgba(14, 165, 164, 0.2), rgba(102, 126, 234, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.footer-logo-enhanced:hover .logo-glow-effect {
    opacity: 1;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-brand-text-main {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    letter-spacing: -0.5px;
    line-height: 1;
    transition: all 0.3s ease;
}

.footer-logo-enhanced:hover .footer-brand-text-main {
    background: linear-gradient(135deg, #0ea5a4 0%, #667eea 50%, #0ea5a4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(14, 165, 164, 0.5);
}

.footer-brand-text-subtitle {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-logo-enhanced:hover .footer-brand-text-subtitle {
    color: rgba(14, 165, 164, 0.9);
    opacity: 1;
    transform: translateX(3px);
}

.logo-decoration {
    position: absolute;
    bottom: 0;
    left: 90px;
    right: 0;
    height: 2px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.footer-logo-enhanced:hover .logo-decoration {
    opacity: 1;
    transform: translateX(0);
}

.decoration-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(14, 165, 164, 0.3), rgba(102, 126, 234, 0.3));
    border-radius: 1px;
}

.decoration-dot {
    width: 6px;
    height: 6px;
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    border-radius: 50%;
    margin-left: 10px;
    box-shadow: 0 2px 8px rgba(14, 165, 164, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.logo-badge {
    position: absolute;
    top: -10px;
    right: 0;
    background: linear-gradient(135deg, #0ea5a4, #667eea);
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(14, 165, 164, 0.3);
    transform: rotate(2deg);
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: rotate(2deg) translateY(0);
    }
    50% {
        transform: rotate(-1deg) translateY(-3px);
    }
}

/* Responsive Logo Enhancements */
@media (max-width: 768px) {
    .logo-wrapper-enhanced {
        gap: 15px;
    }

    .footer-logo-image {
        width: 55px;
        height: 55px;
    }

    .footer-brand-text-main {
        font-size: 1.8rem;
    }

    .footer-brand-text-subtitle {
        font-size: 0.75rem;
    }

    .logo-decoration {
        left: 70px;
    }

    .logo-badge {
        position: static;
        margin-top: 10px;
        align-self: flex-start;
        transform: none;
        animation: none;
    }

    .badge-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .logo-wrapper-enhanced {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-brand-text-main {
        font-size: 1.6rem;
    }

    .logo-decoration {
        display: none;
    }

    .logo-badge {
        margin-top: 8px;
    }
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

.newsletter-signup-modern {
    margin-top: 2rem;
}

.newsletter-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.newsletter-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form-modern {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    color: white;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: none;
}

.newsletter-btn {
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    border: none;
    color: white;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(45deg, #667eea, #0ea5a4);
    transform: scale(1.05);
}

.footer-social-modern {
    margin-top: 2rem;
}

.social-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links-modern {
    display: flex;
    gap: 1rem;
}

.social-link-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link-modern:hover {
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(14, 165, 164, 0.3);
}

.footer-title-modern {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.footer-title-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    border-radius: 2px;
}

.modern-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-modern {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 8px 0;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-link-modern:hover {
    color: white;
    transform: translateX(5px);
}

.view-all-link {
    color: #0ea5a4 !important;
    font-weight: 600;
}

.view-all-link:hover {
    color: #667eea !important;
}

.contact-info-modern {
    margin-top: 1rem;
}

.footer-contact-card-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-contact-card-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.contact-icon-modern {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details-modern {
    flex: 1;
}

.contact-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #0ea5a4;
}

.contact-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

.app-download-modern {
    margin-top: 2rem;
}

.app-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.app-buttons-modern {
    display: flex;
    gap: 0.5rem;
}

.app-btn-modern {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
}

.app-btn-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn-text small {
    font-size: 0.7rem;
    opacity: 0.8;
}

.app-btn-text span {
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-bottom-modern {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
}

.copyright-text-modern {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.heart-icon {
    color: #ff4757;
    margin: 0 0.25rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-link:hover {
    color: #0ea5a4;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

.scroll-to-top-modern {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.scroll-to-top-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(14, 165, 164, 0.3);
    opacity: 0;
    visibility: hidden;
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(14, 165, 164, 0.4);
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #0ea5a4, #667eea);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hide {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.loading-subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Page Load Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stagger animations */
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .blogs-section  article.post {
        display: block;
        float: left;
        width: 100%;
    }
}
@media (max-width: 768px) {
    .modern-brand img {
        width: 40px;
        height: 40px;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .modern-nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .modern-cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .testimonial-content-modern {
        padding: 2rem 1.5rem;
        margin: 0 10px;
    }

    .testimonial-text-modern {
        font-size: 1rem;
    }

    .footer-shape-1,
    .footer-shape-2,
    .footer-shape-3 {
        display: none;
    }

    .newsletter-form-modern {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .app-buttons-modern {
        flex-direction: column;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }
    .blogs-section  article.post {
        display: block;
        float: left;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title-enhanced {
        font-size: 2rem;
    }

    .hero-subtitle-enhanced {
        font-size: 1rem;
    }

    .modern-section-title {
        font-size: 2rem;
    }

    .modern-card-title {
        font-size: 1.1rem;
    }

    .testimonial-arrow-modern {
        width: 40px;
        height: 40px;
    }

    .prev-arrow {
        left: 10px;
    }

    .next-arrow {
        right: 10px;
    }
    .blogs-section  article.post {
        display: block;
        float: left;
        width: 100%;
    }
}

/* Hero Carousel Styles */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* Hero Slide Content Styles */
.slide-content {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transform: translateY(20px);
}

.slide-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.slide-content h1,
.slide-content p,
.slide-content .btn {
    animation-duration: 0.6s;
}

.slide-content:not(.active) h1,
.slide-content:not(.active) p,
.slide-content:not(.active) .btn {
    animation: none;
}
footer span.contact-label {
    display: block;
}
.blogs-section  article.post {
    display: block;
    float: left;
    width: 33.33%;
}

section.page-header .container {
    position: relative;
    z-index: 2;
}
section.page-header{
    margin-top: 0px;
    //height: 600px;                 /* FORCE full screen height */
    //min-height: 600px;
    //background-size: cover;
    //background-position: center;
    //background-repeat: no-repeat;
    padding: 0; 
    width: 100%;
    //height: 100vh;                 /* FULL SCREEN HEIGHT */
    //min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
        transform: translateY(0px);
}

@media (max-width: 500px) {
    .services-section .container {
        max-width: 98%;
    }
    .services-section .container ul li img{
        height:auto!important;
    }
    .blogs-section article.post {
    width: 100%;}
    section.page-header{
        background-size: contain!important;
    height: 20vh;
    margin-top: 90px;
    }
    .blog-page.posts{
    margin: 0px auto;
    }

section.page-header{
        background-size: contain!important;
    height: 30vh;
    margin-top: 0px;
    }
    
}
.hero-wave{ display : none !important; }

@media (min-width: 900px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
        padding: 7px 20px !important;
    }
}