/* Global Styles */
:root {
    --primary-color: #2c3e50;
    --accent-color: #e84358; /* Slightly softer red/pink */
    --accent-hover: #d63045;
    --purple-color: #8e44ad;
    --text-color: #636e72;
    --light-bg: #f8f9fa;
    --dark-bg: #2d3436;
    --navy-bg: #1e272e;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 35px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--light-bg);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4, h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px; /* Pill shape for modern look */
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 4px 15px rgba(232, 67, 88, 0.3);
}

.btn-primary, .btn-danger {
    background: linear-gradient(135deg, var(--accent-color), #ff6b81);
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 67, 88, 0.4);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title .subtitle {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 38px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Top Bar */
.top-bar {
    background-color: #1e1e1e;
    color: #eee;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    color: var(--accent-color);
}

.social-icons a {
    color: #bbb;
    margin-left: 20px;
    font-size: 14px;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo h1 {
    font-family: 'Satisfy', cursive; /* More stylish script font if available, fallback to cursive */
    font-size: 36px;
    margin: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--purple-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-image-container {
    position: relative;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 750px;
    object-fit: cover;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

.about-content {
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    position: relative;
}

/* Decorative element behind image */
.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    z-index: 1;
}

.about-text {
    flex: 1.2;
}

.about-text .subtitle {
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.experience-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.experience-list li {
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
    transition: var(--transition);
}

.experience-list li:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

.experience-list li i {
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 4px;
    font-size: 14px;
    background: rgba(232, 67, 88, 0.1);
    padding: 6px;
    border-radius: 50%;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1920&h=400&q=80');
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.cta-banner h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
}

.cta-banner p {
    margin-bottom: 35px;
    font-size: 18px;
    opacity: 0.9;
}

/* Services */
.services {
    padding: 100px 0;
    background-color: #f0f2f5;
}

.service-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    text-align: left;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--accent-color);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--primary-color);
}

.card-header i {
    background: rgba(232, 67, 88, 0.1);
    color: var(--accent-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    transition: var(--transition);
}

.card:hover .card-header i {
    background: var(--accent-color);
    color: #fff;
}

.card-header .number {
    font-size: 40px;
    font-weight: 900;
    color: #eee;
    font-family: 'Poppins', sans-serif;
}

.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.card p {
    font-size: 15px;
    color: #777;
    line-height: 1.8;
}

/* Blog Decoration */
.blog-decoration img {
    width: 100%;
    display: block;
    height: 250px;
    object-fit: cover;
    filter: brightness(0.9);
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background-color: #fff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: none;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.blog-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    z-index: 10;
}

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 15px;
    transition: var(--transition);
}

.blog-card:hover .blog-content h4 {
    color: var(--accent-color);
}

.meta {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.meta i {
    color: var(--accent-color);
    margin-right: 6px;
}

.blog-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    border: none;
    padding: 0;
}

.read-more::after {
    content: '\f178'; /* FontAwesome arrow right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 8px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-color);
    background: none;
}

.read-more:hover::after {
    margin-left: 12px;
}

/* Corporate Banner */
.corporate-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&h=300&q=80');
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.corp-logo {
    height: 70px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1); /* Make logo white */
}

.corporate-banner p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #f1f1f1;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Team Section */
.team {
    padding: 100px 0;
    text-align: center;
    background: #fff;
}

.team h2 {
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 36px;
}

.team-member {
    display: inline-block;
    max-width: 380px;
    position: relative;
    width: 100%;
}

.member-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    padding-bottom: 40px;
    position: relative;
    transition: var(--transition);
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.purple-header {
    background: linear-gradient(45deg, var(--purple-color), #9b59b6);
    height: 120px;
    width: 100%;
}

.member-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #fff;
    margin-top: -60px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    object-fit: cover;
}

.member-card h4 {
    margin-top: 20px;
    font-size: 22px;
    color: var(--primary-color);
}

.member-card p {
    font-size: 15px;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.dots {
    margin-top: 20px;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #e0e0e0;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dots span.active, .dots span:hover {
    background: var(--purple-color);
    transform: scale(1.2);
}

.slider-nav i {
    font-size: 40px;
    color: #e0e0e0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: var(--transition);
}

.slider-nav i:hover {
    color: var(--primary-color);
}

.slider-nav i.fa-chevron-left {
    left: -60px;
}

.slider-nav i.fa-chevron-right {
    right: -60px;
}

/* Appointment Bar */
.appointment-bar {
    background: var(--primary-color);
    padding: 30px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.appointment-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
}

.appointment-bar .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.appointment-bar h3 {
    margin: 0;
    font-size: 24px;
    color: #fff;
    letter-spacing: 1px;
}

.book-now {
    font-size: 15px;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
}

.book-now:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
}

/* Footer */
footer {
    background: #111;
    color: #bbb;
    padding: 80px 0 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #999;
    display: block;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-col h5 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
    margin-top: -10px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 10px;
    border: 1px solid #333;
    border-radius: 4px;
    background: #222;
    color: #fff;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input:focus {
    border-color: var(--accent-color);
    background: #2a2a2a;
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 700;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    background: var(--accent-hover);
}

.copyright {
    border-top: 1px solid #222;
    text-align: center;
    padding: 25px 0;
    color: #666;
    background: #0d0d0d;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    header .container {
        height: 70px;
        padding: 0 20px;
    }

    .logo h1 {
        font-size: 28px;
    }

    nav {
        display: none; /* Mobile menu hidden for simplicity in this demo */
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .service-cards {
        flex-direction: column;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .slider-nav {
        display: none;
    }
    
    .appointment-bar .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
