

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #312e81 100%);
    color: var(--text-light);
    padding: 3rem 0 2rem;
    background: var(--gradient-elegant-count);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    opacity: 0.4;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.footer-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-right {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-right a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-right a:hover {
    color: var(--text-light);
    transform: translateY(-1px);
}

.footer-right a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-right a:hover::after {
    width: 100%;
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-right {
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-right a {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .footer-right {
        flex-direction: column;
        gap: 1rem;
    }
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #f59e0b;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-light: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --bg-card: rgba(255, 255, 255, 0.95);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-elegant: linear-gradient(135deg, #253a4c 0%, #133857 30%, #14a8c5 100%);
    --gradient-elegant-active: linear-gradient(135deg, rgba(37, 58, 76, 0.87) 0%, rgba(19, 56, 87, 0.69) 30%, rgba(20, 168, 197, 0.84) 100%);
    --gradient-elegant-count: linear-gradient(135deg, #14a8c5 20% , #407cae 50%, #092435 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --glass: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: var(--bg-primary);
}
#logoImage{
    height: 25px;
}
/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #133857;
    height: 80px;
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
    background: #133857;
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.custom-number{
    color: #1967d2;
    font-size: 20px;
}
.big-number{
    font-size: xxx-large;
}
.margin-b-2{
    margin-bottom:2rem;
}
.color-black{
    color: black;
}
.font-30{
    font-size: 30px;
}
.margin-t-50{
    margin-top: 50px;
}
.margin-t-82{
    margin-top: 82px;
}
.margin-t-100{
    margin-top: 100px;
}
.margin-t-70{
    margin-top: 70px;
}
.margin-t-20{
    margin-top: 20px;
}
.logo {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-elegant);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    display: flex;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 1px;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav-links a {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--gradient-elegant);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-nav-links a:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(19, 56, 87, 0.84);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: float 25s ease-in-out infinite;
    opacity: 0.7;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite alternate;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation: floatShape1 20s ease-in-out infinite;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 70%;
    right: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: floatShape2 25s ease-in-out infinite reverse;
}



.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 20%;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    animation: floatShape4 22s ease-in-out infinite;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 32%;
    background: rgba(255, 255, 255, 0.15);
    animation: floatShape5 16s ease-in-out infinite reverse;
}

.shape-6 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 71%;
    background: rgba(255, 255, 255, 0.12);
    animation: floatShape3 18s ease-in-out infinite;
}


.shape-7 {
    width: 140px;
    height: 140px;
    bottom: 50%;
    right: 46%;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 30px;
    animation: floatShape6 28s ease-in-out infinite;
}

.shape-8 {
    width: 100px;
    height: 100px;
    bottom: 70%;
    left: 85%;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    animation: floatShape4 22s ease-in-out infinite;
}

.shape-9 {
    width: 40px;
    height: 40px;
    top: 75%;
    right: 95%;
    background: rgba(255, 255, 255, 0.15);
    animation: floatShape5 16s ease-in-out infinite reverse;
}

@keyframes floatShape1 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-30px) translateX(20px) rotate(90deg); }
    50% { transform: translateY(-15px) translateX(-10px) rotate(180deg); }
    75% { transform: translateY(-40px) translateX(15px) rotate(270deg); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    33% { transform: translateY(25px) translateX(-20px) scale(1.1); }
    66% { transform: translateY(-20px) translateX(25px) scale(0.9); }
}

@keyframes floatShape3 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-25px) translateX(-30px) rotate(180deg); }
}

@keyframes floatShape4 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(20px) translateX(-15px) rotate(45deg); }
    50% { transform: translateY(-10px) translateX(30px) rotate(90deg); }
    75% { transform: translateY(15px) translateX(-20px) rotate(135deg); }
}

@keyframes floatShape5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(-35px) translateX(20px) scale(1.2); }
}

@keyframes floatShape6 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    33% { transform: translateY(-15px) translateX(10px) rotate(60deg); }
    66% { transform: translateY(10px) translateX(-25px) rotate(120deg); }
}



@keyframes pulse {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
    position: relative;
    margin-top: 5%;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.4s forwards;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    border-color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    margin-top: 2px;
    background: var(--gradient-elegant);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    position: relative;
}
.section-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: var(--gradient-elegant-count);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}
.section-title.white-title-div {
    background: #ffff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title.white-title-div::after {
    background: linear-gradient(135deg, #f8f9fa 20%, #ddd 50%, #00fff0 100%);
}
/* About Section */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
}

