@import url('https://fonts.googleapis.com/css2?family=Aleo:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Aleo", serif;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

:root {
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --primary: #6A1B9A;    
    --secondary: #9C27B0; 
    --text-main: #222222;
    --text-muted: #eee;
    --border-color: #e6e6e6;
}

.section-background {
    background-color: #f5f6f8;
}

.active-menu {
    color: var(--primary)!important;
    border: 2px solid var(--primary);
    border-radius: 5px;
}

.nav-link {
    padding: .2rem .5rem!important;
}

/* Custom Styles */


.top-bar {
    background-color: #f5f6f8;
    color: #000;
    padding: 10px 20px;
}

.top-bar .contact-info {
    display: inline-block;
    margin-right: 20px;
}

.top-bar .social-icons {
    display: inline-block;
}

.top-bar a {
    color: #000;
    text-decoration: none;
    margin: 0 10px;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* padding: 18px 0; */
    transition: 0.5s;
}

.navbar .navbar-brand {
    color: #6A1B9A;
}

.navbar .navbar-brand img {
    width: 150px; /* Adjust as needed */
    height: auto;
}


/* Active Menu Item */
.navbar-nav .nav-item.active .nav-link {
    color: #6A1B9A; /* Set the color for active menu item */
    font-weight: bold; /* Optional: Make active item bold */
}

/* Hover Menu Item */
.navbar-nav .nav-item .nav-link:hover {
    color: #6A1B9A; /* Set hover color */
}

/* Default Color for Menu Items */



/* Mobile Sidebar */
#sidebarMenu {
    position: fixed;
    top: 0;
    right: -250px;
    height: 100%;
    width: 250px;
    background-color: #fff;
    padding-top: 60px;
    transition: 0.5s;
    z-index: 101;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    overflow-x: hidden;
}

#sidebarMenu ul {
    list-style: none;
    padding: 0;
}

#sidebarMenu ul li {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#sidebarMenu ul li a {
    color: #000;
    text-decoration: none;
    padding: .2rem .5rem;
}

#sidebarMenu ul li a:hover {
    color: #9C27B0;
}

#sidebarMenu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #000;
    cursor: pointer;
}

/* Mobile Menu Button */
.menu-btn {
    font-size: 30px;
    color: #4a4a4a;
    background-color: transparent;
    border: none;
    display: none;
}

.menu-btn:focus {
    outline: none;
}


/* -----banner section start here -----*/

.feature-section {
    /* background-color: #f3f3f3; */
    padding: 60px 0;
    overflow-x: hidden;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.3s;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    flex-shrink: 0;
}

