/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h3 {
    color: #00ff88;
    font-weight: 600;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Language Switcher */
.language-switcher {
    margin-right: 1rem;
}

.lang-btn {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    transform: translateY(-2px);
}

/* WhatsApp Button Styling */
.whatsapp-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e, #075e54);
    color: #ffffff;
    text-decoration: none;
}

.whatsapp-button i {
    font-size: 1.8rem;
    color: #ffffff;
}

.whatsapp-button div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.whatsapp-button h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.whatsapp-button span {
    font-size: 0.9rem;
    opacity: 0.9;
    color: #ffffff;
}

/* Remove old WhatsApp styling */
.whatsapp-contact {
    background: transparent;
    border: none;
    padding: 0;
}

.whatsapp-contact i {
    color: #ffffff;
}

.whatsapp-link {
    color: #ffffff;
}

.whatsapp-link:hover {
    color: #128c7e;
    text-decoration: underline;
}

.whatsapp-footer {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-footer:hover {
    background: #25d366;
    transform: translateY(-3px) scale(1.1);
}

.whatsapp-footer i {
    color: #25d366;
    transition: color 0.3s ease;
}

.whatsapp-footer:hover i {
    color: #ffffff;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00ff88;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff88, #00ccff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0a0a;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00ff88;
}

.btn-secondary:hover {
    background: #00ff88;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    background-clip: padding-box;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.6; transform: scale(1); }
    to { opacity: 0.8; transform: scale(1.05); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0a0a;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #00ff88;
}

.btn-secondary:hover {
    background: #00ff88;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 350px;
    height: 350px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid transparent;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    background-clip: padding-box;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.6;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { opacity: 0.6; transform: scale(1); }
    to { opacity: 0.8; transform: scale(1.05); }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
}

/* About Section */
.about {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #00ff88;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.highlight-item i {
    color: #00ff88;
    font-size: 1.2rem;
}

.about-skills-preview h4 {
    margin-bottom: 1.5rem;
    color: #00ccff;
    font-size: 1.3rem;
}

.skills-grid-preview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.skills-grid-preview .skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 204, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 204, 255, 0.2);
    transition: transform 0.3s ease;
}

.skills-grid-preview .skill-item:hover {
    transform: translateX(10px);
}

.skills-grid-preview .skill-item i {
    color: #00ccff;
    font-size: 1.5rem;
}

/* Projects Section */
.projects {
    padding: 100px 0;
}

.timeline {
    position: relative;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00ff88, #00ccff);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 55%;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
    margin-right: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.project-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.project-header h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.project-category {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0a0a;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: rgba(0, 204, 255, 0.2);
    color: #00ccff;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 204, 255, 0.3);
}

.project-features {
    display: flex;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

.feature i {
    color: #00ff88;
}

/* Skills Section */
.skills {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.3);
}

.skills-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
}

.skill-category h3 {
    color: #00ff88;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.skill-item span {
    color: #ffffff;
    font-weight: 500;
}

.skill-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-left: 1rem;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00ccff);
    border-radius: 10px;
    width: 0;
    transition: width 2s ease;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: rgba(26, 26, 46, 0.3);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Pricing Calculator */
.pricing-calculator {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
}

.pricing-calculator h3 {
    color: #00ff88;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calculator-form .form-group {
    margin-bottom: 1.5rem;
}

.calculator-form label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    margin-bottom: 0.5rem;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00ff88, #00ccff);
    cursor: pointer;
}

.range-value {
    color: #00ccff;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.feature-item:hover {
    background: rgba(0, 255, 136, 0.1);
}

.feature-item input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    transition: all 0.3s ease;
}

.feature-item input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    border-color: #00ff88;
}

.feature-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: #0a0a0a;
    font-weight: bold;
    font-size: 12px;
}