.about-content {
    display: grid;

    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    background: url('../images/team-2048x1412.webp') center/cover;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
    margin-top: 50px;
}

.about-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.2) 100%);
    transition: opacity 0.3s ease;
}

.about-image:hover::before {
    opacity: 0.7;
}

.about-image::after {

}

.about-text h3 {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #133857;
    font-weight: 500;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.skills {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.skill-tag {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.skill-tag:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Portfolio Section */
.portfolio {
    background: var(--bg-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

.portfolio-item {
    background: var(--bg-card);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.portfolio-item.animate {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-2xl);
}

.portfolio-image {
    width: 100%;
    height: 240px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.portfolio-item:nth-child(1) .portfolio-image {
    background-image: url('../images/retired-couple.webp');
}

.portfolio-item:nth-child(2) .portfolio-image {
    background-image: url('../images/adivisor.webp');
}

.portfolio-item:nth-child(3) .portfolio-image {
    background-image: url('../images/family-bank.webp');
}

.portfolio-item:nth-child(4) .portfolio-image {
    background-image: url('../images/biggy-bank.webp');
}

.portfolio-item:nth-child(5) .portfolio-image {
    background-image: url('../images/man-with-daughter.webp');
}

.portfolio-item:nth-child(6) .portfolio-image {
    background-image: url('../images/portfolio-website-girl.jpg');
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-image::before {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.4) 0%, rgba(139, 92, 246, 0.3) 100%);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h4 {
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #133857;
    font-weight: 600;
}

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

.portfolio-tech {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tech-tag {
    padding: 0.4rem 1rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--gradient-elegant-active);
    color: var(--text-light);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #3b4cb8 0%, #4a2c65 50%, #9c35a8 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.contact::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="contact-grid" width="8" height="8" patternUnits="userSpaceOnUse"><path d="M 8 0 L 0 0 0 8" fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
    animation: contactFloat 30s ease-in-out infinite;
    opacity: 0.6;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 25%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    animation: contactPulse 6s ease-in-out infinite alternate;
}

/* Contact Floating Shapes */
.contact-floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.contact-shape-1 {
    width: 70px;
    height: 70px;
    top: 15%;
    left: 8%;
    animation: contactFloatShape1 24s ease-in-out infinite;
}

.contact-shape-2 {
    width: 110px;
    height: 110px;
    top: 65%;
    right: 12%;
    background: rgba(255, 255, 255, 0.06);
    animation: contactFloatShape2 28s ease-in-out infinite reverse;
}

.contact-shape-3 {
    width: 55px;
    height: 55px;
    top: 25%;
    right: 30%;
    background: rgba(255, 255, 255, 0.1);
    animation: contactFloatShape3 20s ease-in-out infinite;
}

.contact-shape-4 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    left: 18%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    animation: contactFloatShape4 26s ease-in-out infinite;
}

.contact-shape-5 {
    width: 35px;
    height: 35px;
    top: 12%;
    right: 45%;
    background: rgba(255, 255, 255, 0.12);
    animation: contactFloatShape5 18s ease-in-out infinite reverse;
}

.contact-shape-6 {
    width: 130px;
    height: 130px;
    bottom: 12%;
    right: 8%;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 35px;
    animation: contactFloatShape6 32s ease-in-out infinite;
}

@keyframes contactFloatShape1 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-25px) translateX(15px) rotate(90deg); }
    50% { transform: translateY(-10px) translateX(-8px) rotate(180deg); }
    75% { transform: translateY(-35px) translateX(12px) rotate(270deg); }
}

@keyframes contactFloatShape2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    33% { transform: translateY(20px) translateX(-15px) scale(1.05); }
    66% { transform: translateY(-15px) translateX(20px) scale(0.95); }
}

@keyframes contactFloatShape3 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    50% { transform: translateY(-20px) translateX(-25px) rotate(180deg); }
}

@keyframes contactFloatShape4 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(15px) translateX(-12px) rotate(30deg); }
    50% { transform: translateY(-8px) translateX(25px) rotate(60deg); }
    75% { transform: translateY(12px) translateX(-18px) rotate(90deg); }
}

@keyframes contactFloatShape5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    50% { transform: translateY(-30px) translateX(15px) scale(1.15); }
}

@keyframes contactFloatShape6 {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    33% { transform: translateY(-12px) translateX(8px) rotate(45deg); }
    66% { transform: translateY(8px) translateX(-20px) rotate(90deg); }
}