.icon-1 { background: #FFC107; }
.icon-2 { background: #FF7043; }
.icon-3 { background: #26C6DA; }

.feature-title {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 8px;
}

.feature-text {
    color: #6c757d;
    margin: 0;
}

.feature-box:hover .feature-title {
    color: #6A1B9A;
}

.feature-box:hover .feature-icon {
    background: linear-gradient(45deg, #6A1B9A, #9C27B0);
}

.service-section{
    /* background:#f4f6f9; */
    padding:80px 0;
    overflow-x: hidden;
}

.section-title{
    font-weight:700;
    /* font-size:42px; */
    color:#1f2430;
}

.section-subtitle{
    color:#6c757d;
    max-width:650px;
    margin:20px auto 60px;
}

.service-box{
    padding:20px;
    transition:0.3s ease;
}

.service-icon{
    font-size:40px;
    color: var(--secondary);
    margin-bottom:20px;
}

.service-title{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
}

.service-text{
    color:#6c757d;
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-box:hover .service-icon{
    color:#6A1B9A;
}

.why-section{
    padding-bottom:90px;
    /* background:#f5f6f8; */
    position:relative;
    overflow:hidden;
}

.why-title{
    /* font-size: 42px; */
    font-weight: 700;
}

.image-wrapper{
    width:100%;
    border-radius:12px;
    height: 100%;
}

.image-wrapper img{
    width:100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.small-img{
    height:220px;
}

.tall-img{
    height:460px;
}

.why-section-subtitle{
    color: var(--primary);
    font-weight:600;
    margin-bottom:15px;
}

.why-section-title{
    font-size:40px;
    font-weight:700;
    color:#1f2430;
    line-height:1.3;
}

.why-section-text{
    color:#6c757d;
    margin:20px 0 30px;
}

.product-section{
    padding:100px 0;
    background:#f5f6f8;
    text-align:center;
}

.product-subtitle, .contact-subtitle{
    color: var(--primary);
    font-weight:600;
    letter-spacing:1px;
    font-size:14px;
}

.product-title{
    /* font-size:42px; */
    font-weight:700;
    margin:15px 0;
}

.product-text, .contact-text{
    color:#6c757d;
    max-width:700px;
    margin:0 auto 60px;
}

.product-card{
    background:#fff;
    padding:40px 30px;
    border-radius:12px;
    text-align:left;
    transition:0.3s;
    height:100%;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.product-card h3{
    font-size: 1.2rem;
    font-weight:600;
    margin:15px 0;
}

.product-card p{
    color:#6c757d;
    font-size:14px;
}

.product-card ul{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.product-card ul li{
    margin-bottom:10px;
    font-size:14px;
}

.product-btn{
    display:inline-block;
    padding:10px 20px;
    background: var(--primary);
    color:#fff;
    border-radius:5px;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
}

.product-card:hover{
    transform:translateY(-8px);
    color:#fff;
    background: var(--primary);
}

.icon-style{
    font-size:35px;
    color: var(--primary);
}

.product-card:hover .icon-style{
    color:#fff;
}

.product-card:hover .product-btn{
    background:#fff;
    color: var(--primary);
}

.product-card:hover ul li, .product-card:hover p{
    color:#fff;
}

.product-card:hover p {
    color: rgba(255, 255, 255, 0.6);
}

/* Custom styles for the hero banner */
.hero-banner {
    height: 100vh;
    background-color: transparent;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Overlay on images */
.carousel-item {
    position: relative;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Smooth transition for each slide */
}

.carousel-item.active {
    opacity: 1; /* Active slide fades in */
}

.carousel-item img {
    /* object-fit: cover; */
    width: 100%;
    height: 100vh;
}

/* Caption positioning */
.carousel-caption {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    /* transform: translate(-50%, -50%); */
    z-index: 10;
    text-align: left;
    color: #fff;
    padding: 0 15px;
    max-width: 100%; 
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards; 
    animation-delay: 0.5s; 
}

/* Caption text style */
.carousel-caption h1, .carousel-caption h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
}

.caption-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.caption-img img {
    /* object-fit: cover; */
    width: 100%;
    height: 100%;
}

/* CTA Button */
.btn-cta {
    background-color: #fff;
    color: var(--primary);
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.btn-cta:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

/* Animation for fadeIn */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Carousel Controls */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #9C27B0;
    border-radius: 50%;
}

.carousel-indicators button {
    background-color: #9C27B0;
}

/* Product Content Section */
.product-content {
    background-color: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
}

.product-content h2 {
    margin-bottom: 20px;
}

.product-content p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.product-content .btn-product {
    background-color: #6A1B9A;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}

.product-content .btn-product:hover {
    background-color: #9C27B0;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 3px;
    margin-left: 3px;
}


/* Add custom styles if needed */
.faq-section {
    background: #f5f6f8;
}

h2.display-4 {
  font-weight: bold;
  color: #6A1B9A; /* Match your primary color */
}

ul.list-group-item {
  font-size: 1.2rem;
  padding: 1rem;
}

.btn-info {
  background-color: #9C27B0; /* Secondary color */
  border-color: #9C27B0;
}

.accordion-item {
    border: none!important;
    /* background: #f5f6f8!important; */
}

/* .accordion-button {
    background: #f5f6f8!important;
} */

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #212529;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125)!important;
}

.accordion-button:focus {
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* ===============================
     CONTACT SECTION
     =============================== */

/* Left Sidebar (Blue) */

.icon-circle {
    width: 70px;
    height: 70px;
    border: 1px dashed #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
}

/* Right Side (Form) */
.contact-details {
    background: var(--primary);
}

.mb-40-px {
    margin-bottom: 40px;
}

.contact-details h6, .contact-details h5 {
    color: #fff;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form {
    width: 100%;
    padding: 50px;
}

.contact-form h2 {
    font-size: 32px!important;
    margin-bottom: 30px;
    color: #222;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.input-group i {
    position: absolute;
    left: 0;
    top: 10px;
    color: #888;
}

.input-group input, .input-group textarea, .input-group select {
    width: 100%;
    padding: 10px 10px 10px 30px;
    border: none;
    outline: none;
    font-size: 16px;
}



textarea {
    height: 100px;
    resize: none;
}

.btn-send {
    padding: 12px 30px;
    border: 2px solid var(--primary);
    background: var(--primary);
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-send:hover {
    background: transparent;
    color: var(--primary);
}

/* ===============================
     BLOG SECTION
     =============================== */

.blog-section {
    background: var(--bg-section);
}

.blog-card {
    background: var(--bg-card);
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-img img {
    width: 100%;
    height: 230px;
    /* object-fit: cover; */
}

.blog-content {
    padding: 25px;
}

.blog-content h5 {
    color: var(--text-main);
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.blog-meta {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 15px;
}

.blog-meta span {
    margin-right: 15px;
}

.blog-content p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
    line-height: 1.7;
}

.read-more {
    color: var(--primary);
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
}

.read-more:hover {
    color: var(--secondary);
}

.blog-header {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
    padding: 60px 0;
}
.blog-details-content img {
    max-width: 100%;
    border-radius: 8px;
}
.author-box {
    background: #fff;
    border-left: 4px solid #0d6efd;
    padding: 20px;
    margin-top: 30px;
}
.comment-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}
.blog-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}
.tag {
    font-size: 12px;
    margin-right: 5px;
}

.recent-post {
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.recent-post:hover {
    background-color: #f1f5ff;
    transform: translateX(5px);
}

.recent-img {
    width: 80px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

.post-title {
    text-decoration: none;
    color: #212529;
    font-weight: 600;
}

.post-title:hover {
    color: #0d6efd;
}


/* ==============================
   FOOTER
   ============================== */

.wave-footer{
  position: relative;
  background: linear-gradient(135deg, #6A1B9A, #6A1B9A);
  color: #fff;
  padding-top: 120px;
}

.footer-wave{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg{
  width: 100%;
  height: 120px;
}

.footer-content{
  position: relative;
  z-index: 2;
}

.wave-footer h5{
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

.wave-footer p{
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.wave-footer ul{
  list-style: none;
  padding: 0;
}

.wave-footer ul li{
  margin-bottom: 10px;
}

.wave-footer ul li a{
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
}

.wave-footer ul li a:hover{
  text-decoration: underline;
}

.social-icons a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  margin-right: 8px;
  color: #fff;
  transition: 0.3s;
  text-decoration: none;
}

.social-icons a:hover{
  background: #000;
  color: #1d2bb8;
}

.footer-newsletter input{
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 10px;
}

.footer-newsletter button{
  width: 100%;
  padding: 10px;
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 6px;
  font-weight: 600;
}

.footer-bottom{
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.25);
  font-size: 13px;
}

/* ==============================
   SUBPAGE
   ============================== */

.subpage-header {
    background-color: var(--primary);   /* Pink background */
    min-height: 250px;
    padding: 80px 0;
    color: #fff;
}

.subpage-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb-item a:hover {
    opacity: 1;
}

.breadcrumb-item.active {
    color: #ffffff;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff;
}

.modal-dialog {
    max-width: 600px!important;
}

.modal-content {
    border-radius: 0!important;
}


/* --------- media queries strat here ----------- */

/* Media Query for mobile and tablet (screen width less than 992px) */
@media (max-width: 991px) {
    body {
        overflow-x: hidden;
    }

    h1, h2 {
        font-size: 1.8rem;
    }

    .custom-text {
        text-align: center;
    }

    /* Sticky Navbar */
    .navbar.mobile-fixed {
        position: fixed;
        top: 0;
        z-index: 100;
        width: 100%;
        overflow-x: hidden;
    }

    .navbar-nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .top-bar {
        display: none;
    }

    /* Show sidebar in mobile/tablet view */
    /* #sidebarMenu {
        display: block;
    } */

    /* Align menu items to the right on mobile */
    .navbar-collapse {
        text-align: right;
    }

    .carousel-caption {
        top: 30%!important;
    }

    .subpage-header {
        margin-top: 50px;
    }

    .blog-img img {
        height: auto!important;
    }
}

/* Hide sidebar for desktop */
@media (min-width: 992px) {
    h1, h2 {
        font-size: 2.5rem;
    }

    /* #sidebarMenu {
        display: none;
    } */

    /* Align menu items to the right on desktop */
    .navbar-collapse {
        text-align: right;
    }

    /* Sticky Navbar */
    .navbar.top-fixed {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        width: 100%;
    }

}

/* Responsive Styles */
@media (max-width: 768px) {
   
    .carousel-caption p {
        font-size: 1.2rem;
    }

    .btn-cta {
        font-size: 1rem;
        padding: 10px 25px;
    }
}

@media (max-width: 576px) {

    .carousel-caption p {
        font-size: 1rem;
    }

    .btn-cta {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
}

/* --------- media queries end here ----------- */