body{
    overflow-x: hidden !important;
}

 /* 1. Ensure the parent container doesn't clip the menu */
    .nav-item.dropdown {
        position: relative;
    }

    /* 2. Fix the Dropdown Menu appearance and positioning */
    .navbar-nav .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 280px;
        background-color: #ffffff !important;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
        margin-top: 5px !important;
        padding: 10px 0;
        z-index: 1000;
    }

    .dropdown-menu.show {
        display: block;
    }

    /* 4. Style the individual project links */
    .dropdown-item {
        font-size: 14px;
        font-weight: 500;
        color: #333;
        padding: 12px 20px;
        text-transform: uppercase;
        transition: all 0.3s ease;
        white-space: normal;
    }

    /* 5. Hover effect for the links */
    .dropdown-item:hover {
        background-color: #f8f9fa;
        color: #198754;
        padding-left: 25px;
    }

    /* 6. Fix for mobile/header overflow */
    header,
    .navbar,
    .container-fluid {
        overflow: visible !important;
    }

/*====================
5. Margin & padding
======================*/

.pt-0 {
  padding-top: 0px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-120 {
  padding-top: 120px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-120 {
  padding-bottom: 120px;
}

.py-50 {
  padding: 50px 0;
}

.py-80 {
  padding: 80px 0;
}

.py-90 {
  padding: 90px 0;
}

.py-100 {
  padding: 100px 0;
}

.py-110 {
  padding: 110px 0;
}

.py-120 {
  padding: 120px 0;
}

.mt-0 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-120 {
  margin-bottom: 120px;
}

.my-80 {
  margin: 80px 0;
}

.my-90 {
  margin: 90px 0;
}

.my-100 {
  margin: 100px 0;
}

.my-110 {
  margin: 110px 0;
}

.my-120 {
  margin: 120px 0;
}


    .service-item img {
        height: 20rem;
        width: 100%;
    }

    .project-carousel {
        padding: 0 10px;
    }

    /* Individual Project Card */
    .project-item {
        position: relative;
        border-radius: 8px;
        background: #ffffff;
        padding-bottom: 20px;
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
        /* Subtle shadow for depth */
        overflow: hidden;
    }

    /* Image Styling & Zoom Effect */
    .project-item .position-relative {
        overflow: hidden;
        border-top-right-radius: 8px;
        border-top-left-radius: 8px;
    }

    .project-item img {
        width: 100%;
        height: 250px;
        /* FIXED HEIGHT: Ensures all images are same size */
        object-fit: cover;
        /* Crops image cleanly */
        transition: .5s;
    }

    .project-item:hover img {
        transform: scale(1.1);
        /* Zoom effect on hover */
    }

    /* Dark Overlay on Hover */
    .project-item .project-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: .5s;
        z-index: 2;
    }

    .project-item:hover .project-overlay {
        opacity: 1;
    }

    /* Link Button in Overlay */
    .btn-square {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border-radius: 5px;
    }

    /* Slider Arrows (Navigation) */
    .project-carousel .owl-nav {
        position: absolute;
        top: -85px;
        right: 0;
        display: flex;
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFFFFF;
        background: var(--primary);
        /* Uses your theme color */
        border-radius: 4px;
        font-size: 20px;
        margin-left: 10px;
        transition: .5s;
    }

    .project-carousel .owl-nav .owl-prev:hover,
    .project-carousel .owl-nav .owl-next:hover {
        background: #000;
    }

    /* Custom Styles for CTA Section */
    .cta-section {
        position: relative;
        /* Using the same image you have */
        background-image: url('https://shreejeehomes.in/admin/img/banner/banner_694bbdd9e08f61.26883873.webp');
        background-size: cover;
        background-position: center;
        padding: 100px 0;
        /* More padding for better look */
    }

    /* Dark Overlay - Made darker (0.85) for better text contrast */
    .cta-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6));
        /* Gradient for style */
        z-index: 1;
    }

    .cta-content {
        position: relative;
        z-index: 2;
    }

    /* Glass Card - Improved visibility */
    .glass-card {
        background: rgba(255, 255, 255, 0.15);
        /* Slightly clearer */
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 12px;
    }

    /* Force text colors to override theme defaults */
    .cta-title {
        color: #ffffff !important;
        text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
        /* Shadow for readability */
    }

    .cta-text {
        color: #e0e0e0 !important;
    }

    /*----------------------------------faq--------*/
    .premium-faq-section {
        background: linear-gradient(135deg, #1a2a45 0%, #122038 100%);
        font-family: 'Nunito Sans', sans-serif;
        padding: 80px 0;
        color: #f0f0f0;
    }

    .premium-faq-section .section-title {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size: 2.5rem;
        color: #ffffff;
        position: relative;
        padding-bottom: 15px;
        margin-bottom: 10px;
    }

    .premium-faq-section .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #00f5d4;
        border-radius: 2px;
    }

    .premium-faq-section .section-subtitle {
        font-size: 1.1rem;
        color: #a0b3d1;
        max-width: 600px;
        margin: 0 auto 50px auto;
    }

    .premium-faq-section .faq-card {
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        margin-bottom: 20px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .premium-faq-section .faq-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border-color: rgba(0, 245, 212, 0.5);
    }

    .premium-faq-section .faq-question {
        padding: 20px 25px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        font-size: 1.1rem;
        color: #ffffff;
        position: relative;
    }

    .premium-faq-section .faq-question::after {
        content: '\2b';
        font-family: 'Font wonderful 6 Free';
        font-weight: 900;
        font-size: 1.5rem;
        transition: transform 0.2s ease-in-out;
        color: #00f5d4;
    }

    .premium-faq-section .faq-card.active .faq-question::after {
        transform: rotate(45deg);
    }

    .premium-faq-section .faq-card.active .faq-question {
        color: #00f5d4;
    }

    .premium-faq-section .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        font-size: 1rem;
        line-height: 1.7;
        color: #a0b3d1;
        transition: none;
    }

    .premium-faq-section .faq-card.active .faq-answer {
        max-height: 500px;
        padding: 0 25px 20px 25px;

        transition: none;
    }

    .premium-faq-section .faq-answer strong {
        color: #e0e0e0;
    }

    /*--------------------------blog-----------------------*/

    /* --- Sidebar Widget Styling --- */
    .service-sidebar .widget {
        background: #f9f9f9;
        padding: 25px;
        border-radius: 8px;
        border: 1px solid #eee;
        margin-bottom: 30px;
    }

    .service-sidebar .widget-title {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #ddd;
    }

    .service-sidebar .category-list a {
        display: flex;
        align-items: center;
        padding: 12px 15px;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        border-radius: 5px;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }

    .service-sidebar .category-list a .icon-svg {
        margin-right: 10px;
    }

    .service-sidebar .category-list a:hover,
    .service-sidebar .category-list a.active {
        background-color: #182333;
        color: #fff;
    }

    .list-none {
        list-style: none;
    }

    .icon-svg {
        width: 20px !important;
        height: 20px !important;
        vertical-align: middle;
    }

    /* --- Main Service Content Styling --- */
    .service-description-content {
        line-height: 1.7;
        color: #444;
    }

    /* Style for all paragraphs */
    .service-description-content p {
        margin-bottom: 0.5rem;
        font-size: 16px;
        font-weight: 400;
        line-height: 29px;
        color: #757f95;
    }

    /* Style for all links */
    .service-description-content a {
        color: #007bff;
        text-decoration: underline;
    }

    .service-description-content a:hover {
        color: #0056b3;
    }

    /* Style for headings inside the content */
    .service-description-content h1,
    .service-description-content h2,
    .service-description-content h3,
    .service-description-content h4 {
        font-weight: 700;
        line-height: 34px;
        color: #182333;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    /* Style for images */
    .service-description-content img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        display: block;
        margin: 2rem auto;
    }

    /* --- List Styling (Cleaned & Merged) --- */

    .service-description-content ul {
        list-style-type: disc !important;
        list-style-position: inside !important;
        padding-left: 25px !important;
        margin-bottom: 1.5rem !important;
    }

    /* This targets the numbered (1, 2, 3) list */
    .service-description-content ol {
        list-style-type: decimal !important;
        list-style-position: inside !important;
        padding-left: 25px !important;
        margin-bottom: 1.5rem !important;
    }

    /* This forces the browser to render the bullet/number */
    .service-description-content li {
        display: list-item !important;
        margin-bottom: 10px !important;
        font-size: 16px;
        font-weight: 400;
        line-height: 29px;
        color: #757f95;
    }

    /* --- Even MORE specific rules to override theme styles --- */
    .service-single-area .service-description-content ul {
        list-style: disc !important;
    }

    .service-single-area .service-description-content ol {
        list-style: decimal !important;
    }

    .service-single-area .service-description-content li {
        display: list-item !important;
    }

    /* --- Table Styling --- */
    .service-description-content figure.table {
        width: 100%;
        overflow-x: auto;
        margin-bottom: 1.5rem;
    }

    .service-description-content figure.table table {
        width: 100%;
        border-collapse: collapse;
        border: 1px solid #ddd;
    }

    .service-description-content figure.table td,
    .service-description-content figure.table th {
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: left;
        vertical-align: top;
    }

    .service-description-content figure.table th {
        background-color: #f8f8f8;
        font-weight: 600;
    }
    
    
/*---------------------blog--------*/
.visa-itembl {
    position: relative;
    padding: 0px;
    background: var(--color-white);
    box-shadow: var(--box-shadow);
    border-radius: 30px;
}

.visa-title a{
    color: #182333;
}


.visa-contentbl {
    padding: 20px;
}

.visa-imgbl {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 0px;
}

.visa-imgbl img {
    border-radius: 25px 25px 0 0;
    /* TL | TR | BR | BL */
}

@media(max-width:788px){
    .logo-txt{
        font-size:20px;
    }
    .whimgbox{
        padding: 0 !important;
    }
}