@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{

  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;

}

body{

    width: 100% !important;
    overflow-x: hidden !important;

}
.roboto-font{
    font-family: "Roboto", sans-serif !important;
}
.pacifico-font {
    font-family: "Pacifico", cursive !important;
    font-style: normal;
  }

.font-400{
    font-weight: 400 !important;
}

.font-500{
    font-weight: 500 !important;
}

.font-600{
    font-weight: 600 !important;
}

.font-700{
    font-weight: 700 !important;
}

.font-900{
    font-weight: 900 !important;
}

.text-06{

    font-size: 0.6rem !important;
}

.text-08{

    font-size: 0.8rem !important;
}

.text-10{

    font-size: 1rem !important;
}

.text-12{

    font-size: 1.2rem !important;
}

.text-14{

    font-size: 1.4rem !important;
}

.text-16{

    font-size: 1.6rem !important;
}

.text-18{

    font-size: 1.8rem !important;
}

.text-20{

    font-size: 2rem !important;
}

.text-22{

    font-size: 2.2rem !important;
}

.text-24{

    font-size: 2.4rem !important;
}

.text-26{

    font-size: 2.6rem !important;
}

.text-28{

    font-size: 2.8rem !important;
}

.text-30{

    font-size: 3rem !important;
}

.bg-dark-blue{

    background: linear-gradient(to right, #2d3c43, #203454) !important;
}

.bg-solid-dark-blue{

    background-color: #203454 !important;
}

.text-dark{
    color: #ffffff !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.bg-common-blue{

    background-color: #06398b !important;
}

.text-light-blue{

    color: #F2FBFF !important;
}

.bg-light-blue{

    background-color: #F2FBFF !important;
}

.text-dark-blue{

    color: #203454 !important;
}

.bg-red{

    background-color: #F95352 !important;
}

.bg-light-red{

    background-color: #FEE6E6 !important;
}

.text-red{

    color: #F95352 !important;
}

.border-red{

    border: 1px solid #F95352 !important;
}

.btn-dark-blue{

    background-color: #203454 !important;
    color: #FFFFFF !important;
}

.btn-ab-red{

    background-color: #F95352 !important;
    color: #FFFFFF !important;
}
.red-massage{

    width: 100% !important;
    overflow: hidden !important;
}

/* .video-background {
    position: relative;
    width: 100%;
   
    overflow: hidden;
  }
  
  .background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2; 
    pointer-events: none;
  } */

  .video-background {
    position: relative;
    width: 100%;
    top: 80%;
    background-image: url('../images/home/bg1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    min-height: 600px;
}

.video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 0; /* Changed to 0 to appear behind content */
}
  
  .white-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(123, 169, 255, 0.5); /* Semi-transparent white */
    z-index: -1; /* Place it above the video but behind the content */
  }

  .main-paragraph{

    width: 90% ;
    text-align: justify;
  }

  .main-card{

    border-radius: 90px !important;
    background-color: #F95352 !important;
  }

  .hero-section {
    background: #0d1421;
    /* min-height: 100vh; */
}

.bg-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(13, 20, 33, 0.4) 0%,
        rgba(13, 20, 33, 0.2) 50%,
        rgba(13, 20, 33, 0.1) 100%
    );
    z-index: 1;
}

.animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 75, 43, 0.05), rgba(255, 65, 108, 0.05));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: -2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: -4s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.min-vh-75 {
    min-height: 75vh;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

.feature-icon {
    transition: all 0.3s ease;
}

.hero-badge {
    animation: fadeInUp 0.5s ease-out;
}

.hero-content {
    animation: fadeInLeft 0.5s ease-out;
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.card.blur-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.blur-card .card-body {
    background: rgba(13, 20, 33, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
}

.btn {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

  @media(max-width: 768px) {
   
    .main-heading{

        font-size: 1.2rem ;
    }

    .main-name{

        font-size: 2rem
    }

    .main-lable{

    font-size: 0.7rem

    }

    .main-paragraph{

        width: 100% ;
        text-align: justify;
      }

      .airports{

        font-size: 0.7rem !important;
      }

      .product-page-heding{

        font-size: 1.2rem;
      }
      .product-page-sub{

        font-size: 0.8rem;
      }

      .sort-list{
        display: none !important;
      }
      body{
    
        width: 100% !important;
        overflow-x: hidden !important;
    
    }

  }

  .custom-confirm-btn {
    background-color: #F95352 !important;
    color: white !important; 
    border-radius: 5px  !important; 
}
  
#compare_image{

    border-radius: 10px;
    width: 100%;
}

.font-justify{

    text-align: justify !important;
}
.step_img {

    width: 100%;
}

.step-cards{

    height: 450px;
    overflow: hidden;
}

.type-card{

    height: 400px;
    overflow: hidden;
}


.type_card_image{
    padding-top: 20px !important;
    width: 100px !important;
}

.round-btn{

    border-radius: 20px !important;
    border: 0px !important;
}

.option_card_image{

    padding-top: 20px; 
    width: 100px !important;
}
.option-cards {
    height: auto !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 15px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(32, 52, 84, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    margin-bottom: 1rem !important;
    min-height: 120px !important;
}

.option-cards:hover {
    transform: translateX(10px) !important;
    box-shadow: 0 20px 40px rgba(32, 52, 84, 0.12) !important;
}

.option-cards::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-cards:hover::before {
    opacity: 1;
}

.option-image-card {
    padding:1rem !important;
    /* background: linear-gradient(135deg, #fee6e6 0%, #ffffff 100%); */
    flex-shrink: 0 !important;
    width: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.option_card_image {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(32, 52, 84, 0.1));
}

.option-cards:hover .option_card_image {
    transform: scale(1.1);
}

.option-card-content {
    flex: 1 !important;
    padding: 1rem !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
}

.option-card-content h5 {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #203454 !important;
    margin-bottom: 0.5rem !important;
    position: relative;
    padding-bottom: 0.3rem;
    text-align: left !important;
}

.option-card-content h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    border-radius: 2px;
}

.option-card-content p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    color: #4a5568 !important;
    margin-bottom: 0.5rem !important;
}

.option-cards .btn-dark-blue {
    background: linear-gradient(45deg, #203454, #2d3c43) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 0.4rem 0.7rem !important;
    margin-left: 1rem !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
    font-size: 0.7rem !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 52, 84, 0.15);
    width: 100px !important;
    align-self: flex-end !important;
}

.type_card_image_mobile{

    width: 20% !important;
}

.bg-light{

    background-color: #f3f3f3 !important;
}
 
.option_card_image_mobile{

    width: 100% !important;
}
#girl_image{

    width: 100%;
}

.footer-links{

    text-decoration: none !important;
    font-size: 0.8rem !important;
    padding: 0 !important;
}

.capricon{

    color: #ff3c00;
    font-weight: 600;
}

.stikey{

    position: sticky !important;
    z-index: 999 !important;
}

.product-image{

    width: 100% !important;
}

#checkout_image{

    width: 100% !important;
    border-radius: 10px !important;
}
#about_image{

    width: 100% !important;
}

.map{
    width: 100%;
    height: 100%;
}

.custom-dropdown {
    position: relative;
    width: 100%;
    border: 0px;
}

.custom-dropdown select {
    appearance: none; 
    -webkit-appearance: none; 
    padding-right: 30px; 
    background-color: white;
    border: 0px;
}

.custom-dropdown::after {
    content: "\f107"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; 
    color: #203454; 
    border: 0px;
}

.block_image{

    width: 100%;
    height: 250px;
    object-fit:contain;
    background-color: #203454;
}

.image-holder{

    width: 100%;
    height: 400px;
    object-fit: cover;
    overflow: hidden;
}

/* Modern Compare Section Redesign */
.compare-section {
    background: #ffffff;
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.compare-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 80%;
    height: 160%;
    background: linear-gradient(45deg, rgba(32, 52, 84, 0.03) 0%, rgba(32, 52, 84, 0.08) 100%);
    transform: rotate(-15deg);
    z-index: 1;
}

.compare-container {
    position: relative;
    z-index: 2;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.compare-image-wrapper {
    position: relative;
    padding: 1.5rem;
}

.compare-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    border-radius: 20px;
    transform: rotate(-3deg);
    z-index: -1;
}

#compare_image {
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 15px 30px rgba(32, 52, 84, 0.15);
    /* transform: rotate(3deg); */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#compare_image:hover {
    transform: rotate(0deg) scale(1.02);
}

.compare-content {
    padding: 1.5rem;
}

.compare-badge {
    display: inline-block;
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.2);
}

.compare-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #203454;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    position: relative;
}

.compare-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1rem;
    position: relative;
}

.compare-highlight {
    color: #203454;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.compare-highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 75, 43, 0.2);
    z-index: -1;
    transition: height 0.3s ease;
}

.compare-highlight:hover::before {
    height: 100%;
}

.compare-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.2);
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #203454;
}

.compare-button {
    background: linear-gradient(45deg, #203454, #2d3c43);
    color: white;
    padding: 0.5rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 52, 84, 0.2);
    position: relative;
    overflow: hidden;
}

.compare-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.compare-button:hover::before {
    opacity: 1;
}

.compare-button span {
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .compare-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .compare-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .compare-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .compare-title::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .compare-text {
        text-align: center;
    }

    .compare-features {
        grid-template-columns: 1fr;
    }

    .compare-button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .compare-section {
        padding: 3rem 0;
    }

    .compare-title {
        font-size: 2rem;
    }

    .compare-image-wrapper {
        padding: 1rem;
    }

    .compare-image-wrapper::before {
        border-radius: 20px;
    }

    #compare_image {
        border-radius: 15px;
    }
}

