/* Base Styles */
:root {
    --primary-color: #6c63ff;
    --secondary-color: #4a45b1;
    --accent-color: #ff6b6b;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --gray-bg: #f0f2f5;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 100px 0;
    position: relative;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 20px;
    position: relative;
}

.underline:before {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: var(--accent-color);
    left: -20px;
    bottom: 0;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Header Styles */
/* Ensure header is always visible */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    background: rgba(26, 26, 46, 0.98);
}

/* Add padding to body to prevent content from being hidden behind fixed header */
body {
    padding-top: 80px; /* Adjust this value based on your header height */
}

/* Adjust hero section to account for the fixed header */
.hero {
    margin-top: -80px; /* Same as body padding-top */
    padding-top: 80px;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-bg);
    color: var(--light-text);
}

.logo span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
    color: var(--light-text);
}

nav ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:before {
    width: 100%;
}

/* Hamburger Menu Styling for Main Site */
.main-hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.main-hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.main-mobile-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    margin-top: 10px;
}

.main-hamburger.active .main-mobile-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-mobile-menu ul li {
    margin: 0;
    padding: 0;
    margin-bottom: 1.5rem; /* Increased spacing between menu items */
}

.main-mobile-menu ul li:last-child {
    margin-bottom: 0;
}

.main-mobile-menu ul li a {
    display: block;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin-bottom: 3px;
}

.main-mobile-menu ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #4a63e7;
}

/* Mobile navigation styles for main site */
@media (max-width: 991px) {
    .main-hamburger {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(26, 26, 46, 0.95);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        z-index: 999;
        padding: 100px 20px 20px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav ul li {
        margin: 10px 0;
        width: 100%;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }
    
    .main-hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .main-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .main-hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* Mobile and Tablet navigation styles */
@media (max-width: 1024px) {
    .main-hamburger {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(26, 26, 46, 0.95);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        z-index: 999;
        padding: 100px 20px 20px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        display: none; /* Hide the main nav items by default on mobile/tablet */
    }
    
    .main-nav ul li {
        margin: 10px 0;
        width: 100%;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 10px 0;
        font-size: 1.1rem;
    }
    
    .main-hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .main-hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .main-hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Tablet-specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .main-hamburger span {
        width: 30px;
        height: 3px;
    }
    
    .main-nav {
        max-width: 350px;
    }
    
    .main-nav ul li a {
        font-size: 1.2rem;
        padding: 12px 0;
    }
}

/* Hero Section */
/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--light-text);
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero-content h1 span:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background-color: rgba(108, 99, 255, 0.3);
    bottom: 5px;
    left: 0;
    z-index: -1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--light-text);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 100%;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.image-container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 500%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom right, rgba(108, 99, 255, 0.2), rgba(255, 107, 107, 0.2));
    z-index: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about .section-header h2,
.about .section-header p,
.about-text h3,
.about-text p,
.stat-item h4,
.stat-item p {
    color: var(--light-text);
}

/* Services Section - Expert Level Design */
.services {
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.services .section-header h2,
.services .section-header p {
    color: var(--light-text);
}

.services .section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #6c63ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.services .section-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Enhanced Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

/* Premium Service Item Design */
.service-item {
    position: relative;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(26, 26, 46, 0.7));
    border-radius: 24px;
    padding: 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 30px;
    align-items: flex-start;
    min-height: 200px;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(255, 107, 107, 0.05));
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 24px;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(108, 99, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Service Background Animation */
.service-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(108, 99, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.service-item:hover .service-background {
    transform: translateX(100%);
}

/* Enhanced Service Icon */
.service-icon {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(255, 107, 107, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.service-item:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.3), rgba(255, 107, 107, 0.3));
}

.icon-wrapper i {
    font-size: 36px;
    background: linear-gradient(135deg, #6c63ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover .icon-glow {
    opacity: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Enhanced Service Content */
.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

/* Service Features */
.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-item i {
    color: #48bb78;
    font-size: 12px;
    width: 16px;
    height: 16px;
    background: rgba(72, 187, 120, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Enhanced Service Tags */
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.service-tag {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(255, 107, 107, 0.2));
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-tag:hover {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.3), rgba(255, 107, 107, 0.3));
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Service Number */
.service-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    align-self: flex-start;
    line-height: 1;
    transition: all 0.4s ease;
}

.service-item:hover .service-number {
    background: linear-gradient(135deg, #6c63ff, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}



/* Responsive Design */
@media (max-width: 1024px) {
    .service-item {
        grid-template-columns: 80px 1fr;
        gap: 25px;
        padding: 35px;
    }
    
    .service-number {
        grid-column: 1 / -1;
        justify-self: end;
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .services .section-header h2 {
        font-size: 2.5rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 25px;
        gap: 20px;
    }
    
    .service-icon {
        margin: 0 auto;
    }
    
    .service-content {
        text-align: center;
    }
    
    .service-features {
        align-items: center;
    }
    
    .service-tags {
        justify-content: center;
    }
    
    .service-number {
        margin: 0 auto;
        font-size: 2.5rem;
    }
    

}

@media (max-width: 480px) {
    .service-item {
        padding: 25px 20px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
    }
}

/* Animation Delays for Staggered Effect */
.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }

/* Fade-in animation styles */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add staggered delay for service items */
.service-item:nth-child(1) {
    transition-delay: 0.1s;
}

.service-item:nth-child(2) {
    transition-delay: 0.2s;
}

.service-item:nth-child(3) {
    transition-delay: 0.3s;
}

.service-item:nth-child(4) {
    transition-delay: 0.4s;
}

.service-item:nth-child(5) {
    transition-delay: 0.5s;
}

.service-item:nth-child(6) {
    transition-delay: 0.6s;
}

/* Work Section */
.work-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    margin: 0 5px 10px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--light-text);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.work-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 300px; /* Fixed height for uniformity */
    display: flex;
    flex-direction: column;
}

.work-image {
    position: relative;
    overflow: hidden;
    height: 100%; /* Take full height of container */
    flex: 1;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images cover the entire area uniformly */
    transition: transform 0.5s ease;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 46, 0.6), rgba(26, 26, 46, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.work-info {
    text-align: center;
    padding: 0 20px;
    transform: translateY(20px);
    transition: var(--transition);
    width: 100%;
}

.work-info h3 {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.work-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.btn-view {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
}

.btn-view:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--light-text);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn-view:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-item:hover .work-info {
    transform: translateY(0);
}

.work-item:hover .work-image img {
    transform: scale(1.1);
}

.work .section-header h2,
.work .section-header p {
    color: var(--light-text);
}

/* Process Section */
.process {
    
    color: var(--light-text);
}

.process .section-header h2,
.process .section-header p {
    color: var(--light-text);
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline:before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    width: 45%;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Enhanced Team Section Styles */
.team {
  padding: 120px 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  opacity: 0.3;
}

.team .container {
  position: relative;
  z-index: 2;
}

.team .section-header h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Founder Section Enhanced */
.founder-section {
  margin-bottom: 60px;
}

.founder-card {
  display: flex;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.3);
}

.founder-image {
  flex: 0 0 200px;
  margin-right: 30px;
}

.founder-image .image-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
}

.founder-image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.image-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

.expertise-badge {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1e3c72;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.founder-info {
  flex: 1;
}

.founder-header h3 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  background: linear-gradient(45deg, #ffffff, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.founder-credentials .title {
  font-size: 1.1rem;
  color: #ffd700;
  font-weight: 600;
}

.founder-credentials .experience {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.founder-expertise {
  margin-bottom: 20px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expertise-tags .tag {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.expertise-tags .tag:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

.founder-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.founder-achievements {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.achievement {
  text-align: center;
}

.achievement .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 4px;
}

.achievement .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.founder-social {
  display: flex;
  gap: 12px;
}

.founder-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

.founder-social a:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-3px);
}

/* Senior Team Header */
.senior-team-header {
  text-align: center;
  margin-bottom: 60px;
}

.senior-team-header h3 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffd700;
  font-weight: 600;
}

.senior-team-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Enhanced Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
  justify-items: center;
}

.expert-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 25px 20px;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto;
}

.expert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.expert-card:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.member-image .image-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
}

.member-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 215, 0, 0.3);
}

.expertise-indicator {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3c72;
  font-size: 0.7rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.member-info {
  text-align: center;
}

.member-info h4 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: white;
  font-weight: 600;
}

.member-role {
  font-size: 1rem;
  color: #ffd700;
  margin-bottom: 12px;
  font-weight: 600;
}

.member-credentials {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 15px;
}

.member-credentials .degree {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.member-credentials .experience {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.expertise-areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 15px;
}

.expertise-areas .expertise {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.member-description {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.member-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
}

.member-social a:hover {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
}

/* Team Stats Section */
.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.stat-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3c72;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.stat-content .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 5px;
}

.stat-content .stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.team .section-header h2,
.team .section-header p {
    color: var(--light-text);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .team {
    padding: 80px 0;
  }
  
  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .founder-image {
    margin-right: 0;
    margin-bottom: 30px;
    flex: none;
  }
  
  .founder-image .image-wrapper {
    width: 200px;
    height: 200px;
  }
  
  .founder-header h3 {
    font-size: 2.5rem;
  }
  
  .founder-achievements {
    justify-content: center;
    gap: 20px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .expert-card {
    padding: 20px 15px;
    max-width: 280px;
  }
  
  .member-image .image-wrapper {
    width: 80px;
    height: 80px;
  }
  
  .member-info h4 {
    font-size: 1.2rem;
  }
  
  .member-role {
    font-size: 0.9rem;
  }
  
  .member-description {
    font-size: 0.85rem;
  }
  
  .team-stats {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .expertise-indicator {
    width: 20px;
    height: 20px;
    font-size: 0.6rem;
  }
  
  .founder-social a {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
  
  .member-social a {
    width: 28px;
    height: 28px;
    font-size: 0.7rem;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .expert-card {
    max-width: 260px;
    padding: 18px 12px;
  }
  
  .member-stats {
    gap: 15px;
  }
  
  .stat-number {
    font-size: 1.1rem;
  }
}

/* Blog Section */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background-color: var(--light-text);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

/* Blog Section */
.blog .section-header h2,
.blog .section-header p {
    color: var(--light-text);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-meta span {
    color: #777;
}

.blog-meta .category {
    color: var(--primary-color);
    font-weight: 500;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    font-weight: 500;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 10px;
}

.blog-cta {
    text-align: center;
}

/* Contact Section */
.contact {
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.info-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-text p {
    color: #666;
}

.contact-info .social-links {
    margin-top: 20px;
    justify-content: flex-start;
}

.contact-form {
    background-color: var(--light-text);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact .section-header h2,
.contact .section-header p,
.info-text h3,
.info-text p {
    color: var(--light-text);
}
/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary-color);
}
.footer-logo-image {
    max-width: 385px;
    height: auto;
}
.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}
/* ... existing styles ... */

/* Form success message */
.form-success {
    display: none;
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}

.form-success.visible {
    display: block;
}

/* ... existing styles ... */
.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-text {
    animation: fadeIn 1s ease-out;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .timeline-content {
        width: 40%;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-text);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        align-items: center;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .work-item {
        height: 250px; /* Slightly smaller on mobile */
    }
    
    .work-info h3 {
        font-size: 1.3rem;
    }
    
    .work-info p {
        font-size: 0.9rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start;
        padding-left: 80px;
    }
    
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
    }
    
    .timeline-number {
        left: 30px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .work-item {
        height: 220px;
    }
    
    .work-info h3 {
        font-size: 1.2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Add these styles to the end of your CSS file */

/* Header scroll effects */
/* Header scroll effects */
header.scrolled {
    padding: 15px 0;
    background-color: transparent;
    box-shadow: none;
}

header.header-hidden {
    transform: translateY(-100%);
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations for grid items */
.services-grid .service-card:nth-child(2),
.work-grid .work-item:nth-child(2),
.team-grid .team-member:nth-child(2),
.blog-grid .blog-card:nth-child(2) {
    transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(3),
.work-grid .work-item:nth-child(3),
.team-grid .team-member:nth-child(3),
.blog-grid .blog-card:nth-child(3) {
    transition-delay: 0.4s;
}

.services-grid .service-card:nth-child(4),
.work-grid .work-item:nth-child(4) {
    transition-delay: 0.6s;
}

.services-grid .service-card:nth-child(5),
.work-grid .work-item:nth-child(5) {
    transition-delay: 0.8s;
}

.services-grid .service-card:nth-child(6),
.work-grid .work-item:nth-child(6) {
    transition-delay: 1s;
}

/* Timeline animation */
.timeline-item {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item:nth-child(even) {
    transform: translateX(50px);
}

.timeline-item.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* Enhance animated background */
.animated-background {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* Project Details Styling */
/* Project Details Styling */
.project-details {
    margin-top: 3rem;
}

.project-detail {
    background-color: rgba(26, 26, 46, 0.7);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    display: none;
    color: var(--light-text);
}

.project-detail h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-detail p {
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.project-detail ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--light-text);
}

.project-detail li {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.project-video {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.project-video video {
    width: 100%;
    display: block;
}

/* Show project details when clicking on view project button */
.project-detail.active {
    display: block;
}

/* Hidden blogs styling */
.hidden-blog {
    display: none;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hidden-blog.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}
/* Enhanced Social Links Styling */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.social-links a:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
}

.social-links a:hover:before {
  left: 100%;
}

/* Instagram specific styling */
.social-links a[href*="instagram"] {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3);
}

.social-links a[href*="instagram"]:hover {
  box-shadow: 0 8px 25px rgba(131, 58, 180, 0.5);
}

/* LinkedIn specific styling */
.social-links a[href*="linkedin"] {
  background: linear-gradient(135deg, #0077b5, #005885);
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.3);
}

.social-links a[href*="linkedin"]:hover {
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.5);
}

/* Contact info social links specific positioning */
.contact-info .social-links {
  margin-top: 20px;
  justify-content: flex-start;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-links {
    justify-content: center;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px; /* Adjust this value to your preferred logo height */
    width: auto; /* Maintains aspect ratio */
    margin-right: 15px; /* Space between logo and text */
}

/* Ensure the text part doesn't shrink */
.logo h1 {
    white-space: nowrap;
}

/* Responsive adjustments for the logo */
@media (max-width: 768px) {
    .logo-image {
        height: 40px; /* Smaller logo on mobile devices */
    }
}