body {
    font-family: 'Montserrat', sans-serif;
}

.top-bar {
    background-color: #3f0660;
    color: white;
    font-size: 14px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

/* Social icon hover effect */
.top-bar .social-icons a {
    background: white;
    color: #32074b;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    transition: all 0.3s ease;
    /* smooth animation */
}

.top-bar .social-icons a:hover {
    background: #ff007f;
    color: rgb(255, 255, 255);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link.active {
    color: #3f0660;
    color: rgb(241, 131, 29) !important;
    position: relative;
    margin-top: -40px;
    padding-top: 45px;
    height: 100px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-link.active {
        background-color: grey;
        color: white !important;
        margin-top: 0;
        padding-top: .5rem;
        height: auto;
    }
}

@media (min-width: 992px) {
    .navbar-nav .nav-link.active {
        position: relative;
        margin-top: -40px;
        padding-top: 45px;
        height: 100px;
    }
}

@media (max-width: 991.98px) {
    .navbar-nav .nav-item {
        background-color: #6900a5;
        ;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .navbar-nav .nav-link {
        color: white !important;
        padding: 10px 15px;
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
}

.navbar-nav .nav-link {
    font-weight: bold;
}

/* Dropdown text wrap & responsive fix */
.dropdown-menu .dropdown-item {
    white-space: normal !important;
    width: 200px;
    /* optional - dropdown width increase */
    line-height: 18px;
    font-size: 14px;
}

/* Mobile view me dropdown full width */
@media (max-width: 576px) {
    .dropdown-menu {
        min-width: 230px;
    }
}

/* Hover dropdown highlight */
.dropdown-menu .dropdown-item:hover {
    background-color: #6900a5;
    ;
    color: #fff;
}

/* Hover on lg open in dropdown */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Navbar sticky animation */
.sticky-animate {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1020;
    /* above other content */
    animation: slideDown 0.8s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Slide down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* crausel indicator */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #ececec;
    margin: 0 5px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #078db6;
    opacity: 1;
    transform: scale(1.2);
}
.navbar-toggler {
    border: 3px solid rgb(122, 7, 179) !important;
    border-radius: 50% !important;
    padding: 0.25rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base Button */
.web-effect-btn {
    background-color: #5706ee;
    color: #fff;
    overflow: hidden;
    position: relative;
    transition: color .4s ease;
}

/* Hover fill layer */
.web-effect-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ff007f;
    /* hover पर जो color आएगा */
    transition: all .8s ease;
    z-index: -1;
}

/* Hover Effect */
.web-effect-btn:hover::before {
    left: 0;
}

.web-effect-btn:hover {
    color: #fff;
}

/*Welcome to Our Services*/
/* READ MORE BUTTON */
.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all .4s ease;
}

/* Arrow animation */
.read-more-btn span {
    transition: transform .3s ease;
}

/* Hover Effect */
.service-box:hover .read-more-btn {
    background: #000;
    color: #fff;
}

.service-box:hover .read-more-btn span {
    transform: translateX(6px);
}

/* Button shine effect */
.read-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .4),
            transparent);
    transition: .5s;
}

.service-box:hover .read-more-btn::before {
    left: 100%;
}

.services-section .service-box {
    transition: .4s;
    cursor: pointer;
}

.service-box:hover {
    transform: translateY(-10px);
}

/* ICON / IMAGE CIRCLE */
.icon-wrap {
    width: 110px;
    height: 110px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s ease;
    background: #000;
    overflow: hidden;
}

.service-box:hover .service-img {
    transform: scale(1.15);
    transition: .4s;

}

/* IMAGE STYLE */
.service-img {
    width: 150%;
    height: 150%;
    object-fit: contain;

}

/* Default Colors */
.orange {
    background: #ffa02ce4;
}

.black {
    background: #000;
}

/* Hover Effects */
.service-box:hover .icon-wrap {
    transform: scale(1.12) rotate(6deg);
    background: #e67676;
    /* main highlight hover color */
    color: #1a191b;
    /* icon color change */
}

/* Responsive spacing */
@media (max-width:768px) {
    .icon-wrap {
        width: 90px;
        height: 90px;
        font-size: 30px;
    }
}

@media (max-width:576px) {
    .service-box:hover .service-img {
        transform: scale(1.05);
    }
}

