@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #0077b6;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-color: #e7e7e7;
    --border-radius: 8px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

/* Main content adjustments for rounded hero */
main.py-4 {
    padding-top: 0 !important;
}

/* Container adjustments */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/* Navbar Styles */
.navbar {
    background-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover:after, .nav-link.active:after {
    width: 70%;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
}

/* Button Styles */
.btn-primary {
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.3);
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-primary:hover:before {
    left: 0;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.4);
}

.btn-outline-primary {
    color: var(--highlight-color);
    border-color: var(--highlight-color);
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 119, 182, 0.2);
}

.btn-outline-primary:hover {
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 119, 182, 0.3);
}

.btn-outline-light {
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-width: 2px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-link {
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.btn-link:hover {
    transform: translateX(3px);
}

/* Card Styles */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Service & Software Cards */
.service-card, .software-card {
    transition: all 0.4s ease;
}

.service-card:hover, .software-card:hover {
    transform: translateY(-10px);
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.software-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 52, 96, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.software-card:hover .software-overlay {
    opacity: 1;
}

/* Feature Section */
.feature-card {
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon-container {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-container:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(15, 52, 96, 0.1);
    color: var(--highlight-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    z-index: 1;
}

.feature:hover .feature-icon, .feature-card:hover .feature-icon {
    background-color: var(--highlight-color);
    color: white;
    transform: translateY(-5px);
}

/* Testimonial Cards */
.testimonial-card {
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    color: rgba(0, 119, 182, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 3rem 0 2rem;
}

footer a {
    color: var(--text-color);
    transition: var(--transition);
}

footer a:hover {
    color: white;
    text-decoration: none;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

footer h5:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--highlight-color);
}

footer .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1rem;
    margin-right: 10px;
    transition: var(--transition);
}

footer .social-icon:hover {
    background: var(--highlight-color);
    color: white;
    transform: translateY(-3px);
}

/* Hero Section */
section.hero-section {
    padding: 80px 0 100px !important;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%) !important;
    color: white !important;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 119, 182, 0.2) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 1280 140' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='rgba(255,255,255,0.03)'%3E%3Cpath d='M1280 0L640 70 0 0v140l640 -70 640 70V0z'/%3E%3C/g%3E%3C/svg%3E");
    background-position: top left, top right, center bottom;
    background-size: 600px 600px, 600px 600px, 100% 100px;
    background-repeat: no-repeat;
    opacity: 0.8;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--highlight-color) 100%);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 0;
}

.hero-image-container {
    position: relative;
    z-index: 3;
}

.hero-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    backdrop-filter: blur(10px);
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(-20px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 90%;
    opacity: 0.95;
    line-height: 1.6;
}

/* Services Section Styling */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    margin: 0 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 119, 182, 0.03) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.services-section > .container {
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Section Headings */
.section-heading {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 30px;
    font-weight: 600;
    color: var(--primary-color);
}

.section-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--highlight-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

/* Badge styles */
.badge {
    font-weight: 500;
    letter-spacing: 1px;
}

/* Cart Badge */
.cart-badge {
    position: relative;
    top: -10px;
    right: 5px;
    font-size: 0.6rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0 80px;
        margin: 0 10px;
        border-radius: 16px;
        margin-top: 15px;
    }
    
    .services-section {
        border-radius: 16px;
        margin: 0 10px;
    }
      .hero-content {
        padding: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-image {
        margin-top: 2rem;
        padding: 15px;
    }
    
    .d-flex.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .btn-lg {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .cta-container {
        padding: 2rem !important;
        border-radius: 16px;
        margin: 0 10px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0 60px;
        margin: 0 5px;
        border-radius: 12px;
        margin-top: 10px;
    }
    
    .services-section {
        border-radius: 12px;
        margin: 0 5px;
    }
      .hero-content {
        padding: 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}
