/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;800&family=Cairo:wght@400;600;700&family=Syne:wght@400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #0088CC;
    --secondary: #06d6a0;
    --bg-body: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --card-bg: #f8f9fa;
    --border-color: #e5e5e5;
    --nav-bg: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    --font-en: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-syne: 'Syne', sans-serif;
    --font-space: 'Space Grotesk', sans-serif;
    --font-ar: 'Cairo', sans-serif;

    --brand-gradient: linear-gradient(to right, #0088CC, #06d6a0);
    --bg-linearop: linear-gradient(to bottom right, rgba(0, 136, 204, 0.2), rgba(6, 214, 160, 0.2));

    --bg-card-contact: rgb(81 80 80 / 4%);
    --bor-card-contact: rgb(97 96 96 / 6%);
    --bg-service-icon-box: #0088cc1a;
}

[data-theme="dark"] {
    --bg-body: #050505;
    --text-main: #ffffff;
    --text-muted: #676262;
    --card-bg: #111111;
    --border-color: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(5, 5, 5, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --bg-linearop: linear-gradient(to right, #5a9fc1, #7dc0ae);
    --bg-card-contact: rgba(255, 255, 255, 0.05);
    --bor-card-contact: rgba(255, 255, 255, 0.1);
    --bg-service-icon-box: #0088cc83;
}

/* ... existing reset code ... */


* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-en);
    background-color: var(--bg-body);
    color: var(--text-main);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

.text-muted {
    color: var(--text-muted) !important;
    text-align: justify;
}

a {
    text-decoration: none;

}

p {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* RTL Support */
[dir="rtl"] {
    font-family: var(--font-ar);
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6 {
    font-family: var(--font-ar);
}

/* cursor */
.cursor {
    display: block;
    font-size: 30px;
    position: absolute;
    color: var(--text-main);
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    background: transparent;
    pointer-events: none;
    z-index: 111;
    transition: all 0.2s ease-out;
    animation: moveCursor1 .5s infinite alternate;
}

.expand {
    background: transparent;
    animation: moveCursor2 .5s forwards;
    /* border: 1px solid yellow;*/
}

@keyframes moveCursor1 {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(.8);
    }
}

@keyframes moveCursor2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2.5);
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Navbar */
.navbar {
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar .logo {
    display: flex;
    align-items: center;
}

.navbar .logo span {
    margin-left: -6px;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-main) !important;
    font-size: 1.5rem;
}

.navbar-btn {
    margin-left: auto;
}

[dir="rtl"] .navbar-btn {
    margin-left: 5px;
    margin-right: auto;
}

.nav-item {
    position: relative;
}
.nav-link {
    color: var(--text-main) !important;
    font-weight: 700 !important;
    opacity: 0.8;
}

.nav-link:after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: 0;
    width: 0%;
    height: 1.5px;
    background: var(--primary);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
}

[dir="rtl"] .nav-link:after {
    left: auto;
    right: 10px;
}

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

.nav-link.active,
.nav-link:hover {
    opacity: 1;
    color: var(--primary) !important;
}

.nav-link.active::after {
    width: 60%;
    opacity: 1;
    color: var(--primary) !important;
}


.btn-theme-toggle {
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background: transparent;
}

[data-theme="dark"] .btn-theme-toggle {
    background-color: rgba(255, 255, 255, 0.9);
    color: #0a0a0a;
    border-color: transparent;
}

.btn-theme-toggle:hover {
    transform: scale(1.1);
    color: var(--primary);
}