.price-summary {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price-breakdown {
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price-total span:last-child {
    color: #00ff88;
    font-size: 1.5rem;
}

/* Pricing Packages */
.pricing-packages h3 {
    color: #00ccff;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.package-card {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 204, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 204, 255, 0.2);
}

.package-card.popular {
    border-color: #00ff88;
    transform: scale(1.05);
}

.package-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ff88, #00ccff);
    color: #0a0a0a;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-header h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    color: #00ccff;
    font-size: 1.2rem;
    align-self: flex-start;
    margin-top: 0.3rem;
}

.amount {
    color: #00ff88;
    font-size: 2.5rem;
    font-weight: 700;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #cccccc;
}

.package-features i {
    color: #00ff88;
    font-size: 0.9rem;
}

.package-btn {
    width: 100%;
    margin-top: auto;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #00ff88;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    width: 30px;
}

.contact-item h4 {
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.contact-item span,
.contact-item a {
    color: #cccccc;
    text-decoration: none;
}

.contact-item a:hover {
    color: #00ff88;
}

.contact-form {
    background: rgba(26, 26, 46, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00ff88;
    box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #cccccc;
}

.contact-form button {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.9);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-text h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
}

.footer-text p {
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 50%;
    color: #00ff88;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    background: #00ff88;
    color: #0a0a0a;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Pricing Section Responsive */
@media (max-width: 992px) {
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-calculator,
    .package-card {
        padding: 1.5rem;
    }
    
    .package-price .amount {
        font-size: 2rem;
    }
    
    .price-total span:last-child {
        font-size: 1.3rem;
    }
}





/* Enhanced Icon Styles */
.stat i {
    font-size: 1.5rem;
    color: #00ccff;
    margin-bottom: 0.5rem;
}

.section-header h2 i {
    margin-right: 10px;
    color: #00ff88;
}

.section-header p i {
    margin-right: 5px;
    color: #00ccff;
}

.project-header h3 i {
    margin-right: 10px;
    color: #00ff88;
}

.project-category i {
    margin-right: 5px;
}

.btn i {
    margin-right: 8px;
}

.footer-text h3 i {
    margin-right: 10px;
    color: #00ff88;
}

.footer-text p i {
    margin-right: 8px;
    color: #00ccff;
}

/* Icon Animations */
.stat i,
.section-header h2 i,
.project-header h3 i {
    transition: transform 0.3s ease, color 0.3s ease;
}

.stat:hover i,
.project-card:hover .project-header h3 i {
    transform: scale(1.1);
    color: #00ff88;
}

.btn:hover i {
    transform: translateX(3px);
}

.footer-link i {
    transition: transform 0.3s ease;
}

.footer-link:hover i {
    transform: rotate(360deg) scale(1.1);
}

/* Navigation Icons */
.nav-link i {
    margin-right: 8px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover i {
    color: #00ff88;
}

/* Mobile Navigation Icons */


/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: -400px;
    background: rgba(26, 26, 46, 0.95);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 350px;
    z-index: 10000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.notification.show {
    right: 20px;
}

.notification.success {
    border-left: 4px solid #00ff88;
}

.notification.error {
    border-left: 4px solid #ff6b6b;
}

.notification i:first-child {
    font-size: 1.2rem;
}

.notification.success i:first-child {
    color: #00ff88;
}

.notification.error i:first-child {
    color: #ff6b6b;
}

.notification span {
    flex: 1;
    font-size: 0.9rem;
}

.notification .close-btn {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.notification .close-btn:hover {
    opacity: 1;
}

/* Loading button state */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Image Styles - Circular Cinematic Effect */
.image-container img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: none !important;
    transition: all 0.5s ease !important;
    filter: grayscale(100%) brightness(0.6) contrast(1.2) !important;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 
                inset 0 0 50px rgba(0, 0, 0, 0.5) !important;
    background: none !important;
    mask: radial-gradient(circle at center, 
          rgba(0,0,0,1) 30%, 
          rgba(0,0,0,0.9) 60%, 
          rgba(0,0,0,0.7) 80%, 
          transparent 100%);
    -webkit-mask: radial-gradient(circle at center, 
                  rgba(0,0,0,1) 30%, 
                  rgba(0,0,0,0.9) 60%, 
                  rgba(0,0,0,0.7) 80%, 
                  transparent 100%);
}

.image-container img:hover {
    filter: grayscale(0%) brightness(1.2) contrast(1.3) saturate(1.4) !important;
    transform: scale(1.08) !important;
    box-shadow: 0 0 80px rgba(0, 255, 136, 0.4), 
                0 0 120px rgba(0, 204, 255, 0.3),
                inset 0 0 30px rgba(0, 255, 136, 0.2) !important;
    animation: imageRotation 0.125s ease-in-out 1 forwards !important;
}

/* Image rotation animation */
@keyframes imageRotation {
    0% { 
        transform: scale(1.08) rotate(0deg);
    }
    25% { 
        transform: scale(1.1) rotate(5deg);
    }
    50% { 
        transform: scale(1.12) rotate(-3deg);
    }
    75% { 
        transform: scale(1.1) rotate(2deg);
    }
    100% { 
        transform: scale(1.08) rotate(0deg);
    }
}

.image-glow {
    position: absolute !important;
    top: -40px !important;
    left: -40px !important;
    right: -40px !important;
    bottom: -40px !important;
    background: radial-gradient(circle at center, 
                rgba(0, 0, 0, 0.9) 0%, 
                rgba(20, 20, 30, 0.7) 20%, 
                rgba(40, 40, 50, 0.4) 50%,
                transparent 80%) !important;
    border-radius: 50% !important;
    z-index: -1 !important;
    filter: blur(30px) !important;
    opacity: 0.8 !important;
    transition: all 0.5s ease !important;
    animation: none !important;
}

.image-container:hover .image-glow {
    background: radial-gradient(circle at center, 
                rgba(0, 255, 136, 0.4) 0%, 
                rgba(0, 204, 255, 0.3) 20%, 
                rgba(0, 150, 255, 0.2) 40%,
                rgba(0, 100, 200, 0.1) 60%,
                transparent 80%) !important;
    filter: blur(45px) !important;
    opacity: 0.9 !important;
    animation: extendedRotation 0.15625s ease-in-out 2 forwards !important;
}

/* Circular Glow Animation - Extended Duration */
@keyframes circularGlow {
    0% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.9;
    }
    25% { 
        transform: scale(1.1) rotate(90deg);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.15) rotate(180deg);
        opacity: 0.7;
    }
    75% { 
        transform: scale(1.12) rotate(270deg);
        opacity: 0.85;
    }
    100% { 
        transform: scale(1.1) rotate(360deg);
        opacity: 1;
    }
}

/* Extended rotation animation that stops after completion */
@keyframes extendedRotation {
    0% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.9;
    }
    20% { 
        transform: scale(1.05) rotate(72deg);
        opacity: 0.8;
    }
    40% { 
        transform: scale(1.1) rotate(144deg);
        opacity: 0.7;
    }
    60% { 
        transform: scale(1.15) rotate(216deg);
        opacity: 0.75;
    }
    80% { 
        transform: scale(1.12) rotate(288deg);
        opacity: 0.85;
    }
    100% { 
        transform: scale(1.1) rotate(360deg);
        opacity: 1;
        animation-play-state: paused;
    }
}

/* Cinematic Animation */
@keyframes cinematicGlow {
    0% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1) rotate(1deg);
        opacity: 0.6;
    }
    100% { 
        transform: scale(1.05) rotate(-1deg);
        opacity: 0.9;
    }
}