@keyframes contactFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(0.5deg); }
    66% { transform: translateY(-10px) rotate(-0.5deg); }
}

@keyframes contactPulse {
    0% { opacity: 0.4; }
    100% { opacity: 0.7; }
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact .section-title {
    color: var(--text-light);
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

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

.form-group {
    display: grid;
    gap: 0.75rem;
    text-align: left;
}

.form-group label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    resize: vertical;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    padding: 1.2rem 3rem;
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .hero h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .subtitle {
        font-size: 1.1rem;
    }

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

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

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 5rem 0;
    }

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

    .about-text h3 {
        font-size: 2rem;
    }

    .skills {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

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

    .nav-container {
        padding: 0 1rem;
    }

    .container {
        padding: 0 1rem;
    }
}

ul{
    margin-bottom: 0px!important;
}

#scrollHint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 3;
}

#scrollHint span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    animation: scrollArrow 1.2s infinite;
}

#scrollHint span:nth-child(1) { animation-delay: 0s; }
#scrollHint span:nth-child(2) { animation-delay: 0.2s; }
#scrollHint span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollArrow {
    0% { transform: rotate(45deg) translate(0, 0); opacity: 0; }
    50% { transform: rotate(45deg) translate(5px, 5px); opacity: 1; }
    100% { transform: rotate(45deg) translate(10px, 10px); opacity: 0; }
}
/* Clients */

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;
    border-radius: 20px;
}

.logo-track {
    display: flex;
    width: calc(2 * 100%);
    animation: scroll 40s linear infinite;
}

.logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    margin: 0 25px;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s, background 0.3s;
}

.logo-card img {
    max-width: 100px;
    filter: grayscale(100%) brightness(200%);
    transition: all 0.3s;
}

.logo-card p {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #ccc;
}

.logo-card:hover {
    transform: translateY(-8px) scale(1.05);
    background:var(--gradient-elegant-active);
    box-shadow: 0 10px 25px rgba(106,0,244,0.5);
}

.logo-card:hover img {
    filter: grayscale(0%) brightness(100%);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
    .logo-card { min-width: 120px; margin: 0 15px; }
    .logo-card img { max-width: 80px; }
}

/* Testimonials */
#testimonials {
    background: var(--bg-primary);
}
.fancy-testimonials .testimonial {
    padding: 30px;
    border-radius: 12px;
    background: var(--gradient-elegant);
    box-shadow: 5px 5px 10px #4f107c;

    color: #ddd;
    transform: scale(0.9);
    opacity: 0.6;
    transition: all 0.5s ease-in-out;
}
.fancy-testimonials .owl-item.active.center .testimonial {
    transform: scale(1.05);
    opacity: 1;
    background: var(--gradient-elegant-count);
    color: white;
}

/* Testimonials */

#testimonials {
    background: var(--bg-primary);
}
.fancy-testimonials .testimonial {
    padding: 30px;
    border-radius: 12px;
    background: var(--gradient-elegant);
    box-shadow: 5px 5px 10px #4f107c;

    color: #ddd;
    transform: scale(0.9);
    opacity: 0.6;
    transition: all 0.5s ease-in-out;
}
.fancy-testimonials .owl-item.active.center .testimonial {
    transform: scale(1.05);
    opacity: 1;
    background: var(--gradient-elegant-count);
    color: white;
}

#testimonials .owl-stage{
    height: 200px;
}
#testimonials  .owl-item.active.center{
    margin-top: 10px;
}
#progress {

    background: var(--bg-primary);
    text-align: center;
}
.stat {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    background: var( --gradient-elegant-count);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
}
.tf-sl2.wd-review-job.thumb2 {
    margin-left: -21%;
    margin-right: -20%;
    margin-bottom: 0;
}
.wd-review-job.thumb2 {
    text-align: center;
    position: relative;
}
.wd-review-job.thumb2 img {
    max-width: 100%;
    height: auto;
}

