/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }
}

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

/* Logo image styling */
.nav-logo-link {
    display: inline-flex;
    align-items: center;
}

.nav-logo img {
    height: 70px;
    width: auto;
    display: inline-block;
    margin-top: 7px;
    margin-left: 0;
}

@media (max-width: 768px) {
    .nav-logo img {
        height: 56px; /* slightly larger logo on mobile */
        margin-left: auto;
    }
}

/* Stretch nav container to full width on desktop so logo sits at the left edge */
@media (min-width: 1025px) {
    .navbar .nav-container {
        max-width: 100%;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

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

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

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding-top: 70px; /* Account for fixed navbar */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease 0.4s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease 0.6s forwards;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* 3D Floating Cards */
.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
    min-width: 400px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: float 8s ease-in-out infinite, floatSecondary 12s ease-in-out infinite;
    width: 200px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card i {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
}

.card span {
    font-size: 1.1rem;
    line-height: 1.3;
}

.card-1 {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 5%;
    right: 10%;
    animation-delay: 1.5s;
}

.card-3 {
    bottom: 5%;
    left: 10%;
    animation-delay: 3s;
}

.card-4 {
    bottom: 5%;
    right: 10%;
    animation-delay: 4.5s;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px) rotateX(0deg) rotateY(0deg); }
    12.5% { transform: translateY(-8px) translateX(5px) rotateX(2deg) rotateY(1deg); }
    25% { transform: translateY(-15px) translateX(10px) rotateX(3deg) rotateY(2deg); }
    37.5% { transform: translateY(-18px) translateX(5px) rotateX(4deg) rotateY(1deg); }
    50% { transform: translateY(-20px) translateX(0px) rotateX(5deg) rotateY(0deg); }
    62.5% { transform: translateY(-18px) translateX(-5px) rotateX(4deg) rotateY(-1deg); }
    75% { transform: translateY(-15px) translateX(-10px) rotateX(3deg) rotateY(-2deg); }
    87.5% { transform: translateY(-8px) translateX(-5px) rotateX(2deg) rotateY(-1deg); }
    100% { transform: translateY(0px) translateX(0px) rotateX(0deg) rotateY(0deg); }
}

@keyframes floatSecondary {
    0% { transform: translateY(0px) translateX(0px) rotateX(0deg) rotateY(0deg); }
    20% { transform: translateY(-5px) translateX(3px) rotateX(1deg) rotateY(0.5deg); }
    40% { transform: translateY(-10px) translateX(6px) rotateX(2deg) rotateY(1deg); }
    60% { transform: translateY(-5px) translateX(3px) rotateX(1deg) rotateY(0.5deg); }
    80% { transform: translateY(-2px) translateX(0px) rotateX(0.5deg) rotateY(0deg); }
    100% { transform: translateY(0px) translateX(0px) rotateX(0deg) rotateY(0deg); }
}

/* 3D Web Development Background */
.web-dev-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.code-block {
    position: absolute;
    background: rgba(60, 47, 69, 0.8);
    border: 1px solid #00ff88;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.3),
        inset 0 0 20px rgba(0, 255, 136, 0.1);
    animation: codeFloat 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.code-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    transform: perspective(1000px) rotateX(10deg) rotateY(15deg);
}

.code-2 {
    top: 15%;
    left: 90%;
    animation-delay: 2s;
    transform: perspective(1000px) rotateX(-5deg) rotateY(-10deg);
}

.code-3 {
    top: 75%;
    left: 3%;
    animation-delay: 4s;
    transform: perspective(1000px) rotateX(15deg) rotateY(5deg);
}

.code-line {
    display: block;
    margin-bottom: 5px;
}

.keyword {
    color: #ff6b6b;
    font-weight: bold;
}

.function {
    color: #4ecdc4;
    font-weight: bold;
}

.bracket {
    color: #ffe66d;
}

.string {
    color: #95e1d3;
}

.tag {
    color: #ff6b6b;
}

.attr {
    color: #4ecdc4;
}

.equals {
    color: #ffe66d;
}

.text {
    color: #ffffff;
}

.comment {
    color: #888;
    font-style: italic;
}

.selector {
    color: #4ecdc4;
}

.property {
    color: #ffe66d;
}