@media (max-width:575px) {
    .service-box p {
        font-size: 12px;
    }
}

/* Fix for small screens */
@media(max-width:576px) {
    .services-section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .service-box {
        padding: 10px 0;
    }

    .icon-wrap {
        width: 75px;
        height: 75px;
        font-size: 26px;
    }
}

/*gallery*/
.gallery-wrapper {
    width: 90%;
    margin: auto;
    padding: 40px 0;
    font-family: Arial;
}

.paragraph h2 {
    color: #e36a1c;
    font-size: 22px;
    margin: 0;
    border-left: 4px solid #1bc29d;
    padding-left: 8px;
}

.paragraph h1 {
    font-size: 38px;
    color: #032a60;
    font-weight: 700;
}

.gallery-img {
    overflow: hidden;
    border-radius: 8px;
    display: block;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease-in-out;
}

.gallery-img:hover img {
    transform: scale(1.07);
}

#galleryModal .btn-close-custom {
    z-index: 9999 !important;
}

.see-more {
    display: inline-block;
    margin-top: 25px;
    background: #ff7a32;
    padding: 8px 22px;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
}

.social-section-title {
    background: #1f2937;
    color: white;
    padding: 12px 16px;
    font-weight: bold;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
}

.social-section-title .icon {
    background: rgb(255, 171, 15);
    color: #fdfdfe;
    padding: 8px 10px;
    font-size: 18px;
}

.social-card-body {
    height: 500px;
    overflow-y: auto;
}

.fb-page,
.snapwidget-widget,
iframe {
    width: 100% !important;
    border: none;
}

@media (max-width: 768px) {
    .social-card-body {
        height: 400px;
    }
}

/*footer*/
.social a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    margin: 0 6px;
    font-size: 18px;
    color: #481874;
    background: #ffffff;
    /* default icon BG */
    border-radius: 50%;
    transition: all .4s ease;
    text-decoration: none;
}

.social a:hover {
    transform: rotate(360deg) scale(1.1);
    color: #fff;
}

/* Different hover colors (Optional but looks Premium) */
.social a:nth-child(1):hover {
    background: #1877f2;
}

/* Facebook */
.social a:nth-child(2):hover {
    background: #1DA1F2;
}

/* Twitter */
.social a:nth-child(3):hover {
    background: #E4405F;
}

/* Instagram */
.social a:nth-child(4):hover {
    background: #FF0000;
}

.list :hover {
    color: red;
}

.footer-link {
    position: relative;
    display: inline-block;
    color: #fff;
    padding-bottom: 3px;
    text-decoration: none;
}

.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    /* text के बराबर width */
    background: #fff;
    transform: scaleX(0);
    /* Initially hidden */
    transform-origin: left;
    /* Left से grow होगा */
    transition: transform .4s ease;
}

.footer-link:hover::after {
    transform: scaleX(1);
    /* Text के बराबर width तक underline */
}

/* Facebook & Instagram Responsive Fix */
.fb-page,
.instagram-media,
iframe {
    max-width: 100% !important;
    width: 100% !important;
}

/* Card padding fix on small screens */
@media(max-width:576px) {
    .card-body {
        padding: 0 !important;
    }
}

.insta-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.instagram-media {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 10px !important;
}

.card-body {
    overflow-x: hidden;
}

/*all social media page css*/
.banner {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.banner h1 {
    background: rgba(0, 0, 0, 0.45);
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 32px;
    font-weight: 700;
}

.content-section {
    padding: 50px 0;
}

.content-section h2 {
    font-size: 26px;
    font-weight: 700;
}

.content-section p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
}

