@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

:root {
    /* --portal-primary-color: #2563eb;
    --portal-secondary-color: #2059d4;
    --portal-accent-color: #10b981; */
    --portal-primary-color: #0012FF;
    --portal-secondary-color: #2059D4;
    --portal-accent-color: #2AFF00;
    --portal-dark-color: #0f172a;
    --portal-gray-color: #64748b;
    --portal-light-color: #f8fafc;

    --portal-shadow-light: rgba(0, 0, 0, 0.05);
    --portal-shadow-dark: rgba(0, 0, 0, 0.1);

    --portal-transition: all 0.3s ease;

    --portal-border-radius: 0.75rem;

    --portal-font-family: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--portal-font-family);
    color: var(--portal-dark-color);
    background: white;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Top Bar */
.top-bar {
    font-size: 0.9rem;
    background-color: var(--portal-primary-color);
}

.top-bar a {
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

/* Navbar */
.navbar {
    background: white !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--portal-dark-color) !important;
    letter-spacing: -0.5px;
}

.navbar-brand .accent {
    color: var(--portal-accent-color);
}

.nav-link {
    color: var(--portal-gray-color) !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--portal-primary-color) !important;
}

.btn-primary-custom {
    background: var(--portal-primary-color);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}


/* Hero Carousel */
.hero-carousel {
    height: calc(100vh - 9.7rem);
    position: relative;
}

.carousel-inner {
    height: 100%;
}

.carousel-item {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    display: none;
}

.carousel-caption.common-carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    display: none;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
}

.carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.btn-custom {
    background: var(--portal-secondary-color);
    color: #fff;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s;
}

.btn-custom:hover {
    background: #ff8c00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}


.hero-details-container {
    max-width: 800px;
    padding: 2rem;
    margin: 0 auto;
    border-radius: 0.5rem;
    background-color: #00000066;
}

.hero-badge {
    color: #FFF;
    font-size: 1rem !important;
    font-weight: 500;
    width: fit-content;
    margin: 0 auto;
    padding: 0.25rem 1rem;
    border-radius: 0.5rem;
    background-color: var(--portal-primary-color);
}

.hero-details-title {
    color: var(--portal-secondary-color);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1rem !important;
    font-weight: 400;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero .tagline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.pill {
    background: white;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Services Banner */
.services-banner {
    padding: 0.5rem;
    background: linear-gradient(135deg, var(--portal-primary-color), var(--portal-secondary-color));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.services-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.service-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--portal-accent-color);
    box-shadow: 0 0 20px rgba(42, 255, 0, 0.3);
    transition: all 0.3s ease;
}

.service-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(42, 255, 0, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.service-icon i {
    font-size: 1rem;
    color: var(--portal-light-color);
}

.service-name {
    color: var(--portal-light-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-track:hover {
    animation-play-state: paused;
}


/* Section Styling */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .label {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards */
.card-modern {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--portal-accent-color);
}

.card-modern .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--portal-primary-color), var(--portal-accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-modern .icon i {
    font-size: 1.5rem;
    color: white;
}

.card-modern h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--portal-dark-color);
}

.card-modern p {
    color: var(--portal-gray-color);
    font-size: 1rem;
    line-height: 1.7;
}

/* About Section */
.about-bg {
    background: var(--portal-light-color);
}

.value-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.value-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--portal-primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
}

.value-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.value-content p {
    color: var(--gray);
    margin: 0;
}

/* Process Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--portal-primary-color), var(--portal-accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 15px;
    height: 15px;
    background: var(--portal-accent-color);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--portal-accent-color);
}

.timeline-item h4 {
    font-weight: 700;
    color: var(--portal-primary-color);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--portal-gray-color);
    margin: 0;
}

/* SEO Section */
.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.seo-card {
    background: white;
    border-left: 4px solid var(--portal-primary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.seo-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.seo-card h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--portal-dark-color);
}

.seo-card p {
    color: var(--portal-gray-color);
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Section */
.contact-section {
    background: var(--portal-light-color);
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-control,
.form-select {
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--portal-primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--portal-light-color);
    border-radius: 12px;
}

.info-item i {
    color: var(--portal-primary-color);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.info-item .text h6 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--portal-dark-color);
}

.info-item .text p {
    color: var(--portal-gray-color);
    margin: 0;
    font-size: 0.95rem;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 4rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--portal-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--portal-secondary-color);
    transform: translateY(-5px);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--portal-dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--portal-primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--portal-primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .timeline {
        padding-left: 2rem;
    }
}