@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

:root{
   /* New Color Palette */
   --sky-blue: #87CEEB;
   --primary-black: #2c3e50;
   --primary-white: #FFFFFF;
   --secondary-gray: #bdc3c7;
   --background-light: #ecf0f1; /* Off-white for main backgrounds */
   --text-on-dark-bg: var(--primary-white);
   --text-on-light-bg: var(--primary-black);
   --border-color: var(--secondary-gray);
   --shadow-color-rgb: 44, 62, 80; /* For rgba shadows */

   /* Replacing old variables with new ones or deprecating them */
   --main-color: var(--sky-blue); /* Primary accent */
   --black: var(--primary-black); /* Main dark color for text and elements */
   --white: var(--primary-white); /* Main light color */
   --light-black: var(--secondary-gray); /* Lighter text or subtle elements */
   --light-white: rgba(255, 255, 255, 0.85); /* Slightly less transparent white */
   --dark-bg: rgba(var(--shadow-color-rgb), 0.7); /* Dark overlay, using new shadow base */
   --light-bg: var(--background-light);    /* Main light background for sections */

   --border: .1rem solid var(--border-color);
   --box-shadow: 0 .5rem 1rem rgba(var(--shadow-color-rgb), .1);
   --text-shadow: 0 1.5rem 3rem rgba(var(--shadow-color-rgb), .3);
}

*{
   font-family: 'Poppins', sans-serif;
   margin:0; padding:0;
   box-sizing: border-box;
   outline: none; border:none;
   text-decoration: none;
   text-transform: capitalize;
}

html{
   font-size: 62.5%;
   overflow-x: hidden;
   background-color: var(--background-light); /* Set base background for the page */
   color: var(--text-on-light-bg); /* Set base text color */
}

html::-webkit-scrollbar{
   width: 1rem;
}

html::-webkit-scrollbar-track{
   background-color: var(--white);
}

html::-webkit-scrollbar-thumb{
   background-color: var(--main-color);
}

section{
   padding:5rem 10%;
}

@keyframes fadeIn {
   0%{
      transform: scale(0);
      opacity: 0;
   }
}

.heading{
   background-size: cover !important;
   background-position: center !important;
   padding-top: 10rem;
   padding-bottom:15rem;
   display: flex;
   align-items: center;
   justify-content: center;
}

/* Style for reduced padding on page title headings (login/register) */
.page-title-heading {
    padding-top: 6rem;    /* Reduced top padding */
    padding-bottom: 6rem; /* Reduced bottom padding */
    position: relative; /* Needed for the overlay */
    background-blend-mode: multiply; /* Optional: helps blend overlay with image */
}

.page-title-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--shadow-color-rgb), 0.3); /* Adjust opacity (0.3 here) as needed */
    z-index: 1; /* Place overlay above background image but below text */
}

.heading h1{
   font-size: 7rem; /* Reduced from 10rem */
   text-transform: uppercase;
   color: var(--text-on-dark-bg); /* Using semantic variable */
   text-shadow: 0 2px 4px rgba(var(--shadow-color-rgb), 0.5); /* Sharper, more subtle shadow */
   position: relative; /* Ensure text is above overlay */
   z-index: 2; /* Ensure text is above overlay */
}

.btn{
   border-radius: 5px; /* Slightly more modern border-radius */
   display: inline-block;
   background: var(--sky-blue);
   margin-top: 1rem;
   color: var(--primary-black); /* Changed from --primary-white for better contrast */
   font-size: 1.7rem;
   font-weight: 400; /* Changed from 600 */
   padding: 1rem 2.5rem; /* Adjusted padding */
   cursor: pointer;
   transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
}

.btn:hover{
   background: var(--primary-black);
   color: var(--primary-white); /* This remains good */
}

.heading-title{
   text-align: center;
   margin-bottom: 3rem;
   font-size: 4.5rem; /* Slightly reduced for modern look */
   text-transform: uppercase;
   color:var(--primary-black);
}

.header{
   position: sticky;
   top:0; left:0; right:0;
   z-index: 1000;
   background-color: var(--primary-white); /* Header background */
   display: flex;
   padding-top: 2rem;
   padding-bottom: 2rem;
   box-shadow: var(--box-shadow); /* Using the new box-shadow */
   align-items: center;
   justify-content: space-between;
}

.header .logo{
   display: flex;
   align-items: center;
   text-decoration: none;
   font-size: 2.5rem;
   color: var(--primary-black);
}

