@font-face {
    font-family: geist-bold;
    src: url(../fonts/Geist/Geist-Black.ttf);
}

@font-face {
    font-family: geist-light;
    src: url(../fonts/Geist/Geist-Regular.ttf);
}

@font-face {
    font-family: geist-regular;
    src: url(../fonts/Geist/Geist-Light.ttf);
}

@font-face {
    font-family: fancy;
    src: url(../fonts/Lobster/Lobster-Regular.ttf);
}

:root {
    --purple-color: #511D43;
    --white-color: #F5F5F5;
    --light-color: #F6EFD2;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    /* outline: 1px solid red; */
}

body {
    background-color: var(--white-color);
    margin-top: 159px;
}

/*=== Whatsapp-Icon-Starts ===*/

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;t
}

.whatsapp-float:hover {
    background-color: #1ebe5b;
    transform: scale(1.1);
    color: var(--purple-color);
}

/*=== Whatsapp-Icon-Ends ===*/

/*=== Call-Icon-Starts ===*/

.call-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #007bff;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-float:hover {
    background-color: #0056b3;
    transform: scale(1.1);
    color: var(--purple-color);
}

/*=== Call-Icon-Ends ===*/

/*=== Top-Bar-Starts ===*/

.top-bar {
    background-color: #111;
    color: #fff;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 768px) {
    .top-bar-container {
        flex-direction: row;
    }
}

.top-left,
.top-center,
.top-right {
    margin: 5px 0;
    text-align: center;
}

.top-left {
    flex: 1;
    text-align: left;
}

.top-center {
    flex: 1;
    font-weight: 600;
    letter-spacing: 1px;
}

.top-right {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .top-right {
        justify-content: flex-end;
    }
}

.social-icon {
    background-color: #333;
    color: #fff;
    padding: 8px;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    width: 32px;
    height: 32px;
}

.social-icon:hover {
    background: linear-gradient(to right, #46b3e5, #3bf689);
    color: var(--purple-color);
}

@media(max-width:768px) {
    .top-bar {
        display: none;
    }
}

/*=== Top-Bar-Ends ===*/

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--purple-color);
    z-index: 999;
    top: 60px;
}

.navbar {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: black;
}