.tf-sl2.wd-review-job.thumb2 .tes-box {
    top: 26.4%;
    left: 20.5%;
    animation: float 6s
    ease-in-out infinite;
}
.wd-review-job.thumb2 .tes-box {
    box-shadow: 0px 10px 40px rgba(47, 66, 96, 0.05);
    border-radius: 73px;
    padding: 12px;
    background: #fff;
    position: absolute;
    top: 37%;
    left: 6.5%;
}
.ani5 {
    -webkit-animation: ani5 7s infinite
    ease-in-out alternate;
    animation: ani5 7s infinite
    ease-in-out alternate;
}
.wd-review-job.thumb2 .icon1 {
    position: absolute;
    left: 18%;
    bottom: 0;
}
.ani3 {
    -webkit-animation: ani3 4s infinite
    ease-in-out alternate;
    animation: ani3 4s infinite
    ease-in-out alternate;
}
.tf-sl2.wd-review-job.thumb2 .icon2 {
    right: -33%;
    top: 18%;
}
.wd-review-job.thumb2 .icon2 {
    left: 23%;
    top: 56%;
}
.wd-review-job.thumb2 .icon2 {
    position: absolute;
    left: 25%;
    top: 32%;
}
.ani4 {
    -webkit-animation: ani4 7s infinite
    ease-in-out alternate;
    animation: ani4 7s infinite
    ease-in-out alternate;
}
.wd-review-job.thumb2 .icon3 {
    position: absolute;
    bottom: 10%;
    right: 18.5%;
}
.ani6 {
    -webkit-animation: ani6 7s infinite
    ease-in-out alternate;
    animation: ani6 7s infinite
    ease-in-out alternate;
}
.wd-review-job.thumb2 .tes-box .client-box {
    display: flex
;
    text-align: left;
}
.wd-review-job.thumb2 .tes-box .avt {
    position: relative;
    margin-right: 17px;
}
.wd-review-job.thumb2 .tes-box .avt img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
}
.wd-review-job.thumb2 .tes-box .avt .badge {
    width: 20px;
    height: 20px;
    background: #37b853;
    border: 2px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    bottom: -3px;
    right: -2px;
}
.badge:empty {
    display: none;
}
.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: .75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}
.tf-slider .content {
    position: relative;
    z-index: 1;
}
.subheading {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

.search-bar {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.search-bar input, .search-bar select {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    width: 220px;
    outline: none;
}

.search-bar button {
    padding: 10px 18px;
    background: #3a7cb2;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

.search-bar button:hover {
    background: #1d4ed8;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 18px 22px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.15s ease;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.job-info {
    max-width: 70%;
}

.job-title {
    font-size: 1.05rem;
    font-weight: bold;
    color: #136784;
    margin-bottom: 6px;
}

.job-location {
    font-size: 0.9rem;
    color: #555;
    display: flex;
    align-items: center;
}

.job-location::before {
    content: "📍";
    margin-right: 6px;
}

.apply-btn {
    background: #1f3a50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s ease;
}

.apply-btn:hover {
    background: #136684;
}


#Resources .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}
#Resources .fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Card hover + entry animation */
#Resources .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#Resources .card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
#Resources .animate-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease-out;
}
#Resources .animate-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Tweak list style */
#Resources .card ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
#Resources .resource-title {
    color: #136684;
    font-weight: 600;
}


@keyframes float-random {
    0%   { transform: translate(0px, 0px) rotate(0deg); }
    10%  { transform: translate(3px, -4px) rotate(1deg); }
    20%  { transform: translate(-5px, 2px) rotate(-0.5deg); }
    30%  { transform: translate(4px, 3px) rotate(0.8deg); }
    40%  { transform: translate(-3px, -5px) rotate(-1deg); }
    50%  { transform: translate(2px, 4px) rotate(0.3deg); }
    60%  { transform: translate(-4px, -2px) rotate(-0.7deg); }
    70%  { transform: translate(5px, 3px) rotate(1deg); }
    80%  { transform: translate(-2px, -3px) rotate(-0.5deg); }
    90%  { transform: translate(3px, 2px) rotate(0.6deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

.float-random {
    animation: float-random 10s ease-in-out infinite;
}

@keyframes float-random1 {
    0%   { transform: translate(0px, 0px) rotate(0deg); }
    10%  { transform: translate(3px, -4px) rotate(1deg); }
    20%  { transform: translate(-5px, 2px) rotate(-0.5deg); }
    30%  { transform: translate(4px, 3px) rotate(0.8deg); }
    40%  { transform: translate(-3px, -5px) rotate(-1deg); }
    50%  { transform: translate(2px, 4px) rotate(0.3deg); }
    60%  { transform: translate(-4px, -2px) rotate(-0.7deg); }
    70%  { transform: translate(5px, 3px) rotate(1deg); }
    80%  { transform: translate(-2px, -3px) rotate(-0.5deg); }
    90%  { transform: translate(3px, 2px) rotate(0.6deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

.float-random1 {
    animation: float-random 6s ease-in-out infinite;
}


@keyframes float-random2 {
    0%   { transform: translate(0px, 0px) rotate(0deg); }
    10%  { transform: translate(3px, -4px) rotate(1deg); }
    20%  { transform: translate(-5px, 2px) rotate(-0.5deg); }
    30%  { transform: translate(4px, 3px) rotate(0.8deg); }
    40%  { transform: translate(-3px, -5px) rotate(-1deg); }
    50%  { transform: translate(2px, 4px) rotate(0.3deg); }
    60%  { transform: translate(-4px, -2px) rotate(-0.7deg); }
    70%  { transform: translate(5px, 3px) rotate(1deg); }
    80%  { transform: translate(-2px, -3px) rotate(-0.5deg); }
    90%  { transform: translate(3px, 2px) rotate(0.6deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

.float-random2 {
    animation: float-random 8s ease-in-out infinite alternate;
}

/* UL LI Animation */
#Resources .animate-card ul li {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeSlideUp 0.6s ease forwards;
}

/* Keyframes for li animation */
@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggering effect (nth-child) */
#Resources .animate-card ul li:nth-child(1) {
    animation-delay: 0.2s;
}
#Resources .animate-card ul li:nth-child(2) {
    animation-delay: 0.4s;
}
#Resources .animate-card ul li:nth-child(3) {
    animation-delay: 0.6s;
}
#Resources .animate-card ul li:nth-child(4) {
    animation-delay: 0.8s;
}
#Resources .animate-card ul li:nth-child(5) {
    animation-delay: 1s;
}

#Resources .animate-card ul li:hover {
    color: #136684;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* UL & LI Base */
#Resources .animate-card ul {
    padding-left: 0;
    margin-top: 1rem;
}

#Resources .animate-card ul li {
    list-style: none;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    opacity: 0;
    transform: translateY(15px);
    animation: fadeSlideUp 0.6s ease forwards;
}

/* Custom check icon */
#Resources .animate-card ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
    color: #136684;
    font-weight: bold;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect */
#Resources .animate-card ul li:hover {
    color: #136684;
    transform: translateX(8px);
    transition: all 0.3s ease;
}

#Resources .animate-card ul li:hover::before {
    transform: scale(1.3);
    color: #0d4a59;
}