.header .logo img{
   height: 50px;
   width: auto;
   object-fit: contain;
}

.header .logo span{
   margin-left: 1rem;
   font-size: 2.2rem;
   font-weight: 500;
   color: var(--primary-black);
   transition: color 0.3s ease;
}

.header .logo:hover span{
   color: var(--sky-blue);
}

.header .navbar{
   display: flex; /* Added to center links */
   justify-content: center; /* Added to center links */
   align-items: center; /* Added for vertical alignment */
   flex-grow: 1; /* Allow navbar to take available space */
   gap: 2.5rem; /* Space between links, adjust as needed */
}

.header .navbar a{
   font-size: 2rem;
   /* margin-left: 2rem; Removed, using gap on .navbar instead */
   color:var(--primary-black); /* Navbar link color */
   padding: 0.5rem 0; /* Add some padding for better click area and visual */
   position: relative; /* For underline effect */
   text-decoration: none;
}

.header .navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: var(--sky-blue);
    transition: width .3s ease;
    -webkit-transition: width .3s ease;
}

.header .navbar a:hover::after {
    width: 100%;
    left: 0;
    background-color: var(--sky-blue);
}

.header .navbar a:hover{
   color:var(--sky-blue); /* Navbar link hover color - using sky blue */
}

/* Added styles for user buttons */
.header .user-buttons {
   display: flex; /* Use flexbox to align buttons */
   align-items: center;
}

.header .user-buttons .btn {
   margin-left: 1rem; /* Add some space between buttons and other elements */
   /* General styles for buttons in this container can remain if needed, or be removed if fully handled by specific classes */
}

/* Styling for the Register button */
.header .user-buttons .register-btn {
   background-color: var(--sky-blue);
   color: var(--primary-black); /* Corrected from --primary-white for better contrast */
   border: 1px solid var(--sky-blue); 
   font-weight: 400; /* Changed from 600 as per user request */
}

.header .user-buttons .register-btn:hover {
   background-color: var(--primary-black);
   color: var(--primary-white);
   border-color: var(--primary-black); /* Match border to background on hover */
}

/* Styling for the Login button */
.header .user-buttons .login-btn {
   background-color: var(--primary-white);
   color: var(--primary-black); /* This is already good */
   border: 1px solid var(--sky-blue);
   font-weight: 400; /* Changed from 600 */
}

.header .user-buttons .login-btn:hover {
   background-color: var(--sky-blue);
   color: var(--primary-black); /* Changed from --primary-white */
   border-color: var(--sky-blue);
}

/* End of added styles */

#menu-btn{
   font-size: 2.5rem;
   cursor: pointer;
   color:var(--primary-black); /* Menu button color */
   display: none;
}

.home{
   padding:0;
}

.home .slide{
   text-align: center;
   padding:2rem;
   display: flex;
   align-items: center;
   justify-content: center;
   background-size: cover !important;
   background-position: center !important;
   min-height: 60rem;
}

.home .slide .content{
   width: 85rem;
   display: none;
}

.home .swiper-slide-active .content{
   display: inline-block;
}

.home .slide .content span{
   display: block;
   font-size: 2.2rem;
   color: var(--light-white);
   padding-bottom: 1rem;
   animation:fadeIn .2s linear backwards .2s;
}

.home .slide .content h3{
   font-size: 6vw;
   color:var(--white);
   text-transform: uppercase;
   line-height: 1;
   text-shadow: var(--text-shadow);
   padding:1rem 0;
   animation:fadeIn .2s linear backwards .4s;
}

.home .slide .content .btn{
   animation:fadeIn .2s linear backwards .6s;
}

.home .swiper-button-next,
.home .swiper-button-prev{
   position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  cursor: pointer;
  z-index: 10;
}

.home .swiper-button-next:hover,
.home .swiper-button-prev:hover{
   background: var(--main-color);
   color:var(--white);
}

.home .swiper-button-next::after,
.home .swiper-button-prev::after{
   font-size: 2rem;
}

.home .swiper-button-prev{
   right: 7rem;
}

.services .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
   gap: 1.5rem;
}

