@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #0a2342;
    /* Deep Navy */
    --secondary-color: #e67e22;
    /* Burnt Orange */
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-grey: #1a1a1a;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 20px 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}
.logo span.mark{
    position: relative;
    top: -16px;
    font-size: 15px;
}
span.mark2{
    position: relative;
    top: -10px;
    font-size: 14px;
}
span.mark3{
    position: relative;
    top: -9px;
    font-size: 12px;
}
.logo span.golden-i{
    background: -webkit-linear-gradient(90deg,rgba(158, 132, 73, 1) 0%, rgba(208, 181, 89, 1) 50%, rgba(158, 132, 73, 1) 100%);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
}
header.scrolled .logo {
    /*color: var(--primary-color);*/
    color: #2E3192;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

header.scrolled .nav-links li a {
    color: var(--primary-color);
}
header.scrolled .nav-links.active li a{
    color: var(--white);
}
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

header.scrolled .hamburger {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.7)), url('../images/img-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}
.inner-banner{
    height: 300px;
    background: linear-gradient(rgba(10, 35, 66, 0.85), rgba(10, 35, 66, 0.7)), url('../images/img-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}
.inner-banner h1{
    color: var(--white);
    line-height: .5;
    margin-top: 60px;
}
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 15px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    box-shadow: none;
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Sections */
.section {
    padding: 100px 20px;   
}
.container{
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.4s, box-shadow 0.4s;
    border-bottom: 5px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-bottom-color: var(--secondary-color);
}

.card i {
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.CertiFications.reveal.active{
    opacity: .98;
}
.CertiFications .card h3 {
    color: var(--white);
    font-size: 1.3rem;
}
.v-card-qr{
    width: 250px;
    height: 250px;
    margin: 0 auto;
}
.v-card-qr img{
    max-width: 100%;
}
/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-section ul li {
    margin-bottom: 15px;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}
.name_email{
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 72px;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: start;
        width: 250px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        padding-left: 25px;
        padding-top: 25px;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }
}
@media (max-width: 575px) {
    .inner-banner h1{
        line-height: 1.5;
        margin-top: 0;
    }
    .name_email{
        display: flex;
        flex-direction: column;
    }
}