/* Animation keyframes */
@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger effect */
#Resources .animate-card ul li:nth-child(1) { animation-delay: 0.2s; }
#Resources  .animate-card ul li:nth-child(2) { animation-delay: 0.4s; }
#Resources  .animate-card ul li:nth-child(3) { animation-delay: 0.6s; }
#Resources .animate-card ul li:nth-child(4) { animation-delay: 0.8s; }
#Resources .animate-card ul li:nth-child(5) { animation-delay: 1s; }

.hero-section-1,.hero-section-2{
    width: 50%;
}
.hero-image-section{
    position: relative;
    top: 55px;
}

.progress-text{
    font-size: 22px;
    color: #146c8a;
    font-weight: 700;
}
.hero-title-section{
    padding: 0 25px;
}


@media (max-width: 988px) {
    .hero-content{
        top: 120px;
    }
    .hero-title-section{
        padding: 0 20px;
    }
    .hero-image-section{
        position: relative;
        top: -72px;
        scale: 0.5;
    }
}

/* FOOTER BASE */
.footer {
    background: #111;
    color: #fff;
    padding: 60px 20px 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.footer a {
    color: #1da6c0;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer a:hover {
    color: #00fff0;
    transform: translateY(-3px);
}

/* FLEX CONTAINER */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
}

/* LEFT COLUMN */
.footer-left {
    flex: 1 1 300px;
    animation: fadeInLeft 1s ease forwards;
}

.footer-left .footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #1da6c0);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); /* moves up */
    }
    100% {
        transform: translateY(0); /* back down */
    }
}

.footer-left p {
    font-size: 14px;
    line-height: 1.8;
    color: #ddd;
}

/* MIDDLE COLUMN */
.footer-middle {
    display: flex;
    flex: 1 1 300px;
    gap: 50px;
    animation: fadeInUp 1.2s ease forwards;
}

.footer-middle h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #1da6c0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-middle ul {
    list-style: none;
    padding: 0;
}

.footer-middle ul li {
    margin-bottom: 10px;
}

.footer-middle ul li a:hover {
    color: #00fff0;
}

/* RIGHT COLUMN */
.footer-right {
    flex: 1 1 300px;
    animation: fadeInRight 1s ease forwards;
}

