/* Global Styles */
:root {
    --primary-color: #000000;
    --secondary-color: #d4af37;
    --accent-color: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #b8b8b8;
    --white: #ffffff;
    --success: #4caf50;
    --danger: #f44336;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.9);
    --glow: 0 0 20px rgba(212, 175, 55, 0.5);
    --gold-gradient: linear-gradient(135deg, #d4af37, #f0c14b, #d4af37);
    --black-gradient: linear-gradient(135deg, #000000, #1a1a1a, #000000);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #f0c14b);
    color: var(--primary-color);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.1);
    box-shadow: var(--glow);
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), #f0c14b);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Navigation */
.navbar {
    background-color: rgba(10, 25, 47, 0.98);
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    position: relative;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: none;
    transition: var(--transition);
}

.logo::before {
    display: none;
}

.logo:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), #f0c14b);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

.mobile-menu-btn {
    display: none;
    color: var(--secondary-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.85), rgba(17, 34, 64, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff, var(--secondary-color), #f0c14b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-20px);
    }

    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Ticker */
.ticker-wrap {
    width: 100%;
    background: linear-gradient(90deg, var(--accent-color), #0a0a0a);
    overflow: hidden;
    height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ticker {
    display: flex;
    animation: ticker 40s linear infinite;
    gap: 60px;
    padding: 0 30px;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
    font-weight: 600;
}

.ticker-item .currency {
    color: var(--text-light);
    font-size: 1rem;
    letter-spacing: 1px;
}

.ticker-item .rate {
    font-size: 1.1rem;
    font-weight: 700;
}

.rate.up {
    color: var(--success);
}

.rate.down {
    color: var(--danger);
}

.rate.flat {
    color: var(--text-muted);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Services */
.services {
    background-color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: linear-gradient(135deg, var(--accent-color), #0a0a0a);
    padding: 45px;
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.icon-box {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--text-light);
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Currency Rates */
.currency-rates {
    background: linear-gradient(135deg, #0a0a0a, var(--accent-color));
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.rate-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.rate-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.rate-card:hover::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

.rate-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.currency-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.currency-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.rate-card h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.rate-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.rate-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    padding: 15px;
    background: rgba(10, 25, 47, 0.5);
    border-radius: 8px;
}

.rate-detail .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rate-detail .value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.rate-change {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.rate-change.positive {
    background: rgba(76, 175, 80, 0.2);
    color: var(--success);
}

.rate-change.negative {
    background: rgba(244, 67, 54, 0.2);
    color: var(--danger);
}

.rate-change.neutral {
    background: rgba(136, 146, 176, 0.2);
    color: var(--text-muted);
}

.rates-update {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rates-update i {
    color: var(--secondary-color);
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Calculator */
.calculator-section {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
        url('assets/images/Baner.png') no-repeat center center/cover;
    background-attachment: fixed;
}

.calc-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.calc-content {
    flex: 1;
    min-width: 300px;
}

.calc-content h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
    background: linear-gradient(135deg, #fff, var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.calc-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.calculator {
    flex: 1;
    min-width: 350px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 16px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.input-group label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.input-group input,
.input-group select {
    padding: 14px 18px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(0, 0, 0, 0.7);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.input-group input:focus,
.input-group select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.exchange-icon {
    align-self: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 10px 0;
    animation: pulse 2s infinite;
}

.result-box {
    background: linear-gradient(135deg, var(--secondary-color), #f0c14b);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.result-box span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

/* Gallery */
.gallery {
    background: var(--accent-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(212, 175, 55, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1.3rem;
    transform: translateY(30px);
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Contact */
.contact {
    background-color: var(--primary-color);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: var(--accent-color);
    border-radius: 10px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.info-item:hover {
    border-color: var(--secondary-color);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.info-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.info-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000000, #0a0a0a);
    padding: 70px 0 30px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.footer-logo {
    position: relative;
    padding: 10px 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 50px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: var(--transition);
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, var(--secondary-color), #f0c14b, var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-logo:hover::before {
    opacity: 1;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.footer-logo:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.footer-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.3));
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.3rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.bottom-bar {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .calc-content h2 {
        font-size: 2.5rem;
    }

    .services-grid,
    .rates-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-card,
    .rate-card {
        padding: 30px;
    }
}