@charset "UTF-8";

:root {
  --bg-white: #F8FAFC;         /* سفید یخی برای پس‌زمینه */
  --accent-indigo: #6366F1;    /* بنفش هوشمند (برگرفته از تصاویر 6 و 10) */
  --accent-cyan: #06B6D4;      /* آبی نئونی برای جزییات (برگرفته از تصویر 7) */
  --font-primary: 'Anjoman', 'Inter', sans-serif;
  --indigo: #6366F1;
--dark: #050505;
--light-bg: #F8FAFC;
--text-main: #1E293B;
--indigo-primary: #6366f1;
--indigo-soft: rgba(99, 102, 241, 0.1);
}

body{
	background-color: #F8FAFC;
	text-align:justify;
	color: #0F172A;
}

/* Navbar Styling */
.navbar-custom {
transition: all 0.4s ease;
padding: 20px 0;
background: transparent;
}
.nav-scrolled {
background: rgba(255, 255, 255, 0.9) !important;
backdrop-filter: blur(10px);
padding: 10px 0;
}
.navbar-brand img { height: 35px; }
.nav-link { font-weight: 500; color: var(--text-main) !important; margin: 0 10px; }

.floating-anim {
animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}

h1 {
	color: #6366F1;
}

h2,h3,h4,h5 {
	color: #06B6D4;
}

.indigoacc {
  /* font-size: 72px; */
  background: -webkit-linear-gradient(#6366F1, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@font-face{
    font-family:mylogo;
    font-style:normal;
    font-weight:bold;
    src:url('fonts/Montserrat-Bold.ttf');
}

@font-face{
    font-family:'modernist';
    src:url('fonts/sk-modernist-bold-webfont.ttf');
}

.logo {
	font-family: 'mylogo';
	font-weight: 400;
}

.hero-web {
	min-height: 100vh;
	padding-top: 100px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-white);
    /* ایجاد لایه‌های رنگی نرم در پس‌زمینه */
    background-image: 
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(6, 182, 212, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(168, 85, 247, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(244, 63, 94, 0.05) 0px, transparent 50%);
    animation: gradientMove 15s ease infinite alternate;
}

.web-package {
	padding-top: 60px;
	padding-bottom: 60px;
	position: relative;
    overflow: hidden;
    background-color: var(--bg-white);
    /* ایجاد لایه‌های رنگی نرم در پس‌زمینه */
    background-image: 
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(6, 182, 212, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(168, 85, 247, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(244, 63, 94, 0.05) 0px, transparent 50%);
    animation: gradientMove 15s ease infinite alternate;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%;
    }
    50% {
        /* جابجایی کانون‌های نور برای حس سیالیت */
        background-position: 10% 15%, 85% 5%, 90% 80%, 5% 95%;
    }
    100% {
        background-position: 0% 0%, 100% 0%, 100% 100%, 0% 100%;
    }
}

/* افکت شیشه‌ای برای المان‌های روی این پس‌زمینه */
.glass-panel {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
}

.gradient-btn {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #6541c1;
    border-radius: 28px;
    border: 2px solid transparent;
    overflow: hidden;
    z-index: 1;
    transition: 
        color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s ease;

    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(to right, #6541c1 0%, #d43396 98%, #d43396 100%) border-box;
}

/* لایه پرشونده */
.gradient-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 28px;
    background: linear-gradient(to right, #6541c1 0%, #d43396 98%, #d43396 100%);
    z-index: -1;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover */
.gradient-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(101, 65, 193, 0.25),
        0 4px 10px rgba(212, 51, 150, 0.2);
}

.gradient-btn:hover::before {
    width: 100%;
}

/* Active */
.gradient-btn:active {
    transform: translateY(0);
}

.gradient-btn2 {
    position: relative;
    display: inline-block;
    padding: 12px 28px;
    margin: 0 15px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #6541c1;
    border-radius: 28px;
    border: 2px solid transparent;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(to right, #6541c1 0%, #d43396 98%, #d43396 100%) border-box;
    color: #ffffff;
}

.gradient-btn2:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(101, 65, 193, 0.25),
        0 4px 10px rgba(212, 51, 150, 0.2);
}