:root {
    --primary: #2a5a8c;
    --primary-dark: #1a3a5c;
    --accent: #e9b44c;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #28a745;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    box-shadow: var(--shadow);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.btn-accent:hover {
    background: #d6a13d;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 1.1rem;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;

}

.logo-icon img{
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--primary);
}

.logo-text span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover:after {
    width: 100%;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(105deg, rgba(42, 90, 140, 0.9) 40%, rgba(26, 58, 92, 0.85)), url('./heroBG.avif') no-repeat center center/cover;
    color: white;
    padding: 200px 0 120px;
    text-align: left;
}

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* About Section */
.about {
    background-color: white;
}

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

.profile-image {
    flex: 1;
    position: relative;
    /*&:before{*/
    /*   background: linear-gradient(105deg, rgba(42, 90, 140, 0.9) 30%, rgba(26, 58, 92, 0.5)) no-repeat center center/cover;*/
    /*    content: "";*/
    /*    position: absolute;*/
    /*    top: 50%;*/
    /*    left: 0;*/
    /*    width: 100%;*/
    /*    height: 50%;*/
    /*    z-index: 2;*/
    /*}*/
}

.profile-image .image-wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    max-width: 320px;
}

.profile-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--dark);
    padding: 20px;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    box-shadow: var(--shadow);
    z-index: 2;
}
.profile-services{
    color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 3;
    font-size: 30px;
    line-height: 40px;
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
    opacity: 0.8;
    @media (max-width: 760px) {
        line-height: 30px;
        font-size: 18px
    }
}

.experience-badge .number {
    font-size: 2.5rem;
    line-height: 1;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    color: var(--primary);
    font-size: 18px;
}

/* Services Section */
.services {
    background-color: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 60px;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-price {
    font-weight: 700;
    color: var(--success);
    font-size: 1.25rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Service Selector */
.service-selector {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: var(--shadow);
}

.selector-header {
    text-align: center;
    margin-bottom: 30px;
}

.selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.service-item {
    background: white;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 25px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.service-item:hover,
.service-item.selected {
    border-color: var(--primary);
    background-color: rgba(42, 90, 140, 0.03);
    box-shadow: 0 5px 15px rgba(42, 90, 140, 0.1);
}

.service-item i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.quote-summary {
    background: var(--light);
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quote-summary h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

#selected-services {
    list-style: none;
    margin-bottom: 25px;
}

#selected-services li {
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    font-size: 17px;
}

.total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success);
    text-align: right;
    margin-top: 15px;
}

/* Testimonials */
.testimonials {
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid var(--light-gray);
}

.testimonial-card:before {
    content: "" ";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(42, 90, 140, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 20px;
    color: var(--dark);
    font-style: italic;
    font-size: 17px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: bold;
    font-size: 24px;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.author-info p {
    color: var(--gray);
    font-size: 0.95rem;
}

.rating {
    color: var(--accent);
    margin: 10px 0;
    font-size: 18px;
}

/* Contact Section */
.contact {
    background: linear-gradient(rgba(42, 90, 140, 0.95), rgba(26, 58, 92, 0.95)), url('./heroBG.avif') center/cover;
    color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    padding-right: 30px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 18px;
    opacity: 0.9;
}

.contact-details {
    list-style: none;
    margin-top: 30px;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.contact-details i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    color: var(--accent);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.form-message {
    display: none;
}

.contact-form--sent .form-message {
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 15px;
    padding: 15px;

}

.contact-form h3 {
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gray);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 90, 140, 0.1);
}

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

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-text {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }

    .nav-menu.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero {
        padding: 180px 0 80px;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .service-selector {
        padding: 25px;
    }

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

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