.footer-right h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #1da6c0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-right p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 10px 15px;
    border-radius: 30px;
    border: none;
    outline: none;
    background: #222;
    color: #fff;
    transition: box-shadow 0.3s ease;
}
.newsletter-form input[type="email"]:focus {
    box-shadow: 0 0 8px #1da6c0;
}

.newsletter-form button, .meet-and-greet-div {
    padding: 10px 25px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(45deg, #1da6c0, #00fff0);
    color: #111;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.newsletter-form button:hover, .meet-and-greet-div:hover{
    transform: translateY(-3px);
    box-shadow: 0 5px 15px #00fff0;
}
.meet-and-greet-div{
    text-align: center;
}

/* SOCIAL ICONS */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    align-items: center;
}
.social-icons a img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.social-icons a img:hover {
    transform: scale(1.2);
    filter: brightness(1.5);
}

/* FOOTER BOTTOM */
.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    justify-content: center;
}
.footer-bottom a:hover {
    color: #00fff0;
}




@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
    }
    .footer-middle {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.cool-tagline {
    font-size: 14px;
    color: #1da6c0;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.cool-tagline span {
    color: #00fff0;
    background: #111;
    padding: 2px 8px;
    border-radius: 20px;
    box-shadow: 0 0 10px #00fff0, 0 0 20px #1da6c0;
    transition: 0.3s;
}

.cool-tagline span:hover {
    background: #1da6c0;
    color: #111;
    box-shadow: 0 0 15px #00fff0, 0 0 30px #1da6c0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reset and Base */
/* Logo */
.logo-section {
    margin-bottom: 10px;
}

.logo {
    font-size: 1.2rem;
    color: #fff;
    background-color: #007b83;
    padding: 10px;
    border-radius: 12px;
}

.logo .gfi {
    font-weight: bold;
}

.logo .highlight {
    font-weight: bold;
    color: #aee6e4;
}

/* Tagline */
.tagline {
    font-size: 1rem;
    margin: 15px 0;
    color: #444;
}

.bold {
    font-weight: bold;
    color: #007b83;
}

/* Stats Card */
.stats-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stats-card h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #444;
}

.counter {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    margin: 10px 0;
    transition: all 0.3s ease;
}

.new-associates {
    font-size: 1.3rem;
    color: #007b83;
    font-weight: bold;
    margin-bottom: 10px;
}

.description {
    font-size: 0.9rem;
    color: #555;
}

.flag {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    font-size: 0.9rem;
    color: #777;
}

/*==== DHRUV ===*/

.impact-section {
    background: linear-gradient(135deg, #2aa0c4, #0c9490, #076069);
    background-size: 300% 300%;
    animation: gradientMove 12s ease infinite;
    padding: 50px;
    color: #fff;
    text-align: center;
    margin-top: 30px;
    border-radius: 40px;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease forwards;
}

.section-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: #ffe082;
    animation: fadeInUp 1.2s ease forwards;
}

/* Grid for Boxes */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Box Styling */
.impact-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.impact-box p {
    line-height: 1.8;
    font-size: 1rem;
}

/* Hover effect */
.impact-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.8);
    background: rgba(255, 255, 255, 0.15);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Scroll animation active */
.scroll-animate.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 0.8s ease;
}

/*!* =======================*/
/*   SECTION TITLES*/
/*======================= *!*/
.gfi-section {
    padding: 20px 15px;
    background: linear-gradient(135deg, #141e30, #243b55);
    color: #fff;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
    margin-top: 35px;
}

/* Floating Shapes */
.gfi-section::before,
.gfi-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 10s infinite ease-in-out alternate;
}
.gfi-section::before { top: 10%; left: 15%; }
.gfi-section::after { bottom: 15%; right: 20%; animation-duration: 12s; }

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    perspective: 1000px;
}
.stat-card h3 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #00eaff;
}
.stat-card:hover {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Description Text */
.description {
    max-width: 900px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(50px) blur(5px);
    transition: all 1s ease;
}
.description.show {
    opacity: 1;
    transform: translateY(0) blur(0);
}

/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s ease;
}
.scroll-animate.show {
    opacity: 1;
    transform: translateY(0);
}



/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Stat Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}
.stat-card h3 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #00eaff;
    font-weight: bold;
}
.stat-card p {
    font-size: 16px;
    color: #ddd;
}
.stat-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,234,255,0.2), transparent 70%);
    transform: rotate(45deg);
    transition: opacity 0.5s;
    opacity: 0;
}
.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 234, 255, 0.3);
}
.stat-card:hover::after {
    opacity: 1;
}

