@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #0a0e17;
    --bg-secondary: #0f1624;
    --bg-tertiary: #172033;

    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #3b82f6;

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --accent: #38bdf8;
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);

    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    --header-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    font-family: inherit;
    background: none;
    border: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 8rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    gap: 0.5rem;
    text-transform: capitalize;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: white;
}

.btn-outline:hover {
    background-color: rgba(37, 99, 235, 0.1);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .grid-cols-2,
    .grid-cols-3,
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1.5rem;
    }
}

.flex {
    display: flex;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

.text-secondary {
    color: var(--text-secondary);
}

.text-primary-light {
    color: var(--primary-light);
}

.card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background-color: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
}

.desktop-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .d-none-mobile {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }
}

/* Page Header */
.page-header {
    padding: 12rem 0 6rem 0;
    background-color: var(--bg-secondary);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: var(--bg-tertiary);
    padding: 6rem 0 2rem 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    margin-bottom: 4rem;
}

.footer-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: var(--text-secondary);
}

.footer-link:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    text-align: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-light);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Ticker Carousel */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: white;
    padding: 3rem 0;
    white-space: nowrap;
    position: relative;
    /* Optional fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.ticker-content {
    display: inline-flex;
    gap: 3rem;
    animation: ticker 30s linear infinite;
}

.ticker-wrap:hover .ticker-content {
    animation-play-state: paused;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.ticker-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    min-width: 250px;
    border: 1px solid #e2e8f0;
}

/* Dummy Logos */
.dummy-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 100%;
    height: 100%;
}

.dummy-logo.ami {
    font-family: 'Inter', sans-serif;
}

.dummy-logo.ami .ami-title {
    color: #a41c30;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: -2px;
}

.dummy-logo.ami .ami-sub {
    font-size: 0.65rem;
    color: white;
    background-color: #a41c30;
    padding: 2px 10px;
    margin-top: 5px;
    font-weight: 700;
    letter-spacing: 1px;
}

.dummy-logo.hosewel {
    font-family: 'Inter', sans-serif;
    background: #222;
    border-radius: 4px;
    padding: 10px;
    border: 2px solid #e1b12c;
    flex-direction: row;
    gap: 5px;
}

.dummy-logo.hosewel .hw-main {
    color: white;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.dummy-logo.hosewel .hw-sub {
    color: #e1b12c;
    font-size: 0.5rem;
    position: absolute;
    bottom: 5px;
    right: 10px;
}

.dummy-logo.matalia {
    flex-direction: row;
    gap: 10px;
    font-family: serif;
    color: #1e8bcc;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.dummy-logo.matalia span {
    font-size: 2rem;
    color: #e1b12c;
}

.dummy-logo.omkar {
    background: #222;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.dummy-logo.omkar .om-top {
    color: #e31837;
    font-weight: 900;
    font-size: 1.8rem;
}

.dummy-logo.omkar .om-sub {
    color: white;
    font-family: cursive;
    font-size: 1.2rem;
    margin-top: -10px;
}

.dummy-logo.prabhu {
    flex-direction: row;
    gap: 15px;
    font-family: 'Inter', sans-serif;
}

.dummy-logo.prabhu .pa-icon {
    font-weight: 900;
    font-size: 2.2rem;
    color: #002b5e;
    line-height: 0.8;
}

.dummy-logo.prabhu .pa-icon span {
    color: #8bc53f;
    font-size: 1.5rem;
}

.dummy-logo.prabhu .pa-text {
    text-align: left;
}

.dummy-logo.prabhu .pa-title {
    color: #002b5e;
    font-weight: 900;
    font-size: 1.4rem;
    line-height: 1;
}

.dummy-logo.prabhu .pa-sub {
    color: #8bc53f;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.dummy-logo.santosh {
    font-family: 'Inter', sans-serif;
    flex-direction: row;
    gap: 10px;
}

.dummy-logo.santosh .s-icon {
    color: #e42528;
    font-size: 2rem;
    font-weight: 900;
}

.dummy-logo.santosh .s-text {
    text-align: left;
}

.dummy-logo.santosh .s-title {
    color: #e42528;
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1;
}

.dummy-logo.santosh .s-sub {
    color: #444;
    font-weight: 400;
    font-size: 0.9rem;
}

.dummy-logo.supertech {
    font-family: serif;
    font-style: italic;
    font-weight: 800;
    font-size: 1.5rem;
    color: #005eb8;
}