.colon {
    color: #ffffff;
}

.value {
    color: #95e1d3;
}

.indent {
    color: transparent;
    user-select: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(60, 47, 69, 0.8);
    border: 2px solid #00ff88;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
    animation: elementFloat 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.element-1 {
    top: 10%;
    left: 2%;
    animation-delay: 0s;
    color: #e34c26;
    border-color: #e34c26;
    box-shadow: 0 0 15px rgba(227, 76, 38, 0.4);
}

.element-2 {
    top: 22%;
    left: 12%;
    animation-delay: 1s;
    color: #1572b6;
    border-color: #1572b6;
    box-shadow: 0 0 15px rgba(21, 114, 182, 0.4);
}

.element-3 {
    top: 20%;
    left: 88%;
    animation-delay: 2s;
    color: #f7df1e;
    border-color: #f7df1e;
    box-shadow: 0 0 15px rgba(247, 223, 30, 0.4);
}

.element-4 {
    top: 35%;
    left: 90%;
    animation-delay: 3s;
    color: #61dafb;
    border-color: #61dafb;
    box-shadow: 0 0 15px rgba(97, 218, 251, 0.4);
}

.element-5 {
    top: 85%;
    left: 3%;
    animation-delay: 4s;
    color: #68a063;
    border-color: #68a063;
    box-shadow: 0 0 15px rgba(104, 160, 99, 0.4);
}

.element-6 {
    top: 40%;
    left: 4%;
    animation-delay: 5s;
    color: #3776ab;
    border-color: #3776ab;
    box-shadow: 0 0 15px rgba(55, 118, 171, 0.4);
}

/* Animations */
@keyframes codeFloat {
    0%, 100% { 
        transform: perspective(1000px) rotateX(10deg) rotateY(15deg) translateY(0px);
    }
    25% { 
        transform: perspective(1000px) rotateX(5deg) rotateY(10deg) translateY(-10px);
    }
    50% { 
        transform: perspective(1000px) rotateX(15deg) rotateY(20deg) translateY(-5px);
    }
    75% { 
        transform: perspective(1000px) rotateX(8deg) rotateY(12deg) translateY(-15px);
    }
}

@keyframes elementFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% { 
        transform: translateY(-15px) rotate(5deg);
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) rotate(-3deg);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-20px) rotate(8deg);
        opacity: 0.9;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border: 2px solid white;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) rotate(-45deg) translateY(0); }
    40% { transform: translateX(-50%) rotate(-45deg) translateY(-10px); }
    60% { transform: translateX(-50%) rotate(-45deg) translateY(-5px); }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Calculator Section */
.calculator {
    padding: 6rem 0;
    background: white;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: normal;
}

