/* ==========================================================================
   INKRAH Web Design - High-End Luxury Dark Theme & Advanced Special Effects CSS
   ========================================================================== */

:root {
    --bg-primary: #0a0b0f;
    --bg-secondary: #12151c;
    --bg-card: rgba(18, 21, 28, 0.75);
    --accent-gold: #d4af37;
    --accent-gold-light: #f3e5ab;
    --accent-gold-dark: #aa8c2c;
    --text-primary: #f8f9fa;
    --text-secondary: #adb5bd;
    --border-color: rgba(212, 175, 55, 0.25);
    --border-glow: rgba(212, 175, 55, 0.6);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Canvas Background Special Effect */
#hero-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

/* Custom Cursor */
.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
}

.cursor-outline {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: transform 0.1s ease-out, width 0.3s, height 0.3s;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Glassmorphism Header */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 11, 15, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.header-logo {
    max-height: 45px;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #000;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.btn-nav:hover {
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    color: var(--accent-gold);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 120px 0;
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 30px;
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.05);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.8;
}

.gold-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px dashed var(--accent-gold);
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: #0a0b0f;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-3px);
}

/* Floating Card Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.icon-glow {
    font-size: 64px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.floating-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.floating-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Section Common */
section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px auto;
}

.sub-heading {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

/* Glow Box Effect */
.glow-box {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glow-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    transition: 0.5s;
}

.glow-box:hover::before {
    left: 100%;
}

.glow-box:hover {
    border-color: var(--border-glow);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

/* Philosophy Section */
.logo-philosophy {
    background: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
}

.philosophy-image-container {
    text-align: center;
    margin: 40px auto 20px auto;
}

.philosophy-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(212, 175, 55, 0.3));
    transition: transform 0.5s ease;
}

.philosophy-img:hover {
    transform: scale(1.05) rotate(2deg);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.item {
    padding: 40px 30px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 24px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.item:hover .icon-wrapper {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 14px;
}

.item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Dynamic Web Systems Section */
.dynamic-section {
    background: var(--bg-primary);
}

.dynamic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.dynamic-card {
    padding: 45px 35px;
}

.dyn-icon {
    font-size: 38px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.dynamic-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 14px;
}

.dynamic-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(18, 21, 28, 0.8));
    border: 1px solid var(--accent-gold);
}

/* Server Infrastructure Section */
.infra-section {
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.infra-card {
    padding: 50px 40px;
}

.infra-icon {
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.infra-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 16px;
}

.infra-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.infra-list {
    list-style: none;
}

.infra-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 12px;
}

.infra-list li i {
    color: var(--accent-gold);
}

/* Services Section */
.services-section {
    background: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 45px 35px;
}

.service-icon {
    font-size: 40px;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

/* Templates Section */
.templates-section {
    background: var(--bg-secondary);
}

.template-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.template-link-box {
    display: flex;
    flex-direction: column;
    padding: 24px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

.tpl-num {
    font-size: 12px;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tpl-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.tpl-action {
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.template-link-box:hover .tpl-action {
    color: var(--accent-gold);
}

/* Features Section */
.features-section {
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-tag {
    padding: 24px;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.feature-tag i {
    font-size: 28px;
    color: var(--accent-gold);
}

/* Footer */
.elegant-footer {
    background: #06070a;
    border-top: 1px solid var(--border-color);
    padding: 90px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 15px;
}

.footer-links h3, .footer-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a, .contact-info li a, .contact-info li {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover, .contact-info li a:hover {
    color: var(--accent-gold);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-info li i {
    color: var(--accent-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 14px;
}

.interactive-time {
    font-family: monospace;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--accent-gold);
    color: #000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--text-primary);
}

/* Responsive */
@media(max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(10, 11, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: left 0.4s ease;
    }
    .nav-menu.active {
        left: 0;
    }
    .hamburger {
        display: block;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .infra-grid {
        grid-template-columns: 1fr;
    }
}




.tool-links{

    list-style:none;

    margin:0;

    padding:0;

}

.tool-links li{

    margin-bottom:10px;

}

.tool-links a{

    color:#ffffff !important;

    text-decoration:none !important;

    transition:.25s;

}

.tool-links a:visited{

    color:#ffffff !important;

}

.tool-links a:hover{

    color:#d4af37 !important;

    text-decoration:none !important;

}