/* font kurdish comment */
/* @font-face {
    font-family: 'K24KurdishLight-Light';
    src: url('/font/K24KurdishLight-Light.eot'); 
    src: url('webfont.eot?#iefix') format('embedded-opentype'), 
         url('/font/K24KurdishLight-Light.woff') format('woff'), 
         url('/font/K24KurdishLight-Light.ttf')  format('truetype'), 
         url('webfont.svg#svgFontName') format('svg'); 
  } */

/* 0 0 */
:root {
    --primary-color: #e91e63;
    --primary-light: #fce4ec;
    --secondary-color: #ff9800;
    --info-color: #2196f3;
    --info-light: #e3f2fd;
    --success-color: #4caf50;
    --success-light: #e8f5e9;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;

    --shadow-soft: 0 10px 30px rgba(233, 30, 99, 0.1);
    --shadow-hover: 0 15px 40px rgba(233, 30, 99, 0.2);
}

*{
    margin: 0;
    padding: 0;
}

body{
    height: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    background: linear-gradient(135deg, #FFE5D9 0%, #FFB5A7 50%, #FFC9A6 100%);
    background-image: url('../images/3.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}
.hero-sectione{
        height: 50vh !important;
    min-height: 50vh;
    position: relative;
    background: linear-gradient(135deg, #FFE5D9 0%, #FFB5A7 50%, #FFC9A6 100%);
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(255, 229, 217, 0.85) 0%, 
        rgba(255, 181, 167, 0.75) 30%, 
        rgba(255, 201, 166, 0.65) 60%,
        rgba(255, 255, 255, 0.1) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

/* Typography */
.hero-tagline {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #8B4513;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    color: #2C1810;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-title .text-primary {
    color: #8B4513 !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #5D4037;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Custom Button */
.btn-custom {
    background-color: #2C1810;
    color: white;
    border: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(44, 24, 16, 0.2);
}

.btn-custom:hover {
    background-color: #8B4513;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

.btn-custom:focus,
.btn-custom:active {
    background-color: #8B4513;
    color: white;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .hero-section {
        background-position: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        padding: 3rem 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 90vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
    }
    
    .btn-custom {
        padding: 0.75rem 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 2rem 0;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-tagline {
    animation-delay: 0.2s;
}

.hero-title {
    animation-delay: 0.4s;
}

.hero-subtitle {
    animation-delay: 0.6s;
}

.btn-custom {
    animation-delay: 0.8s;
}

/* Navbar Styling */
.navbar-brand {
    font-size: 2rem !important;
    font-weight: 700;
    color: #8B4513 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #2C1810 !important;
    font-weight: 500;
    font-size: 1rem;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: #8B4513 !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: #8B4513 !important;
    font-weight: 600;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #8B4513;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* Mobile Toggle Button */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23%238B4513' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Navigation */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        margin: 0.25rem 0;
        border-radius: 5px;
    }
    
    .navbar-nav .nav-link:hover {
        background-color: rgba(139, 69, 19, 0.1);
        transform: none;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
}


/* Feature Cards */
.feature-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.8rem;
}

/* Specifications */
.specifications-card {
    border: none;
    transition: all 0.3s ease;
}

.specifications-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
}

.spec-item {
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Utility Classes */
.tracking-wide {
    letter-spacing: 0.1em;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Social Links */
.social-links a {
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .price-tag {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Hover Effects for Buttons */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Trust Indicators */
.trust-indicators {
    opacity: 0.9;
}

.trust-indicators i {
    color: #ffd700;
}

#about{
    background:  linear-gradient(135deg, #e91e63 0%, #ff9800 100%);
}