/* Scroll Animation */
.scroll-animate {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: all 1s ease;
}
.scroll-animate.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}


/* ==== 3 ==== */

.gfi-records-2 {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(120deg, #1a1a2e, #0b5863, #3ecac1);
    color: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    border-radius: 30px;
    overflow: hidden;
}

/* Gradient Animation */
.gfi-records-2::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
            from 0deg,
            #00dbde,
            #fc00ff,
            #00dbde,
            #3ecac1,
            #00dbde
    );
    animation: rotateBg 12s linear infinite;
    z-index: 0;
    opacity: 0.15;
}

@keyframes rotateBg {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating particles */
.gfi-records-2::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.3) 2px, transparent 2px);
    background-size: 40px 40px;
    animation: moveDots 6s linear infinite;
    z-index: 1;
    opacity: 0.25;
}

@keyframes moveDots {
    from { background-position: 0 0; }
    to { background-position: 40px 40px; }
}

/* Ensure content stays on top */
.gfi-records-2 > * {
    position: relative;
    z-index: 2;
}

/* Gradient shimmer heading */
.highlight-title {
    font-weight: bold;
    background: linear-gradient(90deg, #36b364, #a255a38f, #00dbde);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s infinite linear;
    margin-bottom: 15px;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}




/* Floating glow effect */
@keyframes floatUp {
    0% { transform: translateY(0px); box-shadow: 0 5px 15px rgba(0,0,0,0.3); }
    100% { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.6); }
}

.record-box:hover {
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Shine Effect on Numbers */
.odometer2 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #00f7ff;
    display: inline-block;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.odometer2::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.7), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Paragraph Animation */
.fade-line {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    animation: fadeSlide 1s forwards;
}

.fade-line:nth-child(1) { animation-delay: 0.5s; }
.fade-line:nth-child(2) { animation-delay: 1s; }
.fade-line:nth-child(3) { animation-delay: 1.5s; }
.fade-line:nth-child(4) { animation-delay: 2s; }
.fade-line:nth-child(5) { animation-delay: 2.5s; }

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

.highlight-box {
    box-shadow: 0px 10px 40px rgba(47, 66, 96, 0.05);
    border-radius: 23px;
    padding: 10px;
    background: #fff;
    scale: 0.5;
    color: black;
}

.highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

p.subtitle.extra-title {
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(90deg, #6bffde, #f0555d, #38c3a3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #00000000;
    background-size: 200% auto;
    text-shadow: 0 0 8px rgb(29 166 192 / 23%);

}

/* Shimmer / Shine animation */
@keyframes shine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.Growing-count{

    background: #06e1da;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* General Styling */
.payouts-section {
    background: linear-gradient(135deg, #0b132b, #1c2541);
    color: #ffffff;
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: bold;
    color: #00f7ff;
    margin-bottom: 50px;
    position: relative;
    margin-top: 50px;
}

.animated-title {
    animation: slideDown 1s ease forwards;
    opacity: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.15);
}

.stat-card h3 {
    font-size: 2.4rem;
    color: #00f7ff;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1rem;
    color: #ddd;
}

.description {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cdd9e5;
}

.description p {
    margin-bottom: 20px;
}

.mission-text {
    color: #00f7ff;
    font-weight: bold;
}

/* Fade & Slide Animations */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }


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

/* Counter Animation */
.counter {
    counter-reset: count 0;
}


/* Section background with animated gradient */
.empowered-section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #005667 10%, #4a8a9f 45%, #030303db 100%);
    overflow: hidden;
    color: #fff;
}

.empowered-section .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at top, rgba(255,255,255,0.05), transparent 70%),
    radial-gradient(circle at bottom, rgba(19,104,132,0.25), transparent 70%);
    animation: floatBG 12s ease-in-out infinite alternate;
    z-index: 0;
}

/* Title */

.slogan {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 600;
    text-transform: uppercase;
    color: #ffffff;                /* clean white */
    letter-spacing: 1.5px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;

    /* subtle glow for depth */
    text-shadow: 0 0 8px rgba(13,202,240,0.6),
    0 0 16px rgba(19,56,87,0.8);
}

.record-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px 0;
    transition: all 0.4s ease;
    animation: floatUp 3s ease-in-out infinite alternate, zoomIn 1s ease both;
    overflow: hidden;
}

.record-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(13,202,240,0.4);
}

