/* style.css */
:root {
    --primary: #41160d; /* Coral Red */
    --hover-primary: #2e0e08;
    --dark: #1E1C1C;
    --white: #FFFFFF;
    --bg-light: #F7F7F7;
    --text-color: #333333;
    --text-muted: #666666;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Headings */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.pill-btn {
    border-radius: 50px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

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

.btn-dark {
    background-color: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.icon-right {
    margin-left: 8px;
    font-size: 14px;
}

/* Header */
.header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 15px auto;
    border-radius: 25px;
    width: 80%;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    top: 15px;
}

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

.logo img {
    height: 80px;
}

.nav-menu ul {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

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

.dropdown {
    position: relative;
}

.dropdown i {
    font-size: 12px;
    margin-left: 4px;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    gap: 0;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    color: var(--primary);
    background-color: var(--bg-light);
    padding-left: 25px;
}

.header-btn {
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    position: relative;
    background: var(--bg-light);
}

.hero-bg-blob {
    position: absolute;
    top: 0px;
    right: 0;
    width: 45%;
    height: 20%;
    background-color: var(--primary);
    border-bottom-left-radius: 40px;
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-radius: 8px;
    max-height: 550px;
}

/* Services Section */
.services {
    padding: 80px 0;
    position: relative;
    background-color: var(--bg-light);
}

.services-bg-blob {
    position: absolute;
    top: 10%;
    right: 0;
    width: 20%;
    height: 70%;
    background-color: var(--primary);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    z-index: 1;
}

.section-heading-left h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 600;
    max-width: 400px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 25px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.service-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.view-all-btn-wrap {
    text-align: center;
    margin-top: 20px;
}

/* Stats Section */
.stats {
    background-color: var(--dark);
    padding: 60px 0;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.stat-icon-circle i {
    color: var(--dark);
    font-size: 24px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

/* Process Section */
.process {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.process .section-heading.centered h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
}

.process-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.process-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.left-col {
    text-align: left;
}

.right-col {
    text-align: right;
}

.right-col .process-step {
    flex-direction: column-reverse;
}

.right-col .process-icon {
    margin-left: auto;
    margin-right: 0;
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.process-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.process-center {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
}

.process-circle-bg {
    width: 350px;
    height: 350px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(240, 92, 80, 0.3);
}

.process-book {
    max-width: 60%;
    transform: rotate(5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.process-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
}

.faq-content h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.faq-content p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 0.9rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 15px 0;
    background: none;
    border: none;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coral-text {
    color: var(--primary);
    font-size: 12px;
}

/* Footer Section */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 200px 0;
    position: relative;
    overflow: hidden;
}

.footer-bg-blob {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 250px;
    height: 200px;
    background-color: var(--primary);
    border-top-right-radius: 20px;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: 40px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-col {
    position: relative;
    z-index: 2;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-col p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: #ccc;
    font-size: 0.85rem;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.contact-info li {
    display: flex;
    gap: 10px;
    color: #ccc;
    font-size: 0.85rem;
}

.contact-info li i {
    color: var(--white);
    margin-top: 4px;
}

.social-links-square {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links-square a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #333;
    border-radius: 4px;
    color: var(--white);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-wrapper {
        flex-direction: column;
    }
    .process-center {
        order: -1;
    }
    .left-col, .right-col {
        text-align: center;
    }
    .right-col .process-icon {
        margin: 0 auto 15px;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-bg-blob {
        width: 100%;
        height: 40%;
        border-bottom-left-radius: 0;
    }
}

@media (max-width: 768px) {
    .nav-menu, .header-btn {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .services-bg-blob {
        display: none;
    }
}