/* Modern Search Section Styles */
.search-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.search-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(45deg, rgba(32, 52, 84, 0.03) 0%, rgba(32, 52, 84, 0.08) 100%);
    transform: rotate(-15deg);
    z-index: 1;
}

.search-card {
    background: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(32, 52, 84, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem !important;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.search-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(32, 52, 84, 0.15) !important;
}

.search-section label {
    color: #203454;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.search-section .form-control,
.search-section .form-select {
    background: #ffffff !important;
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    padding: 0.8rem 1rem !important;
    font-size: 0.95rem !important;
    color: #203454 !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(32, 52, 84, 0.05);
}

.search-section .form-control:focus,
.search-section .form-select:focus {
    border-color: #203454 !important;
    box-shadow: 0 0 0 0.2rem rgba(32, 52, 84, 0.15) !important;
    background: #ffffff !important;
}

.search-section .btn-dark-blue {
    background: linear-gradient(45deg, #203454, #2d3c43) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 0.8rem 1.5rem !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 52, 84, 0.2);
    position: relative;
    overflow: hidden;
}

.search-section .btn-dark-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 52, 84, 0.3);
}

.search-section .btn-dark-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2d3c43, #203454);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-section .btn-dark-blue:hover::before {
    opacity: 1;
}

.search-section .btn-dark-blue span {
    position: relative;
    z-index: 1;
}

.search-section .invalid-feedback {
    font-size: 0.8rem;
    color: #F95352;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .search-section {
        padding: 1rem 0;
    }
    
    .search-card {
        padding: 1.5rem !important;
    }
    
    .search-section .form-control,
    .search-section .form-select {
        margin-bottom: 1rem;
    }
    
    .search-section .btn-dark-blue {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Modern Product Page Heading Section */
.product-page-heding {
    font-size: 2.2rem;
    font-weight: 800;
    color: #203454;
    position: relative;
    padding-bottom: 1rem;
    background: linear-gradient(45deg, #203454, #2d3c43);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(32, 52, 84, 0.1);
    line-height: 1.2;
}

.product-page-heding::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    border-radius: 2px;
}

.product-page-sub {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    padding-top: 1rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.sort-list {
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(32, 52, 84, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    height: fit-content;
}

.sort-list:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(32, 52, 84, 0.12);
}

.sort-list .small-text {
    color: #203454;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    margin: 0;
}

#sort-options {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-size: 0.9rem !important;
    color: #203454;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23203454' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 12px;
    min-width: 140px;
    height: 38px;
}

#sort-options:focus {
    border-color: #203454;
    box-shadow: 0 0 0 3px rgba(32, 52, 84, 0.1);
    outline: none;
}

/* Container adjustments for better alignment */
.container-fluid .row.px-4 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.container-fluid .row.px-4:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .product-page-heding {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .product-page-heding::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .product-page-sub {
        text-align: center;
        padding-left: 0;
        margin-bottom: 1rem;
        justify-content: center;
    }

    .product-page-sub::before {
        display: none;
    }

    .sort-list {
        margin: 0.5rem auto;
        max-width: 300px;
        justify-content: center;
    }

    .container-fluid .row.px-4 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Modern Book Now Section Styles */
.bg-light-blue {
    background: linear-gradient(135deg, #F2FBFF 0%, #E6F4FF 100%) !important;
    position: relative;
    overflow: hidden;
}

.bg-light-blue::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(45deg, rgba(32, 52, 84, 0.03) 0%, rgba(32, 52, 84, 0.08) 100%);
    transform: rotate(-15deg);
    z-index: 1;
}

.bg-light-blue .text-28 {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    background: linear-gradient(45deg, #203454, #2d3c43);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(32, 52, 84, 0.1);
    position: relative;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.bg-light-blue .text-14 {
    font-size: 1.4rem !important;
    color: #4a5568 !important;
    line-height: 1.6 !important;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.bg-light-blue .text-14::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    border-radius: 2px;
}

#girl_image {
    width: 100%;
    transform: translateY(20px);
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(32, 52, 84, 0.2));
    transition: all 0.5s ease;
}

#girl_image:hover {
    transform: translateY(0) scale(1.02);
    filter: drop-shadow(0 15px 30px rgba(32, 52, 84, 0.3));
}

@keyframes float {
    0% {
        transform: translateY(20px);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .bg-light-blue .text-28 {
        font-size: 2rem !important;
    }
    
    .bg-light-blue .text-14 {
        font-size: 1.1rem !important;
    }
    
    #girl_image {
        transform: translateY(10px);
    }
}

@media (max-width: 768px) {
    .video-background {
        max-height: 800px !important;
    }
}