.logo img {
    height: 70px;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
    font-family: geist-light;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--light-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.menu a:hover::after {
    width: 100%;
}

.call-btn a {
    background-color: var(--light-color);
    color: var(--purple-color);
    border: 1px solid var(--light-color);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.call-btn a:hover {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--light-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100%;
    background-color: var(--purple-color);
    padding: 30px 20px;
    transition: left 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.mobile-menu .close-btn {
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.mobile-menu nav {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.mobile-menu nav a {
    color: var(--light-color);
    font-size: 18px;
    text-decoration: none;
    position: relative;
}

.mobile-menu nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.mobile-menu nav a:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 991px) {

    .menu,
    .call-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

/* Page content spacing */
.content {
    padding-top: 100px;
    text-align: center;
}

.content h1 {
    font-size: 36px;
    color: #333;
}

/* Dropdown Menu */
.menu-item-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 30px;
    left: 0;
    background-color: var(--purple-color);
    min-width: 160px;
    display: none;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    z-index: 1001;
}

.dropdown-content a {
    padding: 10px 16px;
    text-decoration: none;
    color: var(--light-color);
    font-family: geist-light;
    font-size: 15px;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgb(105, 31, 80);
}

/* Show dropdown on hover */
.menu-item-dropdown:hover .dropdown-content {
    display: flex;
}

.contact-btn-mobile{
    padding: 10px;
    background-color: var(--light-color);
    border: 1px solid var(--light-color);
    color: var(--purple-color) !important;
    transition:  all .3s;
    text-align: center;
}

.contact-btn-mobile:hover{
    background-color: transparent;
    border: 1px solid var(--light-color);
    color: var(--light-color) !important;
}

@media(max-width:768px) {
    header {
        top: 0px;
    }
}

/*=== Header-Ends ===*/


/*=== Banner-Starts ===*/

.banner {
    background-image: url('../img/banner/banner-img-2.png');
    background-size: cover;
    background-position: center;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-attachment: fixed;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
}

.banner h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.gradient-text {
    font-size: 64px;
    font-weight: bold;
    background: linear-gradient(270deg, #8e88f9, #fa90e5, #6C63FF);
    background-size: 600% 600%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animateGradient 5s linear infinite;
}

@keyframes animateGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



.gradient-line {
    height: 4px;
    width: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(to right, #6C63FF, #FF6CB5);
    border-radius: 2px;
}

.banner p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 30px;
    font-family: geist-regular;
    letter-spacing: .35px;
}

.banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.banner-buttons a {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid var(--light-color);
    transition: all 0.3s ease;
    font-family: geist-bold;
}

.hover-button {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    color: #fff;
    background-color: transparent;
    border: 2px solid var(--light-color);
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hover-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    z-index: 0;
    transition: left 0.4s ease;
}

.hover-button:hover::before {
    left: 0;
}

.hover-button span {
    position: relative;
    z-index: 1;
}

.hover-button:hover {
    color: var(--purple-color);
}

.btn-secondary {
    background: transparent;
    color: white;
    transition: .5s !important;
}

.btn-secondary:hover {
    background: linear-gradient(to right, white, #e0e0e0);
    color: var(--purple-color);
    border-color: transparent;
}

/* Responsive */
@media (min-width: 600px) {
    .banner h1 {
        font-size: 4rem;
    }

    .banner-buttons {
        flex-direction: row;
        gap: 20px;
    }
}

@media(max-width:500px) {
    .banner h1 {
        font-size: 2rem;
    }

    .gradient-text {
        font-size: 34px;
    }
}

@media (max-width: 400px) {

    .banner p {
        font-size: 1rem;
    }

    .banner-buttons a {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}


/*=== Banner-Ends ===*/


/*=== About-Section-Starts ===*/

.about-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: bold;
    font-family: fancy;
    color: var(--purple-color);
}

.section-header .underline {
    width: 100px;
    height: 4px;
    margin: 10px auto 0;
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    border-radius: 2px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
}

.about-left {
    flex: 1 1 500px;
}

.about-left h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-family: geist-bold;
}

.about-left p.subheading {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.about-feature-icon {
    padding: 13px 15px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: background 0.3s;
}

.about-feature-icon:hover {
    background: var(--purple-color);
    color: #fff;
}

.about-feature p {
    font-size: 15px;
    color: #444;
}

.about-content a {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--purple-color);
    transition: all 0.3s ease;
    font-family: geist-regular;
}

.hover-button-about {
    position: relative;
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    color: var(--purple-color);
    background-color: transparent;
    border: 1px solid var(--purple-color);
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-top: 20px;
}

.hover-button-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--purple-color);
    z-index: 0;
    transition: left 0.4s ease;
}

.hover-button-about:hover::before {
    left: 0;
}

.hover-button-about span {
    position: relative;
    z-index: 1;
}

.hover-button-about:hover {
    color: var(--light-color);
}

.about-right {
    flex: 1 1 400px;
}

.about-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Feature Boxes */
.feature-boxes {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    gap: 20px;
}

.feature-box {
    flex: 1 1 calc(50% - 20px);
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.feature-box:hover {
    background: var(--light-color);
}

.feature-box i {
    font-size: 20px;
    color: var(--purple-color);
    margin-right: 15px;
}

.feature-box strong {
    font-size: 14px;
    color: var(--purple-color);
}



/* Responsive */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }

    .about-left,
    .about-right {
        flex: 1 1 100%;
    }

    .about-right {
        margin-top: 30px;
    }

    .feature-box {
        flex: 1 1 100%;
    }
}

@media(max-width:550px) {
    .about-left h3 {
        text-align: center;
    }
}

.about-page {
    margin-top: 130px;
}

@media(max-width:768px){
    .about-page {
        margin-top: 80px;
}
}

/*=== About-Section-Ends ===*/


/*=== Gallery-Section-Starts ===*/

.gallery-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.gallery-heading {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: fancy;
    color: var(--purple-color);
    position: relative;
    display: inline-block;
}

.gallery-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #6c63ff; /* adjust for brand color */
    margin: 10px auto 0;
    border-radius: 2px;
}

.gallery-grid {
    position: relative;
    columns: 250px;

}

.gallery-item {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    margin-bottom:6px;
}

.gallery-item img {
    width: 100%;
    transition: transform 0.3s ease;
}
/*=== Gallery-Section-Ends ===*/

/*=== Testimonial-Section-Starts ===*/

.testimonial-section {
    width: 100%;
    height: 50vh;
    padding: 50px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*background-image: url(../../assets/img/products/testimonial.png);*/
    background-color: var(--purple-color);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.testimonial-section .highlight {
    color: white;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2px 7px;
    font-family: poppins-bold;
    letter-spacing: .45px;
}

.testimonial-section .subheading {
    color: white;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.08);
    padding: 2px 7px;
}

.owl-carousel .testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    color: #fff;
    position: relative;
    min-height: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-name {
    font-size: 1.2rem;
    font-weight: bold;
}

.customer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.owl-carousel .owl-item img {
    display: block;
    width: 60px;
}

.stars {
    margin-top: 10px;
    color: gold;
    font-size: 1.1rem;
    /* border: 2px solid green; */
    text-align: end;
}

.review-text {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 15px;
    }
}

/*=== Testimonial-Section-Ends ===*/

/*=== Service-Section-Starts ===*/