.btn-lang-toggle {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-lang-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* New About Section Styles */
.about-stats-container {
    background-color: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

[data-theme="light"] .about-stats-container {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.1);
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s;
}

[data-theme="light"] .stat-item {
    background-color: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.05);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.title-page {
    background: #0088cc14;
}

/* service section */
.scr.prt.tab {
    display: flex;
    height: 100vh;
}

.left.spane {
    width: 50%;
    height: 100%;
    overflow-y: hidden;
    /* Changed to hidden to let GSAP handle it */
}

.right.scrzone {
    width: 50%;
    height: 100%;
}

.pane {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align text to left */
    font-size: 2rem;
    color: var(--text-main);
    padding-left: 10%;
    /* Give some space from the edge */
}

.pane .ct {
    max-width: 500px;
    text-align: left;
}

.service-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.service-image-container.active {
    opacity: 1;
}

.service-image-container img {
    max-width: 100%;
    max-height: 80%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.left.spane {
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.left.spane::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.service-card {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-right: 40px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.service-card i {
    color: var(--primary);
    font-size: 55px;
}

.tech-icon {
    font-size: 2rem;
    color: var(--text-muted);
}

/* Why Codura Section Styles */
.why-card {
    height: 500px !important;
    width: 100%;
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    background-color: var(--card-bg);
}

.why-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.why-card:hover img {
    transform: scale(1.05);
}

.why-card .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.why-card .why-icon {
    width: 24px;
    height: 24px;
    color: #4ade80;
    flex-shrink: 0;
}

.why-card .why-text {
    font-family: var(--font-syne);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0;
    line-height: 1.4;
}

.whySwiper {
    border-radius: 2rem;
    overflow: hidden;
    padding-bottom: 0 !important;
}

.why-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.why-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    opacity: 1;
    transition: all 0.3s ease;
}

.why-pagination .swiper-pagination-bullet-active {
    background: var(--text-main);
    transform: scale(1.2);
}


/* Portfolio Preview Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    -webkit-background-clip: text;
    background-clip: text;
}

.glass-preview {
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect base */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1.5rem;
    margin-bottom: 3rem;
    transition: transform 0.3s;
}

.tech-tag {
    background-color: #84848417;
    font-size: 10px;
    padding: 7px 10px;
    border-radius: 30px;
    border: 1px solid #69696932;
}

[dir="rtl"] .glass-preview {
    direction: rtl;
}

[data-theme="light"] .glass-preview {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 0, 0, 0.05);
}

.glass-preview:hover {
    transform: translateY(-5px);
    border-color: #0088CC;
}

.preview-image-container {
    background-color: #ddd;
    min-height: 300px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.preview-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* New Footer Styles */
.footer-section {
    border-top: 1px solid var(--border-color) !important;

    background-color: rgba(248, 249, 250, 0.5);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.reservedAll {

    border-top: 1px solid var(--border-color) !important;
}

[data-theme="dark"] .footer-section {
    background-color: rgba(17, 17, 17, 0.5);
    /* secondary/50 dark */
}

.text-gradient-emerald {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-link {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #06d6a0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-contact-item i {
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-radius: 1rem;
    background: #0088cc1a;
    border: 1px solid #0088CC;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #0088CC;
    padding-top: 2px;
}

.footer-decorative-box {
    width: 100%;
    height: 8rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, rgba(0, 136, 204, 0.2), rgba(6, 214, 160, 0.2));
    border: 1px solid rgba(0, 136, 204, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}



.bg-theme-card {
    background-color: var(--card-bg) !important;
}

.text-brand-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-brand-gradient {
    background: var(--brand-gradient);
}

/* Buttons */
.btn-primary-custom {
    background: var(--brand-gradient);
    color: var(--bg-body);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.2s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-custom:hover {
    color: var(--bg-body);
    transform: translateY(-2px);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}




/* Sticky / Layered Animation Sections */
.smooth-wrapper {
    /* For LENIS or native scroll */
    width: 100%;
}

.sticky-section-container {
    position: relative;
    width: 100%;
}

.sticky-section {
    position: sticky;
    top: 0;
    height: 100vh;
    /* Make section full viewport */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-body);
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
    /* Shadow to separate layers */
    border-top: 1px solid var(--border-color);
    overflow: hidden;
    /* Optional: rounded top corners like cards */
    border-radius: 40px 40px 0 0;
    /* Transformation for the entrance animation (handled by GSAP) */
}

/* Specific background variations for visual separation while scrolling */
.sticky-section:nth-child(even) {
    background-color: var(--card-bg);
}


/* Content Styling within sections */
.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
}

/*  */


/*  */
.hero-section {
    min-height: 100vh;
    padding: 0 !important;
    background: var(--bg-body);
    border-radius: 0 !important;
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-body);
}

/* Footer */
footer {
    background-color: var(--card-bg);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

/* Animations Utility */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
}

/* Vertical Section Indicators */
.section-indicators {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--text-main);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.5;
}

.indicator-dot:hover {
    opacity: 0.8;
}

.indicator-dot.active {
    background: var(--text-main);
    border-color: transparent;
    opacity: 1;
    transform: scale(1.2);
}


/* Emerald Pill */
.emerald-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, #0088cc36, #06d69e2b);
    border: 1px solid #0088cc66;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.emerald-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-gradient);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.emerald-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   Responsive Adjustments
   ========================================= */

@media (max-width: 991px) {
    .nav-link:hover:after {
        width: 0%;
    }

    .nav-link.active,
    .nav-link:hover {
        opacity: 1;
    }

    .nav-link.active::after {
        width: 0%;
    }

    /* 1. Disable Sticky Scrolling behavior on mobile to prevent content clipping */
    .sticky-section {
        position: relative;
        height: auto;
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 4rem;
        border-radius: 0;
        display: block;
        /* Remove flex centering */
    }

    .section-content {
        padding: 0 1.5rem;
    }

    /* 2. Services Section Mobile Layout */
    .services-section {
        height: auto;
        /* Override 100vh */
        padding: 4rem 0;
    }

    .services-section .container {
        flex-direction: column-reverse;
        /* Text top, image bottom or reversed based on pref */
        height: auto !important;
        gap: 2rem;
    }

    .services-text {
        max-width: 100% !important;
        flex: none;
        width: 100%;
    }

    .service-item {
        margin-bottom: 2rem;
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
    }

    .services-image {
        display: none;
        /* Hide the sticky 3D image on mobile, simpler to just show text cards or static image */
    }

    .service-card {
        background: var(--bg-body);
        border: none;
        border-radius: 0px;
        padding: 10px;
        margin-right: 40px;
        height: 100%;
        transition: transform 0.3s;
        border-bottom: 1px solid var(--border-color);
    }

    .service-card i {
        font-size: 27px !important;
    }

    .service-item h2 {
        font-size: 20px !important;
    }

    .service-item p {
        font-size: 13px !important;
    }

    /* Services Image hidden on mobile */

    /* 3. About Section */
    .about-stats-container {
        margin-top: 2rem;
        padding: 1.5rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* 4. Why Codura */
    .why-card {
        height: 350px !important;
        /* Smaller cards */
    }

    /* 5. General Typography */
    .display-4 {
        font-size: 2.5rem;
    }

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

    /* Hide Section Indicators on Mobile */
    .section-indicators {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Navbar adjustments */
    .navbar-collapse {
        background: var(--card-bg);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 1rem;
        border: 1px solid var(--border-color);
    }

    /* Footer */
    .footer-section {
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    /* Glass Preview */
    .glass-preview {
        padding: 1.5rem;
        text-align: center;
        /* Center text on mobile */
    }

    .glass-preview .text-start {
        text-align: center !important;
    }

    .preview-image-container {
        min-height: 200px;
    }
}




/***************************/
/*Services page*/
.syne-font {
    font-family: 'Syne', sans-serif;
}

/* Page Background Gradient */
.page-bg {
    position: absolute;
    inset: 0;
    /* Emerald to Violet */
    z-index: -1;
    pointer-events: none;
}

/* Service Item Styles */
.service-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    /* background: linear-gradient(to right, #0088cc70, #06d69e62); */
    background: var(--bg-service-icon-box);
    border: 1px solid #0088CC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0088cc;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.feature-icon-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    /* background: linear-gradient(to right, #0088cc70, #06d69e62); */
    background: #06d69e32;
    border: 1px solid #06d6a0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06d6a0;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Image Wrapper */
.image-wrapper {
    aspect-ratio: 4/3;
    border-radius: 1.5rem;
    background: linear-gradient(to bottom right, rgba(0, 136, 204, 0.2), rgba(6, 214, 160, 0.2));
    padding: 4px;
}

.image-inner {
    width: 100%;
    height: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-card {
    padding: 3rem;
    border-radius: 1.5rem;
    background: var(--bg-linearop);
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
    margin-top: 6rem;
}

.cta-card p {
    color: var();
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(to right, #0088CC, #06d6a0);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: #059669;
    /* Darker emerald */
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
}

.cta-btn:hover i {
    transform: translateX(4px);
}

.cta-btn i {
    transition: transform 0.3s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/***************************/

/*Contact Us*/
.syne-font {
    font-family: 'Syne', sans-serif;
}

/* Glass Cards */
.glass-card {
    background: var(--bg-card-contact);
    backdrop-filter: blur(10px);
    border: 1px solid var(--bor-card-contact);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.3s ease;
}

/* Form Input Styles */
.form-control-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--bor-card-contact);
    color: var(--text-main);
    border-radius: 12px;
    padding: 12px 16px;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.08);
    /* Slightly lighter on focus */
    border-color: rgba(6, 182, 212, 0.5);
    /* Cyan border */
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
    color: var(--text-main);
    outline: none;
}

.form-control-custom::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Submit Button Gradient */
.btn-gradient {
    background: linear-gradient(to right, #0088CC, #06d6a0);
    /* Brand Color Gradient */
    color: white;
    border: none;
    border-radius: 30px;
    padding: 1rem;
    font-weight: 500;
    width: 35%;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.btn-send {
    display: flex;
    justify-content: end;
}

.btn-gradient:hover {
    transform: scale(1.02);
    color: white;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

.btn-gradient:active {
    transform: scale(0.98);
}

.btn-gradient:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Loading Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Icon Container */
.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0088cc1a;
    color: #0088CC;
    border: 1px solid #0088CC;
    transition: all 0.3s;
}

.contact-item:hover .icon-box {
    background: #0088cc3f;
}

/* Background Blobs */
.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.blob-1 {
    top: -200px;
    left: -200px;
    background: linear-gradient(to bottom right, #0088CC, transparent);
}

.blob-2 {
    bottom: -200px;
    right: -200px;
    background: linear-gradient(to top left, #06d6a0, transparent);
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0088CC, #06d6a0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/***************************/

/***********portfolio Details****************/

/**********portfolio Details*****************/