/* Base Styles */
:root {
    --primary-color: #e2b053;
    --primary-gradient: linear-gradient(135deg, #e2b053 0%, #ffd166 100%);
    --secondary-color: rgba(18, 24, 48, 0.7);
    --dark-bg: #0a0f1d;
    --header-bg: rgba(10, 15, 29, 0);
    --menu-bg: rgba(10, 15, 29, 0.9);
    --accent-color: #ffd166;
    --text-primary: #f9f9f9;
    --text-secondary: #bbb;
    --text-light: #fff;
    --text-accent: #e2b053;
    --border-radius: 10px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

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

body {
    font-family: "PT Sans", sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    background-image: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
    background-repeat: repeat;
    background-size: 400px;
    background-blend-mode: soft-light;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Philosopher", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--text-light);
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    background-color: rgba(10, 15, 29, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 0;
}

header .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-bottom: 0;
    z-index: 1001;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    padding: 5px 0;
    font-size: 1rem;
    opacity: 0.9;
}

nav ul li a.current, 
nav ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.58, 0.3, 0.005, 1);
}

nav ul li a:hover:after,
nav ul li a.current:after {
    width: 100%;
}

/* Menu overlay for mobile */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hamburger Menu Styling */
.hamburger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    height: 2px;
    width: 100%;
    background: var(--accent-color);
    position: absolute;
    left: 0;
    transition: all 0.3s cubic-bezier(0.26, 0.1, 0.27, 1.55);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
    width: 75%;
    right: 0;
    left: auto;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* Hero Section */
.hero {
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 15, 29, 0.8) 0%, rgba(18, 24, 48, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    flex: 1;
    color: var(--text-light);
    padding-right: 40px;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.ratings {
    display: flex;
    align-items: center;
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(226, 176, 83, 0.3);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    max-width: 350px;
    gap: 15px; /* spacing between stars and text */
}

.stars {
    color: var(--accent-color);
    display: flex;
    flex-direction: column; /* stack star rows vertically */
    gap: 4px; /* spacing between star lines */
}

.stars > div {
    display: flex;
    gap: 5px; /* space between stars in each line */
}


.ratings p {
    font-size: 0.9rem;
    margin: 0;
}

.hero-form {
    flex: 1;
    max-width: 500px;
}

.form-container {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(226, 176, 83, 0.2);
}

.form-container h2 {
    margin-bottom: 10px;
    color: var(--accent-color);
    font-size: 1.8rem;
}

.form-container p {
    margin-bottom: 25px;
    color: var (--text-secondary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(226, 176, 83, 0.3);
    border-radius: var(--border-radius);
    font-family: "PT Sans", sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(226, 176, 83, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    color: rgba(255, 255, 255, 0.8);
}

.form-group select option {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

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

button {
    background: var(--primary-gradient);
    color: var(--secondary-color);
    border: none;
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(226, 176, 83, 0.3);
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(226, 176, 83, 0.5);
}

/* Features Section */
#features {
    padding: 100px 0;
    background-color: var(--dark-bg);*/
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(226, 176, 83, 0.1);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(226, 176, 83, 0.3);
}

.feature-icon {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    background: transparent;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.8rem;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* Testimonials Section */
#testimonials {
    padding: 100px 0;
    background: var(--secondary-color);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-content {
    background: rgba(10, 15, 29, 0.7);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    border: 1px solid rgba(226, 176, 83, 0.2);
}

.testimonial-content:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background: rgba(10, 15, 29, 0.7);
    transform: rotate(45deg);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(226, 176, 83, 0.2);
    border-bottom: 1px solid rgba(226, 176, 83, 0.2);
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.client-name {
    font-weight: 600;
    color: var(--accent-color);
}

.client-rating {
    color: var(--accent-color);
}

/* Call to Action Section */
#cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 15, 29, 0.95) 0%, rgba(18, 24, 48, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1516339901601-2e1b62dc0c45?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1471&q=80') center/cover no-repeat;
    color: var(--text-light);
    position: relative;
}

#cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

#cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 15px 40px;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--text-secondary);
    padding: 30px 0 30px;
    border-top: 1px solid rgba(226, 176, 83, 0.1);
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ddd;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contact p {
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(226, 176, 83, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .ratings {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .hamburger {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        background: rgba(10, 15, 29, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        width: 100%;
        height: 100vh;
        justify-content: center;
        padding: 50px 0;
        transition: all 0.4s cubic-bezier(0.77, 0.2, 0.05, 1);
        opacity: 0;
        z-index: 1000;
    }
    
    nav ul.active {
        right: 0;
        opacity: 1;
    }
    
    nav ul li {
        margin: 20px 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
    }
    
    nav ul li a {
        font-size: 1.3rem;
        padding: 10px;
        display: block;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    #cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .feature {
        padding: 20px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
}

/* custome css */
.full-height-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.section-header, .downloadreport {
  position: relative;
  z-index: 1;
}
