/* Global Styles */
:root {
    --primary-color: lab(49.79% 75.11 61.02); /* Changed to #5da8ff for headings */
    --secondary-color: #1e3cb8; /* Bright blue for accents (also changed to #5da8ff) */
    --accent-color: #e74c3c; /* Red for important actions */
    --light-color: #f0f8ff; /* Alice blue background */
    --dark-color: #1f40d1;
    --text-color: hsla(0, 4%, 5%, 0.927);
    --light-gray: #1e3cb8; /* Light blue-gray */
    --medium-gray: #2b48ba; /* Medium blue-gray */
    --dark-gray: #2f4cbe; /* Darker blue-gray */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color); /* Light blue background */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: hsla(0, 0%, 5%, 0.92);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn.primary {
    background-color: var(--secondary-color);
    color: #f7f6f3;
}

.btn.primary:hover {
    background-color: #1729c8; /* Slightly darker shade of #5da8ff */
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(30, 6, 209, 0.888);
}

.btn.secondary {
    background-color: white;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn.secondary:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(5px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.3s ease;
}

nav ul li.active a, nav ul li a:hover {
    color: var(--secondary-color);
}

nav ul li.active a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg,rgba(3, 44, 99, 0.8), rgba(9, 36, 142, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 180px 0 100px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 22, 171, 0.3);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s;
    position: relative;
    text-shadow: 1px 1px 3px rgba(8, 8, 8, 0.92);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 1.5s;
    position: relative;
}

/* Page Hero (for other pages) */
.page-hero {
    background: linear-gradient(135deg, rgba(9, 27, 223, 0.8), rgba(35, 3, 238, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 0 80px;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 13, 13, 0.3);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 1px 1px 3px rgba(11, 7, 7, 0.916);
}

.page-hero p {
    font-size: 1.1rem;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Quick Services Section */
.quick-services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.quick-services h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(93, 168, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(93, 168, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(93, 168, 255, 0.2);
    border-color: rgba(93, 168, 255, 0.3);
}

.service-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.service-card p {
    color: #555;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light-color);
    transform: skewY(-3deg);
    z-index: 1;
}

.testimonials h2 {
    text-align: center;
    color: white;
    margin-bottom: 50px;
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial p::before,
.testimonial p::after {
    content: '"';
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
}

.client-info strong {
    display: block;
    font-size: 1.1rem;
    color: white;
}

.client-info span {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(47, 89, 226, 0.2);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.values-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

.team-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(93, 168, 255, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(93, 168, 255, 0.2);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(93, 168, 255, 0.3);
}

/* Offers Page Styles */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.offer-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(93, 168, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(93, 168, 255, 0.1);
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(93, 168, 255, 0.2);
    border-color: rgba(93, 168, 255, 0.3);
}

.offer-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.03);
}

.offer-card.featured:hover {
    transform: scale(1.06) translateY(-5px);
}

.offer-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.offer-price {
    margin: 20px 0;
    color: var(--secondary-color);
}

.offer-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.offer-price .amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 5px;
}

.offer-price .period {
    font-size: 1rem;
    color: var(--dark-gray);
}

.offer-features {
    list-style: none;
    margin-bottom: 30px;
}

.offer-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.offer-features li:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.offer-features li:last-child {
    border-bottom: none;
}

.custom-offer {
    text-align: center;
    padding: 40px 0;
    background-color: var(--light-gray);
    border-radius: 12px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(38, 57, 227, 0.1);
}

/* Services Page Styles */
.service-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category {
    padding: 10px 20px;
    background-color: var(--light-gray);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(93, 168, 255, 0.2);
}

.category:hover {
    background-color: rgba(30, 57, 232, 0.1);
}

.category.active {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: 0 4px 8px rgba(43, 67, 222, 0.3);
}

.services-list {
    padding: 40px 0;
}

.service-item {
    display: none;
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(93, 168, 255, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(93, 168, 255, 0.1);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(93, 168, 255, 0.2);
}

.service-item.active {
    display: flex;
    align-items: center;
    gap: 30px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    min-width: 80px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
}

.service-details h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--accent-color);
}

.learn-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.learn-more:hover i {
    transform: translateX(5px);
}

.cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light-color);
    transform: skewY(-3deg);
    z-index: 1;
}

.cta-section h2 {
    color: white;
    margin-bottom: 20px;
    position: relative;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 0;
}

.contact-form h2, .contact-info h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 6px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: rgba(230, 242, 255, 0.5);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(93, 168, 255, 0.2);
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.map-section {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(93, 168, 255, 0.1);
    border: 1px solid rgba(93, 168, 255, 0.1);
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: white;
    padding: 80px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--light-color);
    transform: skewY(-3deg);
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bdc3c7;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-item.active {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
}
.error-message {
    color: #d9534f;
    background-color: #f2dede;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #ebccd1;
}

.success-message {
    color: #3c763d;
    background-color: #dff0d8;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #d6e9c6;
}

button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}
/* Add to your existing CSS */
#formResponse {
    display: none;
    padding: 15px;
    margin: 15px 0;
    border-radius: 4px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
}