.services .box-container .box{
   border-radius: 10px;
   padding:3rem 2rem;
   text-align: center;
   background: var(--primary-white); /* White background for card */
   cursor: pointer;
   border: 1.5px solid var(--secondary-gray); /* Always visible light border */
   transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.services .box-container .box h3,
.services .box-container .box p {
   color: var(--primary-black); /* Default text color */
   transition: color 0.3s;
}

.services .box-container .box img {
   filter: none;
   transition: filter 0.3s;
}

.services .box-container .box:hover{
   background: var(--primary-black); /* Dark background on hover */
   border-color: var(--primary-black); /* Dark border on hover */
}

.services .box-container .box:hover h3,
.services .box-container .box:hover p {
   color: var(--primary-white); /* White text on dark background */
}

.services .box-container .box:hover img {
   filter: brightness(0) invert(1); /* Make icon white on dark background */
}

.services .box-container .box img{
   height: 7rem;
}

.services .box-container .box h3{
   font-size: 1.7rem;
   padding-top: 1rem;
}

.home-about{
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 2.5rem; /* Added gap for spacing between image and content */
}

.home-about .image{
   flex:1 1 41rem;
}

.home-about .image img{
   border-radius: 10px;
   width: 100%;
}

.home-about .content{
   border-radius: 10px;
   flex:1 1 41rem;
   padding:3rem;
   background: var(--light-bg);
   max-width: 500px; /* Prevents card from being too wide on large screens */
}

.home-about .content h3{
   font-size: 3rem;
   color:var(--black);
}

.home-about .content p{
   font-size: 1.5rem;
   padding:1rem 0;
   line-height: 2;
   color:var(--primary-black);
}

.home-packages{
   background: var(--light-bg);
}

.home-packages .box-container{
   
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
   gap: 2rem;
}

.home-packages .box-container .box{
   border-radius: 10px;
   border:var(--border);
   box-shadow: var(--box-shadow);
   background: var(--white);
}

.home-packages .box-container .box:hover .image img{
   transform: scale(1.1);
}

.home-packages .box-container .box .image{
   height: 25rem;
   overflow: hidden;
}

.home-packages .box-container .box .image img{
   height: 100%;
   width: 100%;
   object-fit: cover;
   transition: .2s linear;
}

.home-packages .box-container .box .content{
   padding:2rem;
   text-align: center;
}

.home-packages .box-container .box .content h3{
   font-size: 2.5rem;
   color:var(--black);
}

.home-packages .box-container .box .content p{
   font-size: 1.5rem;
   color:var(--primary-black);
   line-height: 2;
   padding:1rem 0;
}

.home-packages .load-more{
   text-align: center;
   margin-top: 2rem;
}

.home-offer{
   text-align: center;
}

.home-offer .content{
   max-width:70rem;
   margin:0 auto;
}

.home-offer .content h3{
   font-size: 3.5rem;
   text-transform: uppercase;
   color:var(--black);
}

.home-offer .content p{
   font-size: 1.5rem;
   color:var(--primary-black);
   line-height: 2;
   padding:1rem 0;
}

.about{
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap:3rem;
}

.about .image{
   flex:1 1 41rem;
}

.about .image img{
   width: 100%;
}

.about .content{
   flex:1 1 41rem;
   text-align: center;
}

.about .content h3{
   font-size: 3rem;
   color:var(--black);
}

.about .content p{
   font-size: 1.5rem;
   color:var(--primary-black);
   line-height: 2;
   padding:1rem 0;
}

.about .content .icons-container{
   margin-top: 2rem;
   display: flex;
   flex-wrap: wrap;
   gap:1.5rem;
   align-items: flex-end;
}

.about .content .icons-container .icons{
   background: var(--light-bg); /* Original desktop style */
   padding:2rem;
   flex:1 1 16rem;
   /* Remove border if it was added globally */
}

.about .content .icons-container .icons i{
   font-size: 4rem;
   margin-bottom: 2rem;
   color:var(--main-color);
}

.about .content .icons-container .icons span{
   font-size: 1.5rem;
   color:var(--primary-black);
   display:block;
}

.reviews{
   background: var(--light-bg);
}

.reviews .slide{
   padding:2rem;
   border:var(--border);
   background: var(--white);
   text-align: center;
   box-shadow: var(--box-shadow);
   user-select: none;
}

.reviews .slide .stars{
   padding-bottom: .5rem;
}

.reviews .slide .stars i{
   font-size: 1.7rem;
   color:var(--main-color);
}

.reviews .slide p{
   font-size: 1.5rem;
   color:var(--primary-black);
   line-height: 2;
   padding:1rem 0;
}

.reviews .slide h3{
   font-size: 2rem;
   color:var(--black);
}

.reviews .slide span{
   font-size: 1.5rem;
   color:var(--main-color);
   display: block;
}

.reviews .slide img{
   height: 7rem;
   width: 7rem;
   border-radius: 50%;
   margin-top: 1rem;
}

.packages .box-container{
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 2rem;
}

.packages .box-container .box{
   border-radius: 10px;
   box-shadow: var(--box-shadow);
   background: var(--white);
   display: none;
}

.packages .box-container .box:nth-child(1),
.packages .box-container .box:nth-child(2),
.packages .box-container .box:nth-child(3),
.packages .box-container .box:nth-child(4),
.packages .box-container .box:nth-child(5)
{
   display: inline-block;
}

.packages .box-container .box:hover .image img{
   transform: scale(1.1);
}

.packages .box-container .box .image{
   height: 25rem;
   overflow: hidden;
}

.packages .box-container .box .image img{
   border-radius: 10px;
   height: 100%;
   width: 100%;
   object-fit: cover;
   transition: .2s linear;
}

.packages .box-container .box .content{
   padding:2rem;
   text-align: center;
}

.packages .box-container .box .content h3{
   font-size: 2.5rem;
   color:var(--black);
}

.packages .box-container .box .content p{
   font-size: 1.5rem;
   color:var(--primary-black);
   line-height: 2;
   padding:1rem 0;
}

.packages .load-more{
   text-align: center;
   margin-top: 2rem;
}

.booking .book-form{
   padding:2rem;
   background: var(--light-bg);
}

.booking .book-form .flex{
   display: flex;
   flex-wrap: wrap;
   gap:2rem;
}

.booking .book-form .flex .inputBox{
   flex:1 1 41rem;
}

.booking .book-form .flex .inputBox input{
   width: 100%;
   padding:1.2rem 1.4rem;
   font-size: 1.6rem;
   color:var(--primary-black);
   text-transform: none;
   margin-top: 1.5rem;
   border:var(--border);
}

.booking .book-form .flex .inputBox input:focus{
   background: var(--black);
   color:var(--white);
}

.booking .book-form .flex .inputBox input:focus::placeholder{
   color:var(--light-white);
}

.booking .book-form .flex .inputBox span{
   font-size: 1.5rem;
   color:var(--primary-black);
}

.booking .book-form .btn{
   margin-top: 2rem;
}

.footer{
   background: url(../images/footer-bg.jpg) no-repeat;
   background-size: cover;
   background-position: center;
}

.footer .box-container{
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
   gap: 3rem;
}

.footer .box-container .box h3{
   color:var(--white);
   font-size: 2.5rem;
   padding-bottom: 2rem;
}

.footer .box-container .box a{
   color:var(--light-white);
   font-size: 1.5rem;
   padding-bottom: 1.5rem;
   display: block;
}

.footer .box-container .box a i{
   color:var(--main-color);
   padding-right: .5rem;
   transition: .2s linear;
}

.footer .box-container .box a:hover i{
   padding-right: 2rem;
}

.footer .credit{
   text-align: center;
   padding-top: 3rem;
   margin-top: 3rem;
   border-top: .1rem solid var(--light-white);
   font-size: 2rem;
   color:var(--white);
}

.footer .credit span{
   color:var(--main-color);
}

/* media queries  */

@media (max-width:1200px){

   section{
      padding:3rem 5%;
   }

}

@media (max-width:991px){

   html{
      font-size: 55%;
   }

   section{
      padding:3rem 2rem;
   }

   .home .slide .content h3{
      font-size: 10vw;
   }

   .home-about{
      flex-direction: column;
      gap: 0;
   }
   .home-about .content{
      margin-top: 2rem;
      max-width: 100%;
   }

}

@media (max-width:768px){

   .heading h1{
      font-size: 4rem;
   }

   #menu-btn{
      display: inline-block;
      transition: .2s linear;
   }

   #menu-btn.fa-times{
      transform: rotate(180deg);
   }

   .header .navbar{
      position: absolute;
      top:99%; left:0; right:0;
      background-color: var(--white);
      border-top: var(--border);
      padding:2rem;
      transition: .2s linear;
      clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
   }

   .header .navbar.active{
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
   }

   .header .navbar a{
      display: block;
      margin:2rem;
      text-align: center;
   }

   /* Style for .icons within .about .content on mobile */
   .about .content .icons-container .icons {
      background-color: var(--primary-white); /* Match card background */
      border: 1px solid var(--border-color); /* Add border for separation */
      margin-bottom: 1.5rem; /* Add some space between stacked icon boxes */
   }

}