.record-box span {
    font-size: 2rem;
    font-weight: 800;
    color: #0dcaf0;
}

.record-box p {
    margin-top: 10px;
    color: #fff;
    font-size: 1rem;
}

/* Description */
.desc2 {
    margin-top: 40px;
    font-size: 1.2rem;
    line-height: 1.8;
    z-index: 1;
    position: relative;
}

.desc2 .highlight {
    color: #0dcaf0;
    font-weight: 700;
}

/* Background animations */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatBG {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Montserrat:wght@400;700&display=swap');

#industry .tagline {
    font-weight: 600;
    font-size: 1.3rem;
    color: #d0c1f7;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 0 10px #d0c1f7bb;
}

/* Infinite Slider Container */
#industry .infinite-slider-wrapper {
    overflow: hidden;
    backdrop-filter: blur(18px);
    /*border: 1px solid rgb(42 88 139 / 63%);*/
    cursor: pointer;
    user-select: none;
    position: relative;
    font-family: 'Montserrat', sans-serif;
    color: #e0e0f0;
    display: flex;
    align-items: center;
    justify-content: center;

}
section#industry{
    background: linear-gradient(135deg, #133857, #0f0f4d);
    padding: 40px 0px;
    margin-top: 100px;
    box-shadow: 0 0 20px rgb(66 203 197 / 48%);
}

.industry-slider{
    margin-bottom: 50px;
}

    /* Infinite Slider - flex, wide enough for cards duplicated */
#industry .infinite-slider {
    display: flex;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
}

#industry .infinite-slider-wrapper:hover .infinite-slider {
    animation-play-state: paused;
}

/* Cards */
#industry .card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 28px 32px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 18px rgb(25 228 234 / 39%);
    border: rgb(168 224 226 / 35%);
    min-width: 320px;
    margin: 20px;
    color: #f0e6ff;
    cursor: default;
    user-select: none;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect with smoother lift only */
#industry .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px #00fff069, 0 0 25px #30c0afcc;
}

/* Card heading */
#industry .card h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #00fff0;
    margin-bottom: 22px;
    text-shadow: 0 0 8px #00fff07a;
    letter-spacing: 0.02em;
}

/* List style */
#industry .card ul {
    list-style: none;
    padding-left: 0;
}

#industry .card ul li {
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6;
    position: relative;
    padding-left: 34px;
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

/* Checkmark icons using SVG background */
#industry .card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 22px;
    height: 22px;
    background: url('data:image/svg+xml;utf8,<svg fill="%2300feef" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9 16.2l-3.5-3.5-1.4 1.4L9 19 20.5 7.5 19.1 6z"/></svg>') no-repeat center center;
    background-size: contain;
    filter: drop-shadow(0 0 2px #00feef);
}

/* Highlight numeric text */
#industry .highlight {
    font-weight: 700;
    font-size: 1.2rem;
    color: #00feef;
    margin-right: 8px;
    text-shadow: 0 0 5px #2c2b658c;
}


@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

#industry header {
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

#industry header h1 {
    font-weight: 700;
    font-size: 3rem;
    color: #ff6fd8;
    text-shadow: 0 0 15px #ff6fd8cc;
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 720px) {
    #industry .container {
        padding: 30px 25px;
    }
}


.text_list_section .down_fix {
    transform: rotate(-5deg);
    position: relative;
    bottom: -30px;
    z-index: 9;
}
.title_badge {
    color: #ffff;
    display: inline-block;
    padding: 2px 20px;
    border-radius: 100px;
    background-color: #d5242b;
    margin-bottom: 10px;
}

.row_am {
    padding: 50px 0;
}
.text_list_section .down_fix::after {
    content: "";
    position: absolute;
    right: 0;
    top: -10px;
    width: 22px;
    height: 22px;
    background-image: url(../images/bigstar.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.text_block .mark_star {
    margin: 0 60px;
    font-family: 'Playball', cursive;
}
.text_block span {
    color: #ffffff;
    font-size: 29px;
    font-family: var(--font-bebas);
    font-weight: 700;
    line-height: 1;
}
.text_list_section .slider_block {
    background-color: #133857;
    padding: 20px 0;
    transform: rotate(-1.5deg);
    /* pointer-events: none; */
    width: 100%;
    overflow-x: hidden;
}

.new-text{
    text-align: center;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    margin-top: 2px;
    background: linear-gradient(135deg, #253a4c 0%, #133857 30%, #174f5a5e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    position: relative;
}
.new-text{

}