/* CSS Variables for Brand Colors */
:root {
    --navy: #0B3247;
    --gold: #D4AF37;
    --orange: #FF6F00;
    --gray: #F2F4F5;
    --white: #FFFFFF;
    --black: #222222;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* Add this to the top of your styles.css file, right after the :root variables */
/* Favicon */
link[rel="icon"] {
    type: "image/png";
    href: "images/favicon.png";
}

/* Updated Header/Navigation Styles */
.header .container {
    align-items: center;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    align-items: center;
}

/* Updated Contact Button */
.nav-list li:last-child a.btn-outline {
    background-color: var(--gold);
    color: var(--navy);
    border-radius: 30px;
    padding: 0.8rem 2rem;
    border: 2px solid var(--gold);
    font-weight: 600;
}

.nav-list li:last-child a.btn-outline:hover {
    background-color: var(--orange);
    color: var(--white);
    border-color: var(--orange);
    transform: translateY(-2px) scale(1.05);
}

/* Enhanced Hero Form */
.verification-form {
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff, #f2f4f5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.verification-form h3 {
    color: var(--navy);
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.verification-form h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    border-radius: 3px;
}

.form-group input {
    border-radius: 30px;
    border: 2px solid #e0e0e0;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.form-group button {
    border-radius: 30px;
    margin-left: 0.5rem;
    background-color: var(--gold);
    border-color: var(--gold);
    font-weight: 600;
    padding: 1rem 2rem;
}

.form-group button:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    opacity: 0.8;
}

/* Enhanced CTA Buttons */
.cta-buttons .btn-primary {
    border-radius: 30px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-buttons .btn-primary:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 111, 0, 0.4);
}

.cta-buttons .btn-outline-light {
    border-radius: 30px;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-width: 2px;
}

.cta-buttons .btn-outline-light:hover {
    background-color: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* Add some subtle animations */
.btn-primary, .btn-outline, .btn-outline-light {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Enhanced feature cards */
.feature-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(242,244,245,0.9) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover:before {
    opacity: 1;
}

.feature-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.3) 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

/* Enhanced steps */
.step {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.step:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    opacity: 0;
    transition: var(--transition);
}

.step:hover:before {
    opacity: 1;
}

/* Add some color to section headings */
.section-intro {
    position: relative;
    padding-bottom: 1.5rem;
}

.section-intro:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--gold));
    border-radius: 2px;
}

/* Add this to make the logo height consistent */
.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.header.scrolled .logo img {
    height: 50px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Inter', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--navy);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--orange);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--orange);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--navy);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--navy);
}

.btn-outline:hover {
    background-color: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-light {
    display: inline-block;
    background-color: transparent;
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--orange);
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 55px;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 2rem;
}

.nav-list a {
    font-weight: 500;
    position: relative;
}

.nav-list a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: var(--transition);
}

.nav-list a:hover:after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--navy);
    position: relative;
    transition: var(--transition);
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--navy);
    transition: var(--transition);
}

.hamburger:before {
    top: -6px;
}

.hamburger:after {
    top: 6px;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger:before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger:after {
    transform: rotate(-45deg);
    top: 0;
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, rgba(242, 244, 245, 0.8) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.hero .subheadline {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-height: 500px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Verification Form */
.verification-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-top: 2rem;
    max-width: 500px;
}

.verification-form h3 {
    margin-bottom: 1.5rem;
    color: var(--navy);
}

.form-group {
    display: flex;
    margin-bottom: 0.5rem;
}

.form-group input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--orange);
}

.form-group button {
    border-radius: 0 4px 4px 0;
    border-left: none;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* How It Works Section */
.how-it-works {
    background-color: var(--gray);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: var(--gold);
    font-size: 2rem;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(11, 50, 71, 0.05);
    border-radius: 50%;
    color: var(--orange);
    font-size: 1.8rem;
}

/* Industries Section */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.industry-card {
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(11, 50, 71, 0.05);
    border-radius: 50%;
    color: var(--navy);
    font-size: 1.5rem;
}

/* Trusted By Section */
.trusted-by {
    background-color: var(--gray);
}

.logo-carousel {
    margin: 2rem 0;
}

.carousel-cell {
    width: 180px;
    height: 100px;
    margin-right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.carousel-cell:hover {
    filter: grayscale(0);
    opacity: 1;
}

.carousel-cell img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

/* About Section */
.about .container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--navy) 0%, #14405e 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li i {
    margin-right: 0.5rem;
    color: var(--gold);
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--navy);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--gold);
}

/* Animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.6s ease;
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.6s ease;
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

[data-aos="zoom-in"].aos-animate {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .verification-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-list.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-list li {
        margin: 0.5rem 0;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .subheadline {
        font-size: 1rem;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 1.5rem;
    }
    
    .about .container {
        flex-direction: column;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 7rem 0 3rem;
    }
    
    .verification-form {
        padding: 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input {
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
    
    .form-group button {
        border-radius: 4px;
        width: 100%;
    }
    
    .carousel-cell {
        width: 140px;
        height: 80px;
        margin-right: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Or alternatively, you can be more specific with this version: */
.nav-list li:last-child a.btn-outline:hover:after {
    width: 0 !important;
}