:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgb(155, 204, 245);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 60px;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.login-link, .register-link {
    position: relative;
}

.login-link a, .register-link a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.login-link a {
    background: var(--primary-color);
    color: white;
}

.register-link a {
    background: var(--light-bg);
    color: var(--text-color);
    border: 1px solid var(--primary-color);
}

.login-link a:hover, .register-link a:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.login-link a i, .register-link a i {
    width: 1.2rem;
    color: white;
}

.register-link a i {
    color: var(--primary-color);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
    left: 0;
    top: 100%;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.dropdown-column {
    padding: 0.5rem;
}

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dropdown-content a i {
    color: var(--primary-color);
    width: 1.2rem;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* About Section Styles */
.about-section {
    padding: 5rem 10%;
    background: var(--light-bg);
}

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('about-hero.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.about-content {
    padding: 2rem;
}

.about-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-content .lead {
    font-size: 1.5rem;
    opacity: 0.9;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Story Section */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.story-content {
    padding: 2rem;
}

.milestones {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.milestone {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.milestone .number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.story-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.value-card {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.member-image {
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    padding: 1.5rem;
    color: var(--text-color);
}

.role {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.bio {
    color: #64748b;
    padding: 0 1.5rem 1.5rem;
}

.social-links {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .story-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .milestones {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: 300px;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-content .lead {
        font-size: 1.2rem;
    }
}

.contact-section {
    padding: 3rem 5%;
    background: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-item {
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.info-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #64748b;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.contact-form {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.form-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    align-self: center;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-form h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        gap: 1.5rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .info-item {
        padding: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-item h4 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #64748b;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.form-group.filled input,
.form-group.filled select,
.form-group.filled textarea {
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 5%;
    }

    .contact-info,
    .contact-form {
        padding: 2rem;
    }
}

.login-section {
    padding: 3rem 5%;
    background: var(--light-bg);
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.login-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.login-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-header h2 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.login-header p {
    color: #64748b;
    font-size: 0.9rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--light-bg);
    border-radius: 8px;
    padding: 0.5rem;
}

.input-group input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    padding-left: 1rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.input-group i {
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1rem;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
}

.remember-forgot input[type="checkbox"] {
    margin-right: 0.5rem;
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background: var(--secondary-color);
}

.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #64748b;
}

.login-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-footer a:hover {
    text-decoration: underline;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Add styles for Services dropdown */
.services-dropdown {
    position: relative;
}

.products-dropdown .dropdown-content {
    width: 600px;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.dropdown-column h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* Arrow indicator for dropdowns */
.dropdown a {
    position: relative;
    padding-right: 1.5rem;
}

.dropdown a::after {
    content: '\25BC';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--text-color);
}

/* Mega Menu Styles */
.mega-menu .dropdown-content {
    width: 100vw;
    left: 0;
    right: 0;
    padding: 2rem;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.menu-section {
    padding: 1rem;
}

.menu-item {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.menu-item h5 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.menu-item p {
    color: #64748b;
    font-size: 0.9rem;
}

/* Featured Products */
.featured-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-card {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Support List */
.support-list {
    list-style: none;
    padding: 0;
}

.support-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.support-list li:last-child {
    border-bottom: none;
}

.support-list i {
    color: var(--primary-color);
}

/* Home Dropdown */
.dropdown-text {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: var(--secondary-color);
}

/* Contact Info */
.dropdown-content p {
    margin-bottom: 0.5rem;
    color: #64748b;
}

.dropdown-content p i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Quick Links */
.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.dropdown-content a i {
    color: var(--primary-color);
}

/* Dropdown Arrow */
.dropdown a {
    position: relative;
    padding-right: 1.5rem;
}

.dropdown a::after {
    content: '\25BC';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 0.8rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.dropdown:hover a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    transition: all 0.5s ease-out;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Slider Navigation */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover,
.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-banner {
        height: 60vh;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 10%;
    background: var(--light-bg);
    background-color: #e5ecf6;
}
.services-section h2 {
    text-align: center;
    background-color: #acdaf5;
    border-radius: 20px;
    
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgb(209, 245, 234);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 6px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 215px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 50px;
}

/* Products Section */
.products-section {
    padding: 5rem 10%;
    background-color: #e5ecf6;
}

.products-section h2 {
    text-align: center;
    background-color: rgb(137, 187, 233);
    border-radius: 20px;

}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;

}

.product-circle {
    background: rgb(137, 187, 233);
    padding: 2rem;
    border-radius: 10%;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-circle:hover {
    transition: transform 0.3s ease;
}

.product-circle img {
    width: 120px;
    height: 100px;
    margin-bottom: 1rem;
    border-radius: 50%;
}

/* Who We Serve */
.who-we-serve-section {
    padding: 5rem 10%;
    background: var(--light-bg);
    background-image: url("who-we-serve.jpg");
    background-size: cover;        /* Optional: scales image to cover the element */
    background-position: center;   /* Optional: centers the image */
    background-repeat: no-repeat;  /* Optional: prevents image from repeating */
    
}

.who-we-serve-section h2 {
    text-align: center;
    border-radius: 20px;
    color: #ffffff;
}

.segments {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    
}
.segment img {
    height: 50px;
    
}
.segment {
    background: rgb(186, 240, 240);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.segment:hover {
    transform: translateY(-10px);
}

/* Book Now Button */
.book-now-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.book-now-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Footer */
footer {
    background: var(--text-color);
    color: white;
    padding: 4rem 10% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}
.footer-section h3 {
    margin-bottom: 1rem;
    color: #2a80f0;
}

.footer-section ul {
    list-style: disc;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.book-now-btn:hover {
    animation: bounce 0.5s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links ul {
        display: none;
    }
    
    .hero-banner {
        height: auto;
        padding: 20vh 0;
    }
    
    .services-grid,
    .products-grid,
    .segments {
        grid-template-columns: 1fr;
    }
}