/* contact page */
.contact-box {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info i {
    font-size: 20px;
    width: 35px;
}

/* Mobile optimization */
@media(max-width: 768px) {
    .contact-banner h1 {
        font-size: 32px;
    }
}

/* Content Styles */
.content-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.content-wrapper:hover {
    transform: translateY(-5px);
}

.title-main {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7a07b3 0%, #4a00e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1.2;
}

.subtitle {
    color: #dc3545;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #dc3545, transparent);
    border-radius: 2px;
}

.hr-custom {
    height: 4px;
    background: linear-gradient(90deg, #4a00e0, #7a07b3);
    border: none;
    margin: 20px 0;
    opacity: 1;
    width: 100px;
}

.content-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    text-align: justify;
    margin-bottom: 30px;
}

/* Floating Elements */
.floating-icon {
    position: absolute;
    font-size: 24px;
    color: #7a07b3;
    opacity: 0.2;
    z-index: 0;
}

.floating-icon:nth-child(1) {
    top: 10%;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(2) {
    top: 15%;
    right: 8%;
    animation: float 7s ease-in-out infinite 1s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation: float 5s ease-in-out infinite 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .circle-animation-wrapper {
        max-width: 320px;
        margin-bottom: 40px;
    }

    .center-logo {
        width: 40%;
    }

    .title-main {
        font-size: 2.3rem;
    }

    .content-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .attractive-section {
        padding: 60px 0;
    }

    .circle-animation-wrapper {
        max-width: 280px;
    }

    .title-main {
        font-size: 2rem;
    }

    .content-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .circle-animation-wrapper {
        max-width: 220px;
    }

    .center-logo {
        width: 45%;
    }

    .content-wrapper {
        padding: 25px;
    }

    .title-main {
        font-size: 1.8rem;
    }

    .web-effect-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* testtimonilas */
.review-section {
    background: #eb8a33;
    background-image: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.05) 10px,
            transparent 10px,
            transparent 20px);
}

/* TESTIMONIAL */
.testimonial-box {
    background: #2c2c2c;
    padding: 30px;
    border-radius: 12px;
    color: #fff;
}

.testimonial-box p {
    font-style: italic;
    font-size: 15px;
}

.client h6 {
    color: #fff;
}

.client small {
    color: #bbb;
}

/* FORM CARD */
.contact-card {
    background: #ffe4b0;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);
}

.contact-card input,
.contact-card textarea,
.contact-card select {
    border-radius: 8px;
    font-size: 14px;
}

.submit-btn {
    background: #eb8a33;
    border: none;
    padding: 10px 35px;
    border-radius: 30px;
    font-weight: 600;
}

.submit-btn:hover {
    background: #000;
    color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
    .review-section h3 {
        text-align: center;
    }
}
/* .service-card */
.section-title {
    font-weight: 700;
    position: relative;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-title::before,
.section-title::after {
    content: "";
    flex: 1;
    height: 3px;
    background: #ffc107;
    max-width: 80px;
}

.section-title span {
    white-space: nowrap;
}

.section-subtitle {
    max-width: 700px;
    margin: auto;
    color: #555;
}

/* Card */
.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    height: 100%;
    display: block;
    text-decoration: none;
    color: #000;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(59, 57, 57, 0.673);
}

.service-card hr {
    width: 50px;
    height: 4px;
    background: #ffc107;
    border: none;
    margin: 12px 0 18px;
    transition: 0.3s;
}

/* Icon */
.service-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
    transition: 0.35s;
}

.icon.yellow {
    color: #ffc107;
}

/* Hover Effects */
.service-card:hover {
    background: #b051f0a0;
    color: #000;
    transform: translateY(-8px);
}

.service-card:hover hr {
    background: #000;
}

.service-card:hover .icon {
    color: #ffc107;
}

.service-card:hover .learn {
    transform: translateX(6px);
}
/* ===== about faq SECTION ===== */
.web-section {
background: #f8f9fc;
color: #0d0d0d;
padding: 80px 0 100px;
position: relative;
}

/* ===== TEXT ===== */
.web-title {
font-size: 42px;
font-weight: 700;
}

.web-desc {
color: #010101;
margin: 20px 0;
}

/* ===== BUTTON ===== */
.btn-contact {
background:rgb(122, 7, 179);
color: #fff;
padding: 12px 28px;
border-radius: 30px;
}

/* ===== FAQ SIMPLE WITH CIRCLE + - ===== */
.faq-box .accordion-item {
background: transparent;
border: none;
}

.faq-box .accordion-button {
background: transparent;
color: hsl(0, 0%, 0%);
padding-left: 0;
padding-right: 60px;
/* space for circle */
font-size: 16px;
position: relative;
box-shadow: none;
}

/* remove default bootstrap arrow */
.faq-box .accordion-button::after {
display: none;
}
/* CIRCLE ICON */
.faq-box .accordion-button::before {
content: "+";
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 34px;
height: 34px;
border: 1.5px solid rgb(122, 7, 179);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 20px;
font-weight: 600;
color: rgb(122, 7, 179);
transition: all 0.3s ease;
}

