 :root {
     --bg-dark: #050b14;
     --bg-navy: #0a1128;
     --gold: #bf953f;
     --gold-light: #fcf6ba;
     --gold-dark: #b38728;
     --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #bf953f);
     --white: #ffffff;
     --light-grey: #f8fafc;
     --text-main: #334155;
     --text-grey: #64748b;
     --text-light: #e2e8f0;
     --font-head: 'Cinzel', serif;
     --font-body: 'Manrope', sans-serif;
     --font-sig: 'Dancing Script', cursive;
     --header-height: 80px;
     --section-padding: 100px 20px;
     --max-width: 1200px;
 }

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

 body {
     font-family: var(--font-body);
     background-color: var(--white);
     color: var(--text-main);
     line-height: 1.6;
     padding-top: var(--header-height);
     overflow-x: hidden;
 }

 a {
     text-decoration: none;
     color: inherit;
     transition: 0.3s;
 }

 ul {
     list-style: none;
 }

 img {
     max-width: 100%;
     display: block;
 }

 .container {
     max-width: var(--max-width);
     margin: 0 auto;
     padding: 0 20px;
 }

 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: var(--header-height);
     background-color: var(--white);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
     z-index: 1000;
     display: flex;
     align-items: center;
 }

 .header-cls {
     width: 100%;
     max-width: var(--max-width);
     margin: 0 auto;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 0 20px;
 }

 .logo {
     width: 140px;
 }

 .menu-items {
     display: flex;
     gap: 30px;
     align-items: center;
 }

 .menu-items a {
     font-size: 16px;
     font-weight: 600;
     color: var(--bg-navy);
 }

 .menu-items a:hover {
     color: var(--gold);
 }

 .menu-login {
     color: rgb(9, 9, 9) !important;
     padding: 8px 10px;
     border: 1px solid;
     border-radius: 50px;
     display: flex;
     gap: 10px;
     transition: all 0.3s ease-in;
 }

 .menu-login:hover {
     background-color: var(--gold-dark);
     color: var(--white) !important;
     border-radius: 0;
 }

 .home-nav {
     position: relative;
     display: flex;
     align-items: center;
     gap: 4px;
     cursor: pointer;
 }

 .home-btn {
     background: transparent;
     border: none;
     font-size: 16px;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .dropdown-icon {
     font-size: 20px;
     cursor: pointer;
     color: var(--gold);
     transition: 0.3s ease;
 }

 .dropdown-icon.rotate {
     transform: rotate(180deg);
 }

 .home-select {
     position: absolute;
     top: 25px;
     left: 0;
     background: black;
     border: 1px solid #ddd;
     border-radius: 10px;
     min-width: 150px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
     display: none;
     z-index: 100;
 }

 .home-select.show {
     display: block;
 }

 .home-select a {
     display: block;
     padding: 10px 14px;
     color: #ffffff !important;
     text-decoration: none;
 }

 .hamburger,
 .btn-close {
     display: none;
 }

 @media (max-width: 900px) {
     .menu-items {
         position: fixed;
         top: 0;
         right: -100%;
         width: 250px;
         height: 100vh;
         background: var(--bg-dark);
         flex-direction: column;
         align-items: flex-start;
         padding: 80px 30px;
         transition: 0.4s ease;
         box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
     }

     .menu-items.show {
         right: 0;
     }

     .menu-items a {
         color: var(--white);
         width: 100%;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
         padding-bottom: 10px;
     }

     .hamburger {
         display: block;
         font-size: 28px;
         cursor: pointer;
         color: var(--bg-navy);
     }

     .btn-close {
         display: block;
         position: absolute;
         top: 20px;
         right: 20px;
         color: var(--white);
         font-size: 24px;
         cursor: pointer;
     }

     .dropdown-icon {
         color: white !important;
         font-size: 30px !important;
     }

     .menu-login {
         color: var(--white) !important;
         border: none;
     }
 }

 .hero-cinematic {
     position: relative;
     /* height: calc(100vh - var(--header-height)); */
     /* min-height: 600px; */
     height: 100vh;
     display: flex;
     flex-direction: column;
     /* justify-content: center; */
     align-items: center;
     text-align: center;
     overflow: hidden;
     background-color: var(--bg-dark);
     padding: 30px;
 }

 .hero-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('./assets/home-hero.webp');
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
     z-index: 1;
 }

 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to bottom, rgba(5, 11, 20, 0.8) 0%, rgba(5, 11, 20, 0.95) 100%);
     z-index: 2;
 }

 .hero-content {
     position: relative;
     z-index: 3;
     max-width: 900px;
     padding: 0 20px;
 }

 .hero-content .eyebrow {
     display: inline-block;
     color: var(--gold);
     font-size: 0.85rem;
     letter-spacing: 4px;
     text-transform: uppercase;
     margin-bottom: 25px;
     border: 1px solid rgba(191, 149, 63, 0.3);
     padding: 8px 16px;
     border-radius: 50px;
     backdrop-filter: blur(5px);
     opacity: 0;
     animation: fadeUp 1s ease forwards 0.3s;
 }

 .hero-content h1 {
     font-family: var(--font-head);
     font-size: 4.5rem;
     line-height: 1.1;
     margin-bottom: 30px;
     font-weight: 800;
     color: var(--white);
     background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold-dark));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     opacity: 0;
     animation: fadeUp 1s ease forwards 0.6s;
 }

 .hero-content p {
     color: var(--text-light);
     font-size: 1.25rem;
     font-weight: 300;
     max-width: 650px;
     margin: 0 auto 40px auto;
     opacity: 0;
     animation: fadeUp 1s ease forwards 0.9s;
 }

 .btn-premium {
     display: inline-block;
     padding: 16px 45px;
     background: linear-gradient(45deg, var(--gold), var(--gold-dark));
     color: var(--bg-dark);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     border-radius: 2px;
     transition: 0.4s;
     position: relative;
     overflow: hidden;
     opacity: 0;
     animation: fadeUp 1s ease forwards 1.2s;
 }

 .btn-premium::after {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
     transition: 0.5s;
 }

 .btn-premium:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(191, 149, 63, 0.4);
 }

 .btn-premium:hover::after {
     left: 100%;
 }

 .glass-bar {
     position: absolute;
     bottom: 0;
     width: 90%;
     max-width: 1100px;
     display: flex;
     justify-content: space-around;
     padding: 25px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     background: rgba(255, 255, 255, 0.03);
     backdrop-filter: blur(10px);
     z-index: 3;
     border-radius: 12px;
     opacity: 0;
     animation: fadeIn 1s ease forwards 1.5s;
 }

 .stat-item {
     text-align: center;
 }

 .stat-num {
     display: block;
     font-family: var(--font-head);
     font-size: 1.8rem;
     color: var(--white);
 }

 .stat-label {
     font-size: 0.8rem;
     color: #888;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-top: 5px;
 }

 .services-section {
     padding: var(--section-padding);
     background-color: var(--light-grey);
     text-align: center;
     overflow-x: hidden;
 }

 .section-header {
     max-width: 700px;
     margin: 0 auto 60px auto;
 }

 .section-header .eyebrow {
     color: var(--gold);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 2px;
     font-size: 0.85rem;
     display: block;
     margin-bottom: 15px;
 }

 .section-header h2 {
     color: var(--bg-navy);
     font-family: var(--font-head);
     font-size: 2.5rem;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 30px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .service-card {
     background: var(--white);
     padding: 50px 40px;
     text-align: left;
     border-radius: 6px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     transition: all 0.4s ease;
     border-bottom: 3px solid transparent;
 }

 .service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(10, 17, 40, 0.1);
     border-bottom: 3px solid var(--gold);
 }

 .icon-box {
     width: 70px;
     height: 70px;
     background-color: rgba(10, 17, 40, 0.03);
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     margin-bottom: 30px;
     transition: 0.4s;
     font-size: 28px;
     color: var(--bg-navy);
 }

 .service-card:hover .icon-box {
     background-color: var(--bg-navy);
     color: var(--gold);
 }

 .service-card h3 {
     font-family: var(--font-head);
     color: var(--bg-navy);
     font-size: 1.5rem;
     margin-bottom: 15px;
 }

 .service-card p {
     color: var(--text-grey);
     font-size: 1rem;
     margin-bottom: 30px;
 }

 .service-link {
     font-weight: 600;
     font-size: 0.9rem;
     display: flex;
     align-items: center;
     gap: 10px;
     color: var(--bg-navy);
 }

 .service-card:hover .service-link span {
     transform: translateX(5px);
     color: var(--gold);
 }

 .about-section {
     background-color: var(--bg-dark);
     color: var(--white);
     padding: var(--section-padding);
     overflow: hidden;
 }

 .about-section .container {
     display: flex;
     align-items: center;
     gap: 80px;
 }

 .about-visual {
     flex: 1;
     position: relative;
 }

 .main-img {
     width: 100%;
     border-radius: 4px;
     filter: sepia(20%) contrast(1.1);
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
 }

 .visual-outline {
     position: absolute;
     top: -20px;
     left: -20px;
     width: 100%;
     height: 100%;
     border: 2px solid var(--gold);
     z-index: -1;
     opacity: 0.5;
 }

 .experience-badge {
     position: absolute;
     bottom: -40px;
     right: -30px;
     background: linear-gradient(135deg, var(--gold), #8a6e2f);
     padding: 30px;
     text-align: center;
     color: var(--bg-dark);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
     min-width: 160px;
     opacity: 0;
     animation: floatUp 1s ease forwards 0.5s;
 }

 .badge-num {
     display: block;
     font-family: var(--font-head);
     font-size: 3.5rem;
     font-weight: 700;
     line-height: 1;
 }

 .badge-text {
     font-size: 0.8rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .about-content {
     flex: 1;
 }

 .about-content h2 {
     font-family: var(--font-head);
     font-size: 3rem;
     line-height: 1.2;
     margin-bottom: 30px;
     background: linear-gradient(to right, #fff, #94a3b8);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .signature-block {
     margin-top: 40px;
     border-left: 3px solid var(--gold);
     padding-left: 20px;
 }

 .ceo-name {
     display: block;
     font-family: var(--font-head);
     font-weight: 700;
     color: var(--white);
 }

 .signature-img {
     font-family: var(--font-sig);
     font-size: 2.5rem;
     color: var(--text-grey);
     transform: rotate(-5deg);
     margin-top: 10px;
     display: block;
 }

 .metrics-section {
     background-color: var(--light-grey);
     padding: var(--section-padding);
     overflow: hidden;
 }

 .metrics-section .container {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 60px;
 }

 .content-col {
     flex: 1;
     max-width: 550px;
 }

 .content-col h2 {
     color: var(--bg-navy);
     font-family: var(--font-head);
     font-size: 2.8rem;
     line-height: 1.2;
     margin-bottom: 30px;
 }

 .advantage-list li {
     display: flex;
     align-items: center;
     margin-bottom: 20px;
     font-weight: 500;
     color: var(--bg-navy);
     font-size: 1.1rem;
 }

 .check-icon {
     width: 24px;
     height: 24px;
     background: var(--gold-gradient);
     border-radius: 50%;
     margin-right: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--bg-navy);
     font-size: 14px;
     font-weight: bold;
 }

 .stats-col {
     flex: 1;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 25px;
 }

 .stat-card {
     background: var(--white);
     padding: 40px 30px;
     border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     text-align: center;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     border: 1px solid rgba(0, 0, 0, 0.03);
     position: relative;
     overflow: hidden;
     opacity: 0;
     animation: fadeUp 0.8s ease forwards;
 }

 .stat-card::before {
     content: '';
     position: absolute;
     top: -50px;
     right: -50px;
     width: 100px;
     height: 100px;
     background: var(--gold);
     opacity: 0.1;
     border-radius: 50%;
     transition: 0.5s;
 }

 .stat-card:hover::before {
     transform: scale(1.5);

 }

 .card-1 {
     animation-delay: 0.2s;
 }

 .card-2 {
     animation-delay: 0.4s;
 }

 .card-3 {
     animation-delay: 0.6s;
 }

 .card-4 {
     animation-delay: 0.8s;
 }

 .stat-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(10, 17, 40, 0.1);
     border-color: var(--gold);
 }

 .stat-num {
     display: block;
     font-family: var(--font-head);
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 10px;
     /* background: var(--gold-gradient); */
     -webkit-background-clip: text;
     background-clip: text;
     color: var(--gold) !important;
 }
 .reviews-section {
     background-color: var(--bg-dark);
     padding: var(--section-padding);
     text-align: center;
     overflow-x: hidden;
 }

 .reviews-section h2 {
     font-family: var(--font-head);
     color: var(--white);
     font-size: 2.8rem;
     margin-bottom: 20px;
 }

 .reviews-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     max-width: 1200px;
     margin: 0 auto 80px auto;
 }

 .review-card {
     background: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.05);
     padding: 40px 30px;
     text-align: left;
     border-radius: 4px;
     position: relative;
     transition: 0.4s ease;
 }

 .review-card:hover {
     background: rgba(255, 255, 255, 0.06);
     border-color: var(--gold);
     transform: translateY(-5px);
 }

 .quote-icon {
     font-family: var(--font-head);
     font-size: 4rem;
     color: var(--gold);
     opacity: 0.3;
     position: absolute;
     top: 20px;
     right: 30px;
     line-height: 1;
 }

 .review-text {
     color: var(--text-light);
     font-size: 1.1rem;
     font-style: italic;
     line-height: 1.6;
     margin-bottom: 30px;
     position: relative;
     z-index: 2;
 }

 .client-info {
     display: flex;
     align-items: center;
     gap: 15px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding-top: 20px;
 }

 .client-img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     object-fit: cover;
     border: 2px solid var(--gold);
 }

 .client-details h4 {
     color: var(--white);
     font-size: 1rem;
     margin: 0;
 }

 .client-details span {
     color: var(--text-grey);
     font-size: 0.8rem;
     text-transform: uppercase;
 }

 .logo-strip {
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     padding-top: 60px;
     display: flex;
     justify-content: center;
     gap: 50px;
     flex-wrap: wrap;
     opacity: 0.6;
 }

 .client-logo {
     height: 35px;
     /* filter: grayscale(100%) brightness(200%); */
     transition: 0.3s;
     opacity: 0.7;
 }

 .client-logo:hover {
     filter: grayscale(0%) brightness(100%);
     opacity: 1;
 }
 
 .contact-section {
     padding: var(--section-padding);
     position: relative;
     overflow: hidden;
 }

 .contact-section .container {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 80px;
 }

 .contact-info {
     flex: 1;
     padding-top: 20px;
 }

 .contact-info h2 {
     font-size: 3rem;
     margin-bottom: 40px;
     color: var(--bg-navy);
 }

 .details-grid {
     display: grid;
     gap: 30px;
 }

 .detail-item h4 {
     color: var(--bg-navy);
     font-size: 1.1rem;
     margin-bottom: 5px;
 }

 .detail-item a {
     color: var(--text-grey);
     transition: 0.3s;
 }

 .detail-item a:hover {
     color: var(--gold);
 }

 .contact-form-wrapper {
     flex: 1;
     background: var(--white);
     padding: 50px;
     border-radius: 4px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
     border-top: 4px solid var(--gold);
     overflow-x: hidden;
 }

 .form-group {
     margin-bottom: 30px;
     position: relative;
 }

 .form-control {
     width: 100%;
     padding: 15px 0;
     border: none;
     border-bottom: 1px solid #e2e8f0;
     background: transparent;
     font-family: var(--font-body);
     font-size: 1rem;
     color: var(--bg-navy);
     outline: none;
     transition: 0.3s;
 }

 .form-label {
     position: absolute;
     top: 15px;
     left: 0;
     color: #94a3b8;
     pointer-events: none;
     transition: 0.3s;
     font-size: 1rem;
 }

 .form-control:focus {
     border-bottom-color: var(--gold);
 }

 .form-control:focus+.form-label,
 .form-control:not(:placeholder-shown)+.form-label {
     top: -10px;
     font-size: 0.8rem;
     color: var(--gold);
     font-weight: 600;
 }

 .btn-submit {
     background-color: var(--bg-navy);
     color: var(--white);
     padding: 18px 40px;
     border: none;
     font-family: var(--font-body);
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     cursor: pointer;
     transition: 0.3s;
     width: 100%;
     margin-top: 10px;
 }

 .btn-submit:hover {
     background-color: var(--gold);
     color: var(--bg-navy);
     transform: translateY(-2px);
 }

 .site-footer {
     background-color: var(--bg-dark);
     color: var(--white);
     padding-top: 80px;
     font-size: 0.95rem;
     overflow-x: hidden;
 }

 .footer-top {
     display: grid;
     grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
     gap: 40px;
     padding-bottom: 60px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
 }

 .brand-col .footer-logo {
     font-family: var(--font-head);
     font-size: 2rem;
     font-weight: 700;
     color: var(--white);
     display: inline-block;
     margin-bottom: 20px;
 }

 .social-links {
     display: flex;
     gap: 15px;
 }

 .social-icon {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.05);
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     transition: 0.3s;
     color: var(--white);
 }

 .social-icon:hover {
     background: var(--gold);
     color: var(--bg-dark);
     transform: translateY(-3px);
 }

 .footer-heading {
     color: var(--gold);
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 25px;
     display: block;
     font-weight: 700;
 }

 .footer-links a {
     color: var(--text-grey);
     display: inline-block;
     margin-bottom: 10px;
 }

 .footer-links a:hover {
     color: var(--gold);
     transform: translateX(5px);
 }

 .newsletter-form {
     position: relative;
 }

 .newsletter-input {
     width: 100%;
     padding: 15px;
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     color: var(--white);
     border-radius: 4px;
     outline: none;
 }

 .newsletter-input:focus {
     border-color: var(--gold);
 }

 .newsletter-btn {
     position: absolute;
     top: 5px;
     right: 5px;
     height: 38px;
     width: 40px;
     background: var(--gold);
     border: none;
     border-radius: 3px;
     cursor: pointer;
     color: var(--bg-dark);
     font-weight: bold;
 }

 .footer-bottom {
     background-color: #02060c;
     padding: 25px 0;
 }

 .footer-bottom .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .bottom-flex {
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: var(--text-grey);
     font-size: 0.85rem;
     width: 100%;
 }

 .legal-links a {
     margin-left: 20px;
     transition: 0.3s;
 }

 .legal-links a:hover {
     color: var(--gold);
 }

 @media (max-width: 968px) {

     .about-section .container,
     .metrics-section .container,
     .contact-section .container {
         flex-direction: column;
         gap: 50px;
     }

     .hero-cinematic {
         height: 135vh;
     }

     .hero-content h1 {
         font-size: 3rem;
     }

     .glass-bar {
         flex-direction: column;
         bottom: 10px;
     }

     .footer-top {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 600px) {

     .section-header h2,
     .about-content h2,
     .contact-info h2 {
         font-size: 2rem;
     }

     .footer-top {
         grid-template-columns: 1fr;
         text-align: left;
     }

     .footer-bottom .container {
         flex-direction: column;
         gap: 15px;
     }

     .legal-links {
         margin-top: 10px;
     }

     .legal-links a {
         margin: 0 10px;
     }

     .services-grid,
     .reviews-grid,
     .stats-col {
         grid-template-columns: 1fr;
     }
 }

 @keyframes fadeUp {
     from {
         opacity: 0;
         transform: translateY(40px);
     }

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

 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes floatUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

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

 /* Toast  */

 #toast {
     visibility: hidden;
     min-width: 260px;
     background: #333;
     color: #fff;
     text-align: center;
     border-radius: 8px;
     padding: 14px;
     position: fixed;
     left: 50%;
     bottom: 40px;
     transform: translateX(-50%);
     z-index: 9999;
     font-size: 15px;
     opacity: 0;
     transition: opacity 0.4s, bottom 0.4s;
 }

 #toast.show {
     visibility: visible;
     opacity: 1;
     bottom: 60px;
 }