.calculator-form {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

/* Desktop custom styling */
@media (min-width: 769px) {
    .form-control {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 16px;
        padding-right: 40px;
    }
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Mobile native dropdowns - Force native behavior */
@media (max-width: 768px) {
    /* Remove ALL custom styling on mobile */
    select,
    select.form-control,
    .form-control[type="select"],
    .form-control select {
        -webkit-appearance: menulist !important;
        -moz-appearance: menulist !important;
        appearance: menulist !important;
        background: white !important;
        background-image: none !important;
        background-color: white !important;
        border: 1px solid #e5e7eb !important;
        border-radius: 8px !important;
        padding: 12px 16px !important;
        font-size: 16px !important;
        color: #1f2937 !important;
        width: 100% !important;
        box-shadow: none !important;
        outline: none !important;
    }
    
    /* Override any potential custom dropdown libraries */
    .form-control:focus,
    select:focus,
    select.form-control:focus {
        -webkit-appearance: menulist !important;
        -moz-appearance: menulist !important;
        appearance: menulist !important;
        background: white !important;
        background-image: none !important;
        box-shadow: none !important;
        outline: none !important;
    }
    
    /* Force native dropdown arrow */
    select::after,
    .form-control::after {
        display: none !important;
    }
    
    /* Additional mobile-specific overrides */
    .calculator-form select,
    .calculator-form .form-control {
        -webkit-appearance: menulist !important;
        -moz-appearance: menulist !important;
        appearance: menulist !important;
        background: white !important;
        background-image: none !important;
        border: 1px solid #e5e7eb !important;
        border-radius: 8px !important;
        padding: 12px 16px !important;
        font-size: 16px !important;
        color: #1f2937 !important;
        width: 100% !important;
        box-shadow: none !important;
        outline: none !important;
    }
    
    /* Prevent any custom dropdown libraries from interfering */
    .calculator-form * {
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
    }
    
    .calculator-form select {
        -webkit-appearance: menulist !important;
        -moz-appearance: menulist !important;
        appearance: menulist !important;
    }
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    width: 100%;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.custom-dropdown:hover {
    border-color: var(--primary-color);
}

.custom-dropdown.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    z-index: 1000;
}

.dropdown-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    font-size: 1rem;
    color: var(--text-primary);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-selected:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.dropdown-selected i {
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.custom-dropdown.active .dropdown-selected i {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.1s ease;
    pointer-events: none;
    isolation: isolate;
}

.custom-dropdown.active .dropdown-options {
    max-height: 300px;
    opacity: 1;
    pointer-events: auto;
}

.dropdown-option {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1001;
    pointer-events: auto;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background-color: var(--bg-secondary);
    color: var(--primary-color);
}

.dropdown-option.selected {
    background-color: var(--primary-color) !important;
    color: white !important;
    font-weight: 600 !important;
    position: relative;
}

.dropdown-option.selected::after {
    content: '✓';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 14px;
}

/* Mobile optimizations for custom dropdowns */
@media (max-width: 768px) {
    
    .dropdown-options {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 90% !important;
        max-width: 400px !important;
        max-height: 70vh !important;
        border-radius: 12px !important;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
        z-index: 99999 !important;
        background: white !important;
        border: 2px solid #e5e7eb !important;
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.2s ease !important;
    }
    
    .custom-dropdown.active .dropdown-options {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .dropdown-option {
        padding: 20px 24px !important;
        font-size: 1.2rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        background: white !important;
        color: #374151 !important;
        transition: background-color 0.2s ease !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .dropdown-option:hover,
    .dropdown-option:active {
        background: #f3f4f6 !important;
    }
    
    .dropdown-option:last-child {
        border-bottom: none !important;
        border-radius: 0 0 12px 12px !important;
    }
    
    .dropdown-option:first-child {
        border-radius: 12px 12px 0 0 !important;
    }
    
    /* Mobile backdrop - more aggressive */
    .custom-dropdown.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 99998;
        pointer-events: auto;
        touch-action: manipulation;
        cursor: pointer;
    }
    
    /* Ensure mobile backdrop is always clickable */
    .mobile-backdrop {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 99998 !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        cursor: pointer !important;
    }
    
    /* Ensure calculator elements are interactive */
    .calculator {
        pointer-events: auto;
    }
    
    /* Ensure dropdowns work on mobile */
    .custom-dropdown {
        position: relative !important;
        z-index: 1 !important;
    }
    
    .custom-dropdown.active {
        z-index: 99999 !important;
    }
    
    .custom-dropdown.active .dropdown-options {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem 0;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    flex-shrink: 0;
}

/* Desktop checkbox checked state */
.checkbox-label.checked {
    /*background: rgba(99, 102, 241, 0.1);*/
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Mobile checkbox improvements */
@media (max-width: 768px) {
    .checkbox-label {
        padding: 12px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        background: white;
        margin-bottom: 8px;
        min-height: 48px;
        display: flex;
        align-items: center;
        cursor: pointer;
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        margin-right: 12px;
    }
    
    .checkbox-label.checked {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }
    
    .checkbox-group {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.result-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-xl);
}

.result-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-display {
    margin-bottom: 2rem;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.price {
    font-size: 4rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.price-breakdown {
    text-align: left;
    margin-bottom: 2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.breakdown-item.total {
    font-weight: 700;
    font-size: 1.1rem;
    /*border-top: 2px solid rgba(255, 255, 255, 0.3);*/
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.timeline-estimate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Portfolio Section */
.portfolio {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.portfolio-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-placeholder {
    color: white;
    font-size: 3rem;
}

.portfolio-content {
    padding: 1.25rem; /* tighter padding */
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0.75rem; /* reduce internal spacing between elements */
}

/* Align CTA buttons to the bottom for equal alignment across cards */
.portfolio-actions {
    margin-top: auto;
}

.portfolio-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.portfolio-content p {
    color: var(--text-secondary);
    margin-bottom: 0.9rem; /* less space under description */
    line-height: 1.6;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem; /* reduce space before the button */
}

.tech-tag {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Portfolio Project Page Styles */
.project-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.project-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.project-info h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.project-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.project-meta {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    opacity: 0.9;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.meta-item i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.project-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-mockup {
    width: 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-overview {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 1rem;
}

.overview-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.overview-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--text-primary);
    position: relative;
    padding-left: 1rem;
}

.overview-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 2px;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.feature-list li:hover {
    background: rgba(124, 58, 237, 0.05);
    color: var(--text-primary);
    transform: translateX(8px);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
    background: rgba(124, 58, 237, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    min-height: auto;
}

.stat-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.2;
}

.tech-stack {
    background: white;
}

.tech-stack h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
}

.tech-stack h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

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

.tech-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-item:hover::before {
    transform: scaleX(1);
}

.tech-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.tech-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.tech-item:hover i {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.tech-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.tech-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.project-gallery {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.project-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    aspect-ratio: 16/10;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.gallery-placeholder small {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.project-results {
    padding: 6rem 0;
    background: white;
}

.project-results h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.result-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.result-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.result-item p {
    color: var(--text-secondary);
}

.project-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile responsiveness for project page */
@media (max-width: 768px) {
    .project-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .project-info h1 {
        font-size: 2rem;
    }
    
    .project-subtitle {
        font-size: 1rem;
    }
    
    .project-meta {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .project-mockup {
        width: 250px;
        height: 150px;
        margin: 0 auto;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 1.5rem 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .stat-item {
        padding: 1rem;
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .stat-item h3 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }
    
    .stat-item p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin: 0;
        font-weight: 500;
    }
    
    .overview-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .project-header {
        padding: 6rem 0 3rem;
    }
    
    .project-info h1 {
        font-size: 1.8rem;
    }
    
    .project-subtitle {
        font-size: 0.9rem;
    }
    
    .project-mockup {
        width: 200px;
        height: 120px;
    }
    
    .overview-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin: 1rem 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .stat-item {
        padding: 0.75rem;
        min-width: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .stat-item h3 {
        font-size: 1.2rem;
        line-height: 1.2;
        margin-bottom: 0.4rem;
        font-weight: 700;
    }
    
    .stat-item p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin: 0;
        font-weight: 500;
    }
    
    .overview-content p {
        font-size: 0.9rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-item i {
        font-size: 2rem;
    }
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        cursor: pointer;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero {
        padding-top: 80px; /* Extra padding for mobile */
        min-height: calc(100vh - 80px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-top: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        height: 350px;
        min-width: 300px;
    }

    .card {
        width: 160px;
        height: 140px;
        padding: 2rem 1.5rem;
    }

    .card i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .card span {
        font-size: 0.9rem;
    }

    .card-1 {
        top: 5%;
        left: 5%;
    }

    .card-2 {
        top: 5%;
        right: 5%;
    }

    .card-3 {
        bottom: 5%;
        left: 5%;
    }

    .card-4 {
        bottom: 5%;
        right: 5%;
    }

    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    /* Mobile checkbox fixes */
    .checkbox-label {
        font-size: 1rem;
        padding: 0.75rem 0;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        padding: 0.75rem;
        margin-bottom: 0.5rem;
        background: white;
        transition: all 0.3s ease;
    }
    
    .checkbox-label:hover {
        border-color: var(--primary-color);
        background: var(--bg-secondary);
    }
    
    .checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        margin-right: 0.75rem;
        accent-color: var(--primary-color);
    }
    
    /* Only use the .checked class for highlighting */
    .checkbox-label.checked {
        background: rgba(99, 102, 241, 0.15) !important;
        border-color: var(--primary-color) !important;
        color: var(--primary-color) !important;
        font-weight: 600 !important;
        box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2) !important;
    }


    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 90px; /* Extra padding for very small screens */
        min-height: calc(100vh - 90px);
    }

    .hero-content {
        padding: 1rem 0 2rem 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-top: 0.5rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .price {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