/* OPEN STATE = MINUS */
.faq-box .accordion-button:not(.collapsed)::before {
content: "−";
background: rgb(122, 7, 179);
color: #fff;
}

/* BODY */
.faq-box .accordion-body {
color: #0e0e0e;
padding-left: 0;
}

/* model section about page */
.about-section {
padding: 80px 0;
}
.counter-box h2 {
font-size: 42px;
font-weight: 700;
}
.counter-box p {
margin-bottom: 30px;
color: #777;
}
.about-img {
border-radius: 20px;
width: 100%;
}
.about-title {
font-size: 42px;
font-weight: 700;
}
.about-desc {
color: #666;
margin: 20px 0;
}
.read-btn {
background: #2456ff;
color: #fff;
padding: 12px 28px;
border-radius: 30px;
border: none;
}
/* MOBILE */
@media(max-width:768px) {
.about-title {
font-size: 28px;
}

.counter-box {
text-align: center;
}

}
/* about section director  */
        .profile-section {
            position: relative;
            min-height: 100vh;
            overflow: hidden;
        }

        .profile-content {
           background: rgba(255, 255, 255, 0.45); /* 45% transparent */
            backdrop-filter: blur(6px);            /* optional premium look */
            -webkit-backdrop-filter: blur(6px);
            position: absolute;
            left: 20%;
            top: 50%;
            transform: translateY(-50%);
            max-width: 480px;
            z-index: 2;  
        }

        .profile-content h1 {
            font-size: 48px;
            font-weight: 700;
        }

        .profile-content p {
            font-size: 16px;
            color: #333;
            margin-top: 15px;
        }

        .read-more-btn {
            margin-top: 20px;
            padding: 10px 26px;
            border-radius: 30px;
        }

        .profile-img {
            position: absolute;
            right: 0;
            bottom: 0;
            max-height: 100%;
            width: auto;
            object-fit: contain;
        }
        /* Mobile Responsive */
        @media (max-width: 991px) {

            .profile-section {
                min-height: auto;
            }
            .profile-content {
                position: relative;
                left: 0;
                top: 0;
                transform: none;
                padding: 30px 20px;
                text-align: center;
                max-width: 100%;
            }

            .profile-img.img-fluid {
                width: auto !important;
                max-width: 50% !important;
                height: auto;
                max-height: 100vh;
                object-fit: contain;
                margin: 0 auto;
                display: block;
            }
        }
/* home section about */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .what-we-do {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            align-items: stretch;
        }

        .col {
            padding: 80px 60px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .col-left,
        .col-right {
            background-color: #f6f6f6;
        }

        .col-center {
            background-color: #ffffff;
        }

        .col-left h1 {
            font-size: 130px;
            font-weight: 800;
            line-height: 1;
        }

        .col-left h1 span {
            color: rgb(122, 7, 179);
        }

        .col h2 {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .line {
            width: 80px;
            height: 3px;
            background: rgb(122, 7, 179);
            margin-bottom: 25px;
        }

        .col em {
            display: block;
            font-style: italic;
            color: #444;
            margin-bottom: 20px;
        }

        .col p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }

        .link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 10px;
            font-weight: 700;
            font-size: 25px;
            color: #000;
            text-decoration: none;
            padding-bottom: 4px;
            border-bottom: 2px solid transparent;
            transition: color 0.3s ease, border-color 0.3s ease;
        }

        .link::after {
            content: "→";
            transition: transform 0.3s ease;
        }

        .link:hover {
            color: rgb(122, 7, 179);
            border-bottom-color: rgb(122, 7, 179);
        }

        .link:hover::after {
            transform: translateX(4px);
        }

        @media (max-width: 767px) {
            .what-we-do {
                grid-template-columns: 1fr;
            }

            .col {
                padding: 40px 25px;
            }

            .col-left h1 {
                font-size: 72px;
            }

            .col h2 {
                font-size: 28px;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .what-we-do {
                grid-template-columns: 1fr 1fr;
            }

            .col-left {
                grid-column: span 2;
            }

            .col-left h1 {
                font-size: 64px;
            }
        }

        @media (min-width: 992px) {
            .what-we-do {
                grid-template-columns: repeat(3, 1fr);
            }
        }