.services-section {
    background: url('https://images.squarespace-cdn.com/content/v1/63cae41a333ef829d79269a0/b211353c-cc8a-448f-a2ff-698983c17d39/Cateringwedding.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 80px 20px;
    color: #333;
}

.services-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.services-heading {
    font-size: 36px;
    font-weight: bold;
    color: var(--purple-color);
    margin-bottom: 50px;
    position: relative;
    font-family: fancy;

}

.services-heading::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ec4899, #6366f1);
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: background 0.5s ease, color 0.4s ease;
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: var(--purple-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 1s ease, height 0.8s ease;
    z-index: 0;
}

.service-card:hover::before {
    width: 300%;
    height: 300%;
}

.service-card:hover {
    color: white;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #f3f3f3;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--purple-color);
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-desc {
    font-size: 14px;
    color: #555;
}

.service-card:hover .service-desc {
    color: #eee;
}

@media (max-width: 600px) {
    .services-heading {
        font-size: 28px;
    }
}

/*=== Service-Section-Ends ===*/

/*=== Contact-Starts ===*/

/*=== Contact-Page-Starts ===*/

.contact-section {
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 220px;
    margin-bottom: 30px;
}

.company-info,
.inquiry-form {
    flex: 1;
    min-width: 200px;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.heading {
    font-size: 28px;
    color: #222;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-family: geist-bold;
}

.heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #007bff, #b82204);
    border-radius: 5px;
}

.subheading {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    font-family: geist-regular;
}

.info-card {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    margin-bottom: 20px;
    padding: 20px;
    border-left: 4px solid var(--purple-color);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(246, 194, 231, 0.05);
}

.info-card:hover {
    background-color: #511d431f;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--purple-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-right: 15px;
    transition: background-color 0.3s;
}

.info-card:hover .info-icon {
    background-color: var(--purple-color);
}

.info-text h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: geist-regular;
}

.info-text p {
    font-size: 14px;
    color: #444;
    font-family: geist-regular;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

form input,
form textarea,
form select {
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    outline: none;
    transition: border 0.3s;
}

form input:focus,
form textarea:focus,
form select:focus {
    border-color: var(--maroon-color);
}

form textarea {
    resize: vertical;
    min-height: 100px;
}

form button {
    padding: 12px;
    background-color: var(--purple-color);
    color: var(--light-color);
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

form button:hover {
    background-color: #320d28;
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        padding: 10px;
    }
}

.map-section {
    padding: 60px 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-container {
    max-width: 1400px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.map-section h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    font-family: geist-bold;
}

.map-section h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #007bff, #00c6ff);
    border-radius: 5px;
}

.map-section p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
    max-width: 700px;
    font-family: geist-regular;
}

.map-iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

@media (max-width: 768px) {

    .contact-section {
        margin-top: 120px;

}

    .map-section h2 {
        font-size: 26px;
    }

    .map-section p {
        font-size: 14px;
    }

    .map-iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-iframe {
        height: 300px;
    }
}

/*=== Contact-Page-Ends ===*/

/*=== Product-Page-Starts ===*/

.product-page{
    overflow-x: hidden;
    max-width: 100%;
}

.product-heading {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-top: 70px;
    margin-bottom: 30px;
    color: var(--purple-color);
    font-family: fancy;
}

.product-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-image {
    flex: 1 1 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-box {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    background-color: #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-details {
    flex: 1 1 500px;
}

.product-details h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--purple-color);
    font-family: geist-bold;
}

.product-details p {
    font-size: 15px;
    color: #555;
    margin-bottom: 24px;
}

.btn-group {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-group a {
    padding: 12px 26px;
    background-color: var(--purple-color);
    border: 1px solid var(--purple-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-group a:hover {
    border: 1px solid var(--purple-color);
    background-color: transparent;
    color: var(--purple-color);
}

/* .btn-group a span {
    position: relative;
    z-index: 1;
} */

.key-features {
    margin-top: 40px;
}

.key-features h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--purple-color);
    font-family: geist-bold;
}

.key-features ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.key-features ul li {
    margin-bottom: 10px;
    list-style: disc;
    color: #444;
}

.key-features p {
    font-size: 15px;
    color: #555;
}

@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        padding: 30px 20px;
    }

    .product-heading {
        font-size: 30px;
    }

    .product-details h2 {
        font-size: 24px;
    }

    .btn-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn-group a {
        width: 100%;
        text-align: center;
    }

    .product-heading {
        margin-top: 125px;
        margin-bottom: 15px;

    }
}

/*=== Product-Page-Ends ===*/

/*=== Footer-Starts ===*/

.footer {
    background-color: var(--purple-color);
    color: #fff;
    padding: 40px 20px 20px;
}

.footer h5 {
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer a {
    color: var(--light-color);
    text-decoration: none;
    font-family: geist-regular;
}

.footer a:hover {
    text-decoration: underline;
}

.footer ul li {
    color: var(--light-color);
}

.footer p:nth-child(2) {
    color: var(--light-color);
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 10px;
}

.footer-bottom {
    background-color: var(--light-color);
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    margin-top: 30px;
}

.social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: var(--purple-color);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons .social-icon:hover {
    color: var(--purple-color);
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.social-icons {
    margin-top: 20px;
    gap: 15px;
}

@media (max-width: 767px) {
    .pages-services {
        flex-direction: row !important;
        justify-content: space-between;
    }
}


/*=== Footer-Ends ===*/