@media (max-width:450px){

   html{
      font-size: 50%;
   }

   .heading-title{
      font-size: 3.5rem;
   }

}

/* Tracking Container Styles */
.tracking-container {
    background-color: var(--background-light); /* Blend with page background */
    padding: 3rem 10%; /* Provides spacing for title and card */
    margin-top: 0;
    /* border-bottom: 1px solid var(--border-color); Removed */
}

.tracking-navigation {
    display: flex;
    margin-bottom: 2rem;
    /* border-bottom removed previously */
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--secondary-gray); /* Add a subtle divider between title and form */
}

.track-nav-item {
    font-size: 2.4rem; 
    color: var(--primary-black);
    font-weight: 600;
    display: flex; 
    align-items: center; 
    /* Other styles */
}

.track-nav-item i {
    margin-right: 1rem; 
    color: var(--sky-blue);
    font-size: 2.2rem;
}

/* Remove hover effect as it's not interactive */
/* .track-nav-item:hover {
    color: var(--sky-blue); 
} */


/* .track-nav-item.active no longer needs complex styling, base style is now prominent */

.tracking-content { 
    max-width: 800px; 
    margin: 0 auto; 
    background-color: var(--primary-white); /* Card background */
    padding: 2.5rem; /* Padding inside the card */
    border-radius: 8px; /* Rounded corners for the card */
    box-shadow: var(--box-shadow); /* Shadow for the card */
}

