/* Base Styles */
:root {
    --primary-dark: #1A3B6D;
    --primary-light: #4B9CD3;
    --background: #FFFFFF;
    --background-secondary: #F5F5F5;
    --text-dark: #333333;
    --text-light: #777777;
    --border: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--primary-light);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-dark);
    border: 1px solid var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: white;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-light);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 40px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-light);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-light);
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    position: relative;
    transition: var(--transition);
    margin: 0 auto; /* Ensures centering */
}

.hamburger::before,
.hamburger::after {
    left: 0;
    transform: translateX(-50%);
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--primary-dark);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
    transform: none;
}

.hamburger::after {
    top: 8px;
    transform: none;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
    
}

.nav-toggle.active .hamburger::before {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Cart Icon Sticky Bottom Right */
.cart-icon-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    font-size: 1.5rem;
}

.cart-icon:hover {
    background-color: var(--primary-dark);
    transform: scale(1.1);
}

.cart-count {
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .cart-icon-container {
        bottom: 20px;
        right: 20px;
    }
    
    .cart-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cart-count {
        width: 20px;
        height: 20px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 10px;
    background-color: var(--background-secondary);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    animation: fadeInUp 1s ease;
}

.hero-image {
    flex: 1;
    animation: fadeIn 1.5s ease;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-light);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* Mission Section */
.mission {
    padding: 80px 0;
    text-align: center;
    background-color: white;
}

.mission-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--background-secondary);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-light);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-light);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-nav:hover {
    background-color: var(--primary-dark);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Clients Section */
.clients {
    padding: 60px 0;
    background-color: white;
}

.client-scroller {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 40px;
}

.client-track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    width: calc(250px * 8);
}

.client-track img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--background-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: var(--primary-dark);
    color: white;
    text-align: center;
}

.stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-light);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team Section */
.team {
    padding: 80px 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.member-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 59, 109, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.member-overlay p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary-light);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.team-member p {
    color: var(--text-light);
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background-color: var(--primary-light);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-light);
}

