:root {
   --primary-color: #464EB8;
   --secondary-color: #7B83EB;
   --accent-color: #505AC9;
   --text-color: #333;
   --light-gray: #f5f5f5;
   --white: #ffffff;
}

/* Background and Layout */
.page-background {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
   background: linear-gradient(rgba(70, 78, 184, 0.9), rgba(123, 131, 235, 0.9)),
               url('assets/banner.png');
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
   z-index: -1;
}

.content-wrapper {
   position: relative;
   z-index: 1;
}

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   scroll-behavior: smooth;
}

body {
   font-family: 'Segoe UI', sans-serif;
   line-height: 1.6;
   color: var(--text-color);
   overflow-x: hidden;
}

/* Header Styles */
header {
   position: fixed;
   top: 0;
   width: 100%;
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
   box-shadow: 0 2px 20px rgba(0,0,0,0.1);
   z-index: 1000;
   padding: 0.8rem 0;
}

/* .navbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
} */

.logo {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.logo img {
   height: 40px;
   filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
   transition: transform 0.3s ease;
}

.logo span {
   font-weight: 600;
   font-size: 1.2rem;
   color: var(--primary-color);
}

/* Section Styles */
.section-container {
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   padding: 3rem 2rem;
   border-radius: 20px;
   margin: 2rem auto;
   max-width: 1200px;
}

.section-title {
   color: var(--white);
   font-size: 2.5rem;
   text-align: center;
   margin-bottom: 2rem;
   text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.section-subtitle {
   color: var(--white);
   text-align: center;
   margin-bottom: 2rem;
   opacity: 0.9;
}

/* Feature Cards */
.teams-features {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 1.5rem;
   margin-top: 2rem;
}

.feature-card {
   background: rgba(255, 255, 255, 0.95);
   padding: 2rem;
   border-radius: 15px;
   box-shadow: 0 4px 15px rgba(0,0,0,0.1);
   text-align: center;
   transition: all 0.3s ease;
}

.feature-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.feature-icon {
   font-size: 2.5rem;
   color: var(--primary-color);
   margin-bottom: 1rem;
}

/* Product Cards */
.products-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 1.5rem;
   margin-top: 2rem;
}

.product-card {
   background: rgba(255, 255, 255, 0.95);
   padding: 2rem;
   border-radius: 15px;
   text-align: center;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Booking Form */
.booking-form {
   background: rgba(255, 255, 255, 0.95);
   padding: 2rem;
   border-radius: 20px;
   box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   max-width: 600px;
   margin: 0 auto;
}

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

.form-group label {
   display: block;
   margin-bottom: 0.5rem;
   font-weight: 600;
   color: var(--primary-color);
}

.form-control {
   width: 100%;
   padding: 0.8rem;
   border: 2px solid rgba(70, 78, 184, 0.2);
   border-radius: 10px;
   font-size: 1rem;
   transition: all 0.3s ease;
}

.form-control:focus {
   border-color: var(--primary-color);
   box-shadow: 0 0 0 3px rgba(70, 78, 184, 0.1);
   outline: none;
}

.promo-code-container {
   display: flex;
   gap: 1rem;
}

.cta-button {
   display: inline-block;
   padding: 1rem 2rem;
   background: var(--primary-color);
   color: var(--white);
   text-decoration: none;
   border-radius: 10px;
   border: none;
   cursor: pointer;
   font-size: 1rem;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(70, 78, 184, 0.3);
}

.cta-button:hover {
   background: var(--accent-color);
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(70, 78, 184, 0.4);
}

.total-price {
   font-size: 1.5rem;
   font-weight: 600;
   margin: 1.5rem 0;
   color: var(--primary-color);
   text-align: center;
}

/* Footer */
footer {
   background: rgba(70, 78, 184, 0.9);
   backdrop-filter: blur(10px);
   color: var(--white);
   padding: 2rem 0;
   text-align: center;
   margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
   .section-title {
       font-size: 2rem;
   }
   
   .nav-links {
       display: none;
   }
   
   .section-container {
       padding: 2rem 1rem;
       margin: 1rem;
   }
   
   .booking-form {
       margin: 1rem;
   }
   
   .promo-code-container {
       flex-direction: column;
   }
}

/* Additional Invoice Styles */
.invoice-container {
   background: var(--white);
   max-width: 800px;
   margin: 2rem auto;
   padding: 2rem;
   border-radius: 15px;
   box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.invoice-header {
   display: flex;
   justify-content: space-between;
   margin-bottom: 2.5rem;
   padding-bottom: 1.5rem;
   border-bottom: 2px solid var(--light-gray);
}

.invoice-details {
   margin-bottom: 2rem;
   padding: 1.5rem;
   background: var(--light-gray);
   border-radius: 10px;
}

.invoice-table {
   width: 100%;
   border-collapse: collapse;
   margin-bottom: 2rem;
}

.invoice-table th, .invoice-table td {
   padding: 1rem;
   border: 1px solid var(--light-gray);
}

.invoice-table th {
   background: var(--primary-color);
   color: var(--white);
}

.total-section {
   text-align: right;
   margin-bottom: 2rem;
   padding: 1rem;
   background: var(--light-gray);
   border-radius: 10px;
}

.company-details, .banking-details {
   margin-top: 2rem;
   padding: 1.5rem;
   background: var(--light-gray);
   border-radius: 10px;
}

.company-details h3, .banking-details h3 {
   color: var(--primary-color);
   margin-bottom: 1rem;
}

.company-details p, .banking-details p {
   margin-bottom: 0.5rem;
}

.print-button {
   display: inline-block;
   padding: 1rem 2rem;
   background: var(--primary-color);
   color: var(--white);
   text-decoration: none;
   border-radius: 10px;
   border: none;
   cursor: pointer;
   font-size: 1rem;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(70, 78, 184, 0.3);
   margin-top: 2rem;
}

.print-button:hover {
   background: var(--accent-color);
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(70, 78, 184, 0.4);
}

@media (max-width: 768px) {
   .invoice-container {
       margin: 1rem;
       padding: 1rem;
   }
   
   .invoice-header {
       flex-direction: column;
       gap: 1rem;
   }
   
   .invoice-table {
       font-size: 0.9rem;
   }
}
.hero-section {
   min-height: 100vh;
   background: linear-gradient(rgba(70, 78, 184, 0.4), rgba(123, 131, 235, 0.6)),
               url('assets/banner.png');
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   padding-top: 80px;
   position: relative;
}

.hero-carousel {
   width: 100%;
   max-width: 800px;
   text-align: center;
   color: var(--white);
}

.carousel-container {
   position: relative;
   height: 200px;
   margin-bottom: 2rem;
}

.carousel-slide {
   position: absolute;
   width: 100%;
   opacity: 0;
   transition: opacity 0.5s ease-in-out;
   padding: 0 2rem;
}

.carousel-slide.active {
   opacity: 1;
}

.carousel-slide h2 {
   font-size: 3rem;
   margin-bottom: 1rem;
   text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-slide p {
   font-size: 1.5rem;
   opacity: 0.9;
}

.carousel-dots {
   display: flex;
   justify-content: center;
   gap: 1rem;
}

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

.dot.active {
   background: var(--white);
}

.hero-cta {
   margin-top: 2rem;
   font-size: 1.2rem;
   padding: 1.2rem 3rem;
   background: var(--primary-color);
   border: 2px solid var(--white);
   animation: pulse 2s infinite;
}

@keyframes pulse {
   0% { transform: scale(1); }
   50% { transform: scale(1.05); }
   100% { transform: scale(1); }
}
.navbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1rem 2rem;
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
   box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   position: fixed;
   width: 100%;
   top: 0;
   z-index: 1000;
}

.logo {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.logo img {
   height: 40px;
   transition: transform 0.3s ease;
}

.logo span {
   font-weight: 600;
   font-size: 1.2rem;
   color: var(--primary-color);
}

.nav-links {
   display: flex;
   gap: 2.5rem;
   align-items: center;
}

.nav-links a {
   text-decoration: none;
   color: var(--primary-color);
   font-weight: 500;
   padding: 0.5rem 0;
   position: relative;
   transition: color 0.3s ease;
}

.nav-links a::after {
   content: '';
   position: absolute;
   bottom: -2px;
   left: 0;
   width: 0;
   height: 2px;
   background: var(--primary-color);
   transition: width 0.3s ease;
}

.nav-links a:hover::after {
   width: 100%;
}

.book-now {
   background: var(--primary-color);
   color: white !important;
   padding: 0.8rem 1.5rem !important;
   border-radius: 25px;
   transition: all 0.3s ease;
}

.book-now:hover {
   background: var(--accent-color);
   transform: translateY(-2px);
   box-shadow: 0 4px 15px rgba(70, 78, 184, 0.3);
}

.book-now::after {
   display: none !important;
}

@media (max-width: 960px) {
   .nav-links {
       display: none;
   }
}
/* Add these styles to your existing CSS */
.account-link {
   display: flex;
   align-items: center;
   gap: 0.5rem;
   color: var(--primary-color);
}

.account-link i {
   font-size: 1rem;
}

.account-link:hover {
   color: var(--accent-color);
}

/* Adjust the gap for the new item */
.nav-links {
   gap: 2rem;
}
.action-buttons {
   display: flex;
   gap: 20px;
   margin-top: 20px;
}

.register-button {
   background: var(--secondary-color);
   color: white;
   padding: 10px 20px;
   border: none;
   border-radius: 5px;
   cursor: pointer;
}.client-header {
   text-align: center;
   color: var(--white);
   margin-bottom: 2rem;
   font-size: 2.5rem;
   text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo-carousel {
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
   overflow: hidden;
   padding: 20px 0;
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   border-radius: 15px;
}

.logo-track {
   display: flex;
   animation: scroll 30s linear infinite;
}

.logo-slide {
   flex: 0 0 250px;
   padding: 20px;
   opacity: 0.8;
   transition: opacity 0.3s ease;
}

.logo-slide:hover {
   opacity: 1;
}

.logo-slide img {
   width: 100%;
   height: auto;
   max-height: 80px;
   object-fit: contain;
   /* filter: brightness(0) invert(1); */
   transition: transform 0.3s ease;
}

.logo-slide:hover img {
   transform: scale(1.1);
}

@keyframes scroll {
   0% {
       transform: translateX(0);
   }
   100% {
       transform: translateX(-50%);
   }
}

@media (max-width: 768px) {
   .client-header {
       font-size: 2rem;
   }
   
   .logo-slide {
       flex: 0 0 200px;
   }
}