.tracking-form label {
    display: block;
    font-size: 1.4rem;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.tracking-form .input-group {
    display: flex;
    align-items: center;
    border: 1px solid var(--sky-blue); /* Blue border for the group */
    border-radius: 5px;
    padding-left: 1rem;
    background-color: var(--primary-white);
}

.tracking-form .input-group .input-icon {
    color: var(--sky-blue);
    font-size: 1.8rem;
    margin-right: 0.5rem; /* Space between icon and input */
}

.tracking-form input[type="text"] {
    flex-grow: 1;
    padding: 1.2rem 1rem;
    font-size: 1.6rem;
    border: none; /* Border is on the group */
    outline: none;
    color: var(--primary-black);
    background-color: transparent;
    text-transform: none; /* Override global capitalize if needed */
}

.tracking-form input[type="text"]::placeholder {
    color: #888888; /* Changed from var(--secondary-gray) to a darker gray */
    font-style: italic;
}

.tracking-form .track-btn {
    background-color: var(--primary-black); 
    color: var(--primary-white); /* This is good */
    font-weight: 400; /* Changed from 600 */
    padding: 1.4rem 2.5rem; 
    border-radius: 0 3px 3px 0; 
    margin-top: 0; 
    font-size: 1.6rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none; 
}

.tracking-form .track-btn i {
    margin-left: 0.5rem;
}

.tracking-form .track-btn:hover {
    background-color: var(--sky-blue);
    color: var(--primary-black); /* Changed from --primary-white */
}

/* End of Tracking Container Styles */

/* Tracking Form Styles end */


/* Registration Form Styles */
.registration {
    background-color: var(--background-light);
    padding: 5rem 10%;
}

.registration-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--primary-white);
    border-radius: 12px; /* Slightly more rounded corners */
    box-shadow: 0 10px 25px rgba(var(--shadow-color-rgb), 0.1); /* Enhanced shadow */
    padding: 4rem;
}

.registration-title {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 4rem;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.registration-title:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 4px;
    background: var(--sky-blue);
    border-radius: 2px;
}

.section-title {
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 2rem;
    font-weight: 500;
}

.registration-form {
    width: 100%;
}

.form-section {
    margin-bottom: 4rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--secondary-gray);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1 1 300px;
}

.form-group {
    margin-bottom: 2rem;
}

.section-label {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon i {
    position: absolute;
    left: 1.5rem;
    color: var(--secondary-gray);
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.input-with-icon input {
    padding-left: 4.5rem !important;
}

.input-with-icon input:focus + i,
.input-with-icon input:not(:placeholder-shown) + i {
    color: var(--sky-blue);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 1.3rem 1.5rem;
    font-size: 1.6rem;
    border: 1px solid var(--secondary-gray);
    border-radius: 8px; /* Slightly more rounded */
    background-color: var(--primary-white);
    color: var(--primary-black);
    transition: all 0.3s ease;
    text-transform: none;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="tel"]:focus {
    border-color: var(--sky-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.2); /* Subtle focus glow */
}

/* Modern checkbox styling */
.modern-checkbox {
    position: relative;
}

.modern-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.modern-checkbox label {
    position: relative;
    padding-left: 3.5rem;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1.6;
    display: block;
    color: var(--primary-black);
}

.modern-checkbox label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    width: 2.2rem;
    height: 2.2rem;
    border: 2px solid var(--secondary-gray);
    border-radius: 5px;
    background-color: var(--primary-white);
    transition: all 0.3s ease;
}

.modern-checkbox label:after {
    content: '✓';
    position: absolute;
    top: 0.3rem;
    left: 0.5rem;
    font-size: 1.8rem;
    color: var(--primary-white);
    opacity: 0;
    transition: all 0.2s ease;
}

.modern-checkbox input[type="checkbox"]:checked + label:before {
    background-color: var(--sky-blue);
    border-color: var(--sky-blue);
}

.modern-checkbox input[type="checkbox"]:checked + label:after {
    opacity: 1;
}

.modern-checkbox input[type="checkbox"]:focus + label:before {
    box-shadow: 0 0 0 3px rgba(135, 206, 235, 0.2);
}

.submit-btn {
    background-color: var(--sky-blue); /* Explicitly ensure sky-blue background */
    color: var(--primary-black); /* Ensure black text for readability, inheriting from .btn is fine too */
    font-weight: 400; /* Ensure font-weight is 400, inheriting from .btn is fine */
    font-size: 1.8rem;
    padding: 1.5rem 4rem;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 4rem auto 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(var(--shadow-color-rgb), 0.15);
}

.submit-btn:hover {
    background-color: var(--primary-black);
    color: var(--primary-white); /* Ensure white text on hover, inheriting from .btn:hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(var(--shadow-color-rgb), 0.2);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(var(--shadow-color-rgb), 0.1);
}

.submit-btn i {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Media queries for registration form */
@media (max-width: 768px) {
    .registration-container {
        padding: 3rem;
    }
    
    .registration-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 450px) {
    .registration-container {
        padding: 2.5rem 2rem;
        border-radius: 8px;
    }
    
    .registration-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* End of Registration Form Styles */

/* Login Form Styles */
.login {
    background-color: var(--background-light);
    padding: 5rem 10%;
    min-height: 60vh; /* Ensure it takes up some space even if content is short */
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    max-width: 500px; /* Narrower for login form */
    width: 100%;
    margin: 2rem auto;
    background-color: var(--primary-white);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(var(--shadow-color-rgb), 0.1);
    padding: 4rem;
}

.login-title {
    font-size: 3rem;
    color: var(--primary-black);
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 600;
    position: relative;
}

.login-title:after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6rem;
    height: 4px;
    background: var(--sky-blue);
    border-radius: 2px;
}

.login-form .form-group {
    margin-bottom: 2.5rem;
}

/* Re-use .input-with-icon styles from registration form */
/* Re-use .form-group input styles from registration form */

.login-form .error-message {
    display: block;
    color: #e74c3c; /* Red color for error messages */
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.login-submit-btn {
    width: 100%; /* Make login button full width */
    margin-top: 1rem;
    margin-bottom: 2rem;
    /* Styles like background, color, font-weight will be inherited from .btn and .submit-btn */
}

.form-help-link {
    text-align: center;
    margin-top: 2rem;
}

.form-help-link a {
    font-size: 1.5rem;
    color: var(--sky-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-help-link a:hover {
    color: var(--primary-black);
    text-decoration: underline;
}

/* Responsive adjustments for login */
@media (max-width: 576px) {
    .login-container {
        padding: 3rem 2.5rem;
        margin: 1rem;
    }
    .login-title {
        font-size: 2.6rem;
        margin-bottom: 2.5rem;
    }
}
/* End of Login Form Styles */

/* footer section starts  */

/* Force card-style container for main content sections on all screen sizes */
.about .content,
.home-about .content,
.home-offer .content {
   background-color: var(--primary-white) !important;
   padding: 2.5rem !important;
   border-radius: 8px !important;
   box-shadow: var(--box-shadow) !important;
   margin-top: 2rem !important;
   width: 100% !important;
}

/* Force lowercase email in footer */
.footer .box-container .box a[href^="mailto:"] {
   text-transform: lowercase !important;
}