.footer-col p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Page Banner */
.page-banner {
    padding: 120px 0 80px;
    text-align: center;
    background-color: var(--primary-dark);
    color: white;
    position: relative;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Service Categories */
.service-categories {
    padding: 80px 0;
    background-color: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background-color: var(--background-secondary);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    background-color: var(--primary-dark);
    color: white;
}

.category-card:hover h3 {
    color: white;
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.category-card h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

/* Service Offerings */
.service-offerings {
    padding: 80px 0;
    background-color: var(--background-secondary);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offering-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.offering-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.offering-header i {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.offering-header h3 {
    color: var(--primary-dark);
}

.offering-list {
    padding-left: 20px;
}

.offering-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    color: var(--text-light);
}

.offering-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%234B9CD3' viewBox='0 0 24 24'%3E%3Cpath d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.step p {
    color: var(--text-light);
}

/* Company Description */
.company-description {
    padding: 80px 0;
    background-color: white;
}

.company-description .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.description-content {
    flex: 1;
}

.description-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.description-image img {
    width: 100%;
    height: auto;
    display: block;
}

.description-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Values Section */
.values {
    padding: 80px 0;
    background-color: var(--background-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* Contact Info */
.contact-info {
    padding: 60px 0;
    background-color: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.info-item {
    text-align: center;
    padding: 30px;
    background-color: var(--background-secondary);
    border-radius: 8px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.info-item h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: var(--background-secondary);
}

.contact-form-section .container {
    display: flex;
    gap: 50px;
}

.form-container {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info-container {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 2px rgba(75, 156, 211, 0.2);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 4rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.form-success h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.map-container {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: white;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--primary-dark);
    transition: var(--transition);
}

.faq-question:hover {
    background-color: var(--background-secondary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    color: var(--text-light);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: var(--background-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.product-id {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-price {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.product-options select {
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.quantity-selector button {
    background-color: var(--background-secondary);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.quantity-selector button:hover {
    background-color: var(--primary-light);
    color: white;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    padding: 10px;
    font-family: 'Open Sans', sans-serif;
}

.add-to-cart {
    width: 100%;
}

/* Cart Section */
.cart-section {
    padding: 80px 0;
    background-color: white;
}

.cart-container {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.cart-items {
    flex: 2;
    background-color: var(--background-secondary);
    padding: 30px;
    border-radius: 8px;
}

.cart-summary {
    flex: 1;
    background-color: var(--background-secondary);
    padding: 30px;
    border-radius: 8px;
    height: fit-content;
}

.cart-summary h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.empty-cart-message {
    text-align: center;
    color: var(--text-light);
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-item-name {
    font-weight: 500;
    color: var(--primary-dark);
}

.cart-item-price {
    font-weight: 600;
}

.cart-item-options {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-quantity button {
    background-color: var(--primary-light);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-quantity button:hover {
    background-color: var(--primary-dark);
}

.cart-item-remove {
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #ff0000;
}

.cart-summary h3 {
    margin-bottom: 20px;
    color: var(--primary-dark);
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.empty-cart-message {
    text-align: center;
    color: var(--text-light);
}

.cart-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-item-name {
    font-weight: 500;
    color: var(--primary-dark);
}

.cart-item-price {
    font-weight: 600;
}

.cart-item-options {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-quantity button {
    background-color: var(--primary-light);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-quantity button:hover {
    background-color: var(--primary-dark);
}

.cart-item-remove {
    color: var(--text-light);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #ff0000;
}

.cart-feedback {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-light);
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    box-shadow: var(--shadow);
    opacity: 0;
    transition: var(--transition);
    z-index: 1000;
}

.cart-feedback.show {
    opacity: 1;
}

/* Checkout Section */
.checkout-section {
    padding: 80px 0;
    background-color: var(--background-secondary);
}

.checkout-form {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 4));
    }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content,
    .hero-image {
        flex: none;
        width: 100%;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .company-description .container {
        flex-direction: column;
    }
    
    .contact-form-section .container {
        flex-direction: column;
    }
    
    .form-container,
    .contact-info-container {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-list.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: block;
    }
    
    .header .container {
        padding: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .step::after {
        display: none;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .cart-container {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats .container {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-author img {
        margin-bottom: 15px;
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background-color: white;
}

.portfolio-grid,
.video-grid,
.photo-grid,
.website-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item,
.photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 250px;
}

.portfolio-item img,
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay,
.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay,
.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.portfolio-item:hover img,
.photo-item:hover img {
    transform: scale(1.05);
}
/* Lightbox Styles with Animations */
.lightbox {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    transform: scale(0.8);
    transition: all 0.3s ease;
    opacity: 0;
}

.lightbox.active .lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease 0.1s;
}

.lightbox.active .close-lightbox {
    opacity: 1;
    transform: translateY(0);
}

.close-lightbox:hover {
    color: var(--primary-light);
    transform: scale(1.1);
}

/* Video Items */
.video-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    padding: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 15px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Website Items */
.website-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.website-item img {
    width: 100%;
    height: auto;
    display: block;
}

.website-info {
    padding: 20px;
}

.website-info h3 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.website-info p {
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-logo {
    width: 150px;
    margin-bottom: 30px;
    animation: pulse 1.5s infinite ease-in-out;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    font-size: 1.2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Add to styles.css */
.category-card .btn {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 0.9rem;
    width: auto;
    display: inline-block;
}

.category-card:hover .btn {
    background-color: white;
    color: var(--primary-dark);
}

/* Add to styles.css */
.contact-info-container .social-links {
    background-color: var(--primary-dark);
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-info-container .social-links a {
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-info-container .social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}









/* Clickable link styles */
.clickable-link {
    color: var(--primary-light);
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    padding: 3px 5px;
    border-radius: 4px;
}

.clickable-link:hover {
    color: var(--primary-dark);
    background-color: rgba(75, 156, 211, 0.1);
    text-decoration: underline;
}

.link-icon {
    font-size: 0.8em;
    opacity: 0.7;
}

/* Phone number styling for consistency */
.info-item a[href^="tel:"] {
    color: var(--primary-light);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.info-item a[href^="tel:"]:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}
.persistent-underline {
    color: var(--primary-light); /* Your brand blue */
    text-decoration: none;
    position: relative;
    padding-bottom: 2px; /* Space for underline */
    transition: all 0.3s ease;
}

/* Permanent underline */
.persistent-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-light); /* Same as text */
    opacity: 0.5; /* Slightly transparent */
    transition: all 0.3s ease;
}

/* Hover effects */
.persistent-underline:hover {
    color: var(--primary-dark); /* Darker blue on hover */
}

.persistent-underline:hover::after {
    background-color: var(--primary-light); /* Bright blue */
    opacity: 1; /* Fully opaque */
    height: 2px; /* Thicker line */
}



.email-link {
  color: var(--background); /* or any color you want */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--primary-light);
  text-decoration-thickness: 2px; /* Optional: makes the underline thicker on hover */
}














/* Add this to the end of your styles.css file */
.nevola-credit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
    text-align: center;
}

.nevola-credit a {
    color: white;
    text-decoration: none;
    font-weight: 600; /* This makes only "Nevola" bold */
    transition: var(--transition);
}

.nevola-credit a:hover {
    color: var(--primary-light);
}