/* Additional Image Effects */
.image-container {
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg at center, 
                transparent 0%, 
                rgba(0, 255, 136, 0.2) 90deg, 
                rgba(0, 204, 255, 0.15) 180deg,
                rgba(0, 150, 255, 0.1) 270deg,
                transparent 360%);
    transform: rotate(-90deg) scale(0);
    transition: transform 0.8s ease;
    z-index: 2;
    border-radius: 50%;
    opacity: 0;
}

.image-container:hover::before {
    transform: rotate(360deg) scale(1.2);
    opacity: 1;
    animation: beforeRotation 0.3125s ease-in-out 1 forwards;
}

/* Before element extended rotation */
@keyframes beforeRotation {
    0% { 
        transform: rotate(-90deg) scale(0);
        opacity: 0;
    }
    20% { 
        transform: rotate(72deg) scale(0.5);
        opacity: 0.3;
    }
    40% { 
        transform: rotate(216deg) scale(0.8);
        opacity: 0.6;
    }
    60% { 
        transform: rotate(360deg) scale(1.0);
        opacity: 0.8;
    }
    80% { 
        transform: rotate(540deg) scale(1.2);
        opacity: 1;
    }
    100% { 
        transform: rotate(720deg) scale(1.2);
        opacity: 1;
    }
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, 
                transparent 0%, 
                transparent 40%, 
                rgba(0, 0, 0, 0.2) 70%, 
                rgba(0, 0, 0, 0.4) 90%,
                rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
    border-radius: 50%;
    transition: opacity 0.5s ease;
}

.image-container:hover::after {
    opacity: 0.8;
}



/* Fix Container Shape - Override all previous styles */
.image-container {
    position: relative !important;
    width: 350px !important;
    height: 350px !important;
    border-radius: 50% !important;
    overflow: visible !important;
    cursor: pointer !important;
    background: transparent !important;
    clip-path: circle(50% at center) !important;
}

/* Ensure hover area is circular */
.image-container:hover {
    transform: none !important;
}

/* Make sure glow doesn't extend beyond circle */
.image-glow {
    clip-path: circle(60% at center) !important;
}

/* Ensure all pseudo-elements are circular */
.image-container::before,
.image-container::after {
    clip-path: circle(50% at center) !important;
}

/* Create circular hover detection area */
.image-container {
    -webkit-clip-path: circle(50% at center) !important;
    clip-path: circle(50% at center) !important;
}

/* Alternative approach - use shape-outside for better circular interaction */
.hero-image {
    shape-outside: circle(50%) !important;
}

/* Ensure container doesn't interfere with circular shape */
.hero-image .image-container {
    shape-outside: circle(50%) !important;
    float: none !important;
}

/* Advanced circular interaction fix - Full size */
/* .image-container {
    mask: radial-gradient(circle at center, black 100%, transparent 100%) !important;
    -webkit-mask: radial-gradient(circle at center, black 100%, transparent 100%) !important;
} */

/* Remove any rectangular boundaries */
.image-container * {
    pointer-events: none;
}

.image-container {
    pointer-events: auto;
}

/* Ensure hover works only within circle */
.image-container:hover {
    pointer-events: auto;
}

/* Force circular boundary for all interactions */
.image-container {
    border-radius: 50% !important;
    box-sizing: border-box !important;
    clip-path: url(#circleClip) !important;
}

/* Ultimate circular fix - Full size */
.image-container {
    width: 350px !important;
    height: 350px !important;
    border-radius: 50% !important;
    overflow: visible !important;
    position: relative !important;
    clip-path: circle(50% at center) !important;
    -webkit-clip-path: circle(50% at center) !important;
}

/* Ensure all child elements respect circular boundary - Full size */
.image-container img {
    clip-path: circle(50% at center) !important;
    -webkit-clip-path: circle(50% at center) !important;
}

.image-container::before,
.image-container::after {
    clip-path: circle(50% at center) !important;
    -webkit-clip-path: circle(50% at center) !important;
}

.image-glow {
    clip-path: circle(55% at center) !important;
    -webkit-clip-path: circle(55% at center) !important;
} 

/* Templates Gallery Section */
.templates {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.templates::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 204, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.template-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.template-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.3);
}

.template-image {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.template-card.clothing-store .template-image {
    height: 500px;
}

.template-card.electronics-store .template-image {
    height: 500px;
}

.template-card.coffee-store .template-image {
    height: 500px;
}

.template-card.watch-store .template-image {
    height: 500px;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.template-card:hover .slide img {
    transform: scale(1.1);
}

/* Slideshow Dots */
.slideshow-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: #00ff88;
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Fallback for non-slideshow images */
.template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.template-card:hover .template-image img {
    transform: scale(1.1);
}

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.template-actions {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
}

.template-info {
    padding: 1.5rem;
}

.template-info h3 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.template-info h3::before {
    content: '🎨';
    font-size: 1.2rem;
}

.template-info p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.template-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .template-image {
        height: 350px;
    }
    
    .template-card.clothing-store .template-image,
    .template-card.electronics-store .template-image,
    .template-card.coffee-store .template-image,
    .template-card.watch-store .template-image {
        height: 450px;
    }
}

/* Mobile Responsive for Templates */
@media (max-width: 768px) {
    .template-image,
    .slideshow-container,
    .slide {
      height: 400px !important;
      min-height: 400px !important;
      max-height: none !important;
    }
    .template-card.clothing-store .template-image,
    .template-card.clothing-store .slideshow-container,
    .template-card.clothing-store .slide {
      height: 550px !important;
      min-height: 550px !important;
      max-height: none !important;
    }
    .template-card.electronics-store .template-image,
    .template-card.electronics-store .slideshow-container,
    .template-card.electronics-store .slide {
      height: 550px !important;
      min-height: 550px !important;
      max-height: none !important;
    }
    .template-card.coffee-store .template-image,
    .template-card.coffee-store .slideshow-container,
    .template-card.coffee-store .slide {
      height: 550px !important;
      min-height: 550px !important;
      max-height: none !important;
    }
    .template-card.watch-store .template-image,
    .template-card.watch-store .slideshow-container,
    .template-card.watch-store .slide {
      height: 550px !important;
      min-height: 550px !important;
      max-height: none !important;
    }
    .slide img {
      height: 100% !important;
      max-height: none !important;
    }
    .template-card {
        margin: 0 1rem;
    }
    
    .template-info {
        padding: 1rem;
    }
    
    .template-info h3 {
        font-size: 1.1rem;
    }
    
    .template-info p {
        font-size: 0.9rem;
    }
    
    .template-actions {
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .btn-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .templates {
        padding: 3rem 0;
    }
    
    .template-card {
        margin: 0 0.5rem;
    }
    
    .template-image {
        height: 325px;
    }
    
    .template-card.clothing-store .template-image {
        height: 475px;
    }
    
    .template-card.electronics-store .template-image {
        height: 475px;
    }
    
    .template-card.coffee-store .template-image {
        height: 475px;
    }
    
    .template-card.watch-store .template-image {
        height: 475px;
    }
    
    .template-info h3 {
        font-size: 1rem;
    }
    
    .template-info p {
        font-size: 0.85rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Footer Actions */
.footer-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-actions .btn {
    background: linear-gradient(135deg, #00ff88, #00ccff);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    background: linear-gradient(135deg, #00ccff, #00ff88);
    color: #000;
    text-decoration: none;
}

.footer-actions .btn i {
    font-size: 1.1rem;
}