/* Modern CSS Variables */
:root {
    /* Colors */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #f97316;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #94a3b8;
    --gray-light: #1e293b;
    --success: #22c55e;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-accent: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --white: #ffffff;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    transition: var(--transition);
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: black !important;
}

.nav-link.active::after {
    width: 100%;
    background: var(--gradient-primary);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Buttons */
.btn {
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 0;
    background: 
  linear-gradient(135deg, #0f172a 0%, #1e293b 100%),
  url('./images/23.jpg') no-repeat center center;
background-size: cover;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/pattern.png') repeat;
    opacity: 0.05;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.hero-badge-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.hero-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #60a5fa 100%);
    border-radius: 50px;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
}

.hero-badge i {
    color: var(--primary-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.hero-stats .stat-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.hero-buttons .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-image-wrapper {
    position: relative;
    padding: 2rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.floating-card span {
    font-weight: 500;
    font-size: 0.9rem;
}

.card-1 {
    top: 10%;
    right: 0;
    animation: float-card-1 4s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    left: 0;
    animation: float-card-2 5s ease-in-out infinite;
}

.card-3 {
    bottom: 10%;
    right: 10%;
    animation: float-card-3 4.5s ease-in-out infinite;
}

@keyframes float-card-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-10px, -10px) rotate(2deg);
    }
}

@keyframes float-card-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(10px, -10px) rotate(-2deg);
    }
}

@keyframes float-card-3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-10px, 10px) rotate(2deg);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 2rem;
    }
    
    .hero-image-wrapper {
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-banner {
        padding: 100px 0 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .floating-card {
        display: none;
    }
}

/* Section Styles */
.section-padding {
    padding: 2rem 0;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    color: #6b7280;
    margin-bottom: 3rem;
}

/* Services Section */
#services {
    position: relative;
    padding: 100px 0;
    background: var(--light-bg);
}

#services .carousel {
    padding: 20px 0;
}

#services .carousel-inner {
    padding: 20px 0;
}

#services .carousel-controls {
    position: relative;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#services .carousel-control-prev,
#services .carousel-control-next {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 1;
    margin: 0;
}

#services .carousel-control-prev:hover,
#services .carousel-control-next:hover {
    background: var(--secondary-color);
}

#services .carousel-control-prev-icon,
#services .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    transform: rotateY(180deg);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Work Cards */
.work-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--gray-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.work-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.work-card:hover .work-image img {
    transform: scale(1.1);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.9));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.work-card:hover .work-overlay {
    opacity: 1;
}

.work-category {
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    align-self: flex-start;
}

.work-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.work-actions .work-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.work-actions .work-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.work-content {
    padding: 1.5rem;
    background: var(--gray-light);
}

.work-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--light);
}

.work-content p {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
}

.work-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.work-tech span {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Project Modal */
.modal-content {
    background: var(--gray-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.modal-title {
    color: var(--light);
    font-weight: 600;
}

.btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body {
    padding: 1.5rem;
}

.modal-body h6 {
    color: var(--light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-body p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.project-details {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    color: var(--gray);
    font-weight: 500;
}

.detail-value {
    color: var(--light);
    font-weight: 600;
}

/* Section Background */
.bg-light {
    background: var(--dark) !important;
    position: relative;
    overflow: hidden;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: 0;
}

/* About Section */
.about-content {
    padding-right: 2rem;
}

.about-stats {
    margin-top: 2rem;
}

.stat-card {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-info p {
    color: var(--gray);
    margin: 0;
    font-size: 0.875rem;
}

.about-text {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 2rem 0;
}

.about-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--gray-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: var(--transition);
}

.feature:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature:hover .feature-icon {
    background: var(--gradient-accent);
    transform: rotateY(180deg);
}

.feature-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.feature-content p {
    color: var(--gray);
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.experience-badge .text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
}

.about-shape {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 991.98px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .about-image-wrapper {
        margin-bottom: 2rem;
    }
    
    .experience-badge {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .stat-card {
        padding: 1rem;
    }
    
    .feature {
        padding: 1rem;
    }
    
    .about-shape {
        display: none;
    }
}

/* Contact Form */
.contact-card {
    background: var(--gray-light);
    padding: 3.5rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.form-control {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: var(--transition);
    font-size: 1rem;
    background: var(--dark);
    color: var(--light);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--light-bg);
    color: white;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.footer-brand h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 1.25rem;
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--gray);
}

.contact-info i {
    color: var(--secondary);
    font-size: 1.25rem;
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 4rem 0;
}

.copyright {
    color: var(--gray);
    font-weight: 500;
}

.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-bottom-links a:hover {
    color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .contact-card {
        padding: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
    border: 3px solid var(--gray-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Navigation Active State */
.nav-link.active {
    color: var(--secondary);
}

.nav-link.active::after {
    background: var(--gradient-accent);
}

/* Content Card Styles */
.content-card {
    background: var(--gray-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.content-card h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-card h2 {
    font-size: 1.5rem;
    color: var(--light);
    margin: 2rem 0 1rem;
    position: relative;
    padding-left: 1rem;
}

.content-card h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.policy-section ul li {
    color: var(--gray);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.policy-section ul li::before {
    content: '•';
    color: var(--secondary);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.policy-section ul li:hover {
    color: var(--light);
    transform: translateX(5px);
    transition: var(--transition);
}

.content-card h3 {
    color: #fff;
}

/* Footer Update */
.footer {
    margin-top: 4rem;
}

/* Responsive Design for Content Pages */
@media (max-width: 767.98px) {
    .content-card {
        padding: 2rem;
    }
    
    .content-card h1 {
        font-size: 2rem;
    }
    
    .content-card h2 {
        font-size: 1.25rem;
    }
}

/* Responsive adjustments for services */
@media (max-width: 991.98px) {
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    #services .carousel-controls {
        margin-top: 20px;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* Fresh Modern Hero Banner */
.hero-banner.hero-banner-fresh {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(37,99,235,0.7) 100%), url('./images/23.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0;
}

.hero-fresh-content {
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
    z-index: 2;
    position: relative;
}

.hero-fresh-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}

.hero-fresh-badge i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.hero-fresh-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.text-gradient {
    background: linear-gradient(90deg, #3b82f6 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-fresh-subtitle {
    font-size: 1.25rem;
    color: #e0e7ef;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-fresh-content .btn-primary {
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 2rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 4px 16px rgba(37,99,235,0.15);
    transition: background 0.2s, transform 0.2s;
}

.hero-fresh-content .btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 767.98px) {
    .hero-fresh-title {
        font-size: 2rem;
    }
    .hero-fresh-content {
        padding: 0 1rem;
    }
}

/* Modern About Section Redesign */
.about-modern-section {
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-modern-image-wrapper {
    text-align: center;
}

.about-modern-image {
    max-width: 90%;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(59,130,246,0.15);
    border: 4px solid rgba(255,255,255,0.08);
}

.about-modern-content {
    position: relative;
    z-index: 2;
}

.about-modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.about-modern-badge i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.about-modern-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.about-modern-subtitle {
    font-size: 1.15rem;
    color: #e0e7ef;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-feature-card {
    background: rgba(255,255,255,0.08);
    border-radius: 1.25rem;
    box-shadow: 0 2px 12px rgba(30,41,59,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1.5px solid rgba(255,255,255,0.10);
}

.about-feature-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(59,130,246,0.15);
    border-color: #3b82f6;
}

.about-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1e293b 100%);
    color: #fff;
    border-radius: 50%;
    font-size: 1.7rem;
    margin: 0 auto 1rem auto;
    box-shadow: 0 2px 8px rgba(59,130,246,0.10);
}

.about-modern-stats {
    margin-top: 2rem;
    gap: 2.5rem !important;
}

.about-modern-stat {
    background: rgba(255,255,255,0.10);
    border-radius: 1rem;
    padding: 1.25rem 2rem;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 2px 8px rgba(30,41,59,0.10);
}

.about-modern-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: #fff;
    background: linear-gradient(90deg, #3b82f6 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-modern-stat span {
    color: #e0e7ef;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .about-modern-title {
        font-size: 2rem;
    }
    .about-modern-image {
        max-width: 100%;
    }
    .about-modern-stats {
        gap: 1.5rem !important;
    }
}

@media (max-width: 767.98px) {
    .about-modern-section {
        padding: 2rem 0 !important;
    }
    .about-modern-title {
        font-size: 1.5rem;
    }
    .about-modern-content {
        padding: 0 1rem;
    }
    .about-modern-stats {
        flex-direction: column;
        gap: 1rem !important;
    }
}

/* Modern Contact Section Redesign */
.contact-modern-section {
    background: linear-gradient(135deg, #f3f4f6 0%, #e0e7ef 100%);
    position: relative;
    overflow: hidden;
}

.contact-modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59,130,246,0.12);
    color: #2563eb;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(59,130,246,0.08);
}

.contact-modern-badge i {
    color: #fbbf24;
    font-size: 1.2rem;
}

.contact-modern-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-modern-subtitle {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-modern-wrapper {
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 32px rgba(59,130,246,0.10);
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    min-height: 350px;
    backdrop-filter: blur(8px);
}

.contact-modern-info {
    background: linear-gradient(135deg, #3b82f6 0%, #1e293b 100%);
    color: #fff;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-modern-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-modern-info-item:last-child {
    margin-bottom: 0;
}

.contact-modern-info-item i {
    font-size: 2rem;
    color: #fbbf24;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    padding: 0.7rem;
    min-width: 48px;
    text-align: center;
}

.contact-modern-info-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #fff;
}

.contact-modern-info-item p {
    color: #e0e7ef;
    margin-bottom: 0;
    font-size: 1rem;
}

.contact-modern-form {
    background: transparent;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-modern .form-floating > .form-control {
    background: rgba(243,244,246,0.7);
    border: 1.5px solid #d1d5db;
    border-radius: 1rem;
    font-size: 1rem;
    color: #1e293b;
    box-shadow: none;
    transition: border-color 0.2s;
}

.contact-form-modern .form-floating > .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px #3b82f6;
    background: #fff;
}

.contact-form-modern label {
    color: #64748b;
    font-weight: 500;
}

.contact-form-modern .btn-primary {
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 1.5rem;
    padding: 1rem 0;
    box-shadow: 0 4px 16px rgba(37,99,235,0.10);
    transition: background 0.2s, transform 0.2s;
}

.contact-form-modern .btn-primary:hover {
    background: #1e40af;
    transform: translateY(-2px) scale(1.03);
}

@media (max-width: 991.98px) {
    .contact-modern-title {
        font-size: 2rem;
    }
    .contact-modern-wrapper {
        flex-direction: column;
        border-radius: 1.5rem;
    }
    .contact-modern-info, .contact-modern-form {
        border-radius: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .contact-modern-section {
        padding: 2rem 0 !important;
    }
    .contact-modern-title {
        font-size: 1.5rem;
    }
    .contact-modern-info-item i {
        font-size: 1.5rem;
        min-width: 36px;
        padding: 0.5rem;
    }
    .contact-modern-info, .contact-modern-form {
        padding: 1.5rem !important;
    }
}

/* Modern Footer Redesign */
.footer-modern {
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #3b82f6 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-decoration: none;
}

.footer-social-link:hover {
    background: #fbbf24;
    color: #1e293b;
    transform: translateY(-3px) scale(1.08);
}

.footer-divider {
    border: none;
    border-top: 1.5px solid rgba(255,255,255,0.12);
    margin: 2.5rem 0 2rem 0;
}

.footer-copyright {
    color: #e0e7ef;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
    .footer-brand {
        font-size: 1.3rem;
    }
    .footer-social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .footer-divider {
        margin: 1.5rem 0 1rem 0;
    }
} 