/* Custom Scrollbar Styles */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* light background */
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    /* primary color thumb */
    border-radius: 10px;
    border: 1px solid var(--light);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondary);
    /* darker on hover */
}


/* Firefox support */

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #f1f1f1;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --primary: #2a9d8f;
    --secondary: #264653;
    --accent: #e9c46a;
    --light: #f8f9fa;
    --dark: #343a40;
    --danger: #e76f51;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#about,
#contact,
#blog,
#services {
    display: flex;
    padding-top: 50px;
    position: relative;
    box-sizing: border-box;
    background-image: radial-gradient(#fcadad, #b9f8b9, #b8b8fa);
}


.section-title,
.about-content,
.contact-content,
.blog-content,
.service-content {
    text-align: center;
    margin-top: 5px;
    position: relative;

}

/* Logo Styles */

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding-inline-start: 30px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}


.logo-img {
    height: 40px;
    /* Adjust as needed */
    width: 40px;
}

.logo-text {
    margin-left: 10px;
    font-size: 36px;
    font-weight: 700;
    color: #fc8803;
    text-transform: uppercase;
}

.logo-text span {
    color: #2622fd;
}

body {
    line-height: 1.6;
    color: var(--dark);
}

.container-fluid {
    width: 100%;
    padding-right: 5px;
    padding-left: 5px;
    margin-right: auto;
    margin-left: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/* Header Styles  start*/

header {
    background-color: rgb(233, 236, 236);
    box-shadow: 0 2px 10px rgba(230, 181, 181, 0.1);
    position: fixed;
    width: 100%;
    height: 60px;
    line-height: 15px;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    /* margin-left: 10px;*/
    margin-right: 10px;
    float: left;
}


.nav-link.active {
    color: #1256bb;
    /* Green color for active state */
    font-weight: bold;
    position: relative;
}

.footer-link.active {
    color: #00bcd4;
    /* Cyan blue - change this to your desired color */
    font-weight: bold;
    text-decoration: underline;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #5416ff;
}


nav ul {
    display: flex;
    list-style: none;
}


nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #0a06fc;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--primary);
}


.signup-btn {
    background-color: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    margin-left: 20px;
    transition: background-color 0.3s;
}

.signup-btn:hover {
    background-color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding-right: 5px;
}

/* Header Styles  end*/

/* Hero Section */


/* Hero Slider Styles */

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 4%;
}

.hero-slides {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-size: cover; */
    background-position: center;
    object-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide .slide-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}


.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 150px;
    text-align: center;
    color: rgb(33, 31, 161);
    background-color: rgba(185, 197, 199, 0.7);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .dot.active {
    background: white;
}



/* About Section */
.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: brown;
}


.section-title h3 {
    font-size: 2.0 rem;
    margin-bottom: 10px;
    color: blue;
}


.contant {
    text-decoration: none;
    text-align: left;
}

.contant_left {
    box-sizing: border-box;
    width: calc(80vw - 20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    float: left;
}

.contant_right {
    box-sizing: border-box;
    width: calc(20vw - 20px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    float: right;
}

.contant_titale {
    padding: 10px;
    background: linear-gradient(#0473f1cc, #8cf3facc, #8cf3facc, #1a80f5cc);

}

.contant_details {
    padding-left: 35px;
    padding-right: 30px;
    background: linear-gradient(#e7e0f5cc, #d3d3d6cc);
}

.contant_status {
    padding: 10px;
    background: linear-gradient(#e7e0f5cc, #d3d3d6cc);
}

.contant_titale b {
    font-size: 2.2rem;
    color: #421f07;
}

.partners {
    margin: 10px;
    color: rgb(10, 10, 10);
    background: linear-gradient(135deg, #008cffcc 0%, #1607f1cc 100%);
    display: flex;
}

.partners_list {
    margin-left: 10px;
    padding: 15px;
    width: calc(100% / 4);
    border-radius: 10px 0 0 10px;
    background-color: #f0efef;
}

.contant_product {
    color: rgb(10, 10, 10);
    background-image: linear-gradient(135deg, #008cffcc, #4c39f7cc, #5ba9f1cc);
    display: flex;
    flex-wrap: wrap;
}

.contant_product_list {
    margin: 10px;
    padding: 15px;
    width: calc(100% / 3.2);
    border-radius: 10px 0 0 10px;
    background-color: #eeecec;
    float: left;
}

.why-choose-list {
    list-style: none;
    text-decoration: none;
    padding: 10px;
    border-radius: 10px 0 0 10px;
    background-color: #eeecec;
}

.stat-card {
    background: linear-gradient(135deg, #611ae4, #3903fc);
    color: white;
    margin-bottom: 25px;
    margin-top: 25px;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-image {
    margin-top: 10px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    float: left;
}

.contant_service,
.why-choose,
.devoloper {
    background: linear-gradient(#e7e0f5cc, #d3d3d6cc);
}

.our_team {
    color: rgb(10, 10, 10);
    background-image: linear-gradient(135deg, #008cffcc, #4c39f7cc, #5ba9f1cc);
    display: flex;
    flex-wrap: wrap;
}

.team_list {
    margin: 10px;
    padding: 10px;
    width: calc(100% / 3.2);
    min-height: 400px;
    border-radius: 10px 10px 10px 10px;
    background-color: #eeecec;
    float: left;

}

.team_profile_image {
    margin: auto;
    margin-top: 10px;
    padding: 0;
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 50%;
    float: center;
}

.team_profile_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile_name,
.profile_degignation,
.details {
    text-align: center;
    padding: 5px;
    font-weight: 400;
}



/* install */
.install {
    box-sizing: border-box;
    text-align: center;
    padding: 180px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 200px;
    width: 100%;
}

/* Responsive Styles */

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .hero-content {
        padding: 120px 20px 0;
    }
}

.hero {
    background: linear-gradient(rgba(42, 157, 143, 0.8), rgba(38, 70, 83, 0.8));
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--secondary);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: white;
    transform: translateY(-3px);
}

/** hero slider css end **/



/* Contact Section */

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info,
.contact-map,
.contact-form {
    text-align: left;
    box-sizing: border-box;
    width: 33.33%;
    min-height: 500px;
    padding: 5px;
    float: left;
}

.contact-info h2 {
    font-size: 24px;
    color: var(--secondary);
}

.contact-info h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    font-size: 20px;
    color: var(--primary);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 7px 6px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--secondary);
}


/* blog css start */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(31.85%, 1fr));
    gap: 20px;
}

.blog-card {
    box-sizing: border-box;
    width: 100%;
    height: 500px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content-details {
    padding: 15px;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* blog css end */

/* Footer css start */

footer {
    background-color: var(--secondary);
    color: white;
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.copyright-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #aaa;
}

.copyright-left {
    flex: 1;
    text-align: left;
}

.copyright-center {
    flex: 1;
    text-align: center;
}

.copyright-right {
    flex: 1;
    text-align: right;
}

@media (max-width: 768px) {
    .copyright-container {
        flex-direction: column;
        gap: 10px;
    }

}

/*  footer css end */

/** login button register css  start **/
/* ===============================
   🔒 LOGIN DROPDOWN HARD FIX
   =============================== */

/* Never allow dropdown content inline */
.login-dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;

    background: #ffffff !important;
    min-width: 240px !important;
    max-width: 280px !important;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    border-radius: 6px !important;

    z-index: 99999 !important;
    white-space: nowrap !important;
}

/* Show ONLY on hover */
.login-dropdown:hover>.login-dropdown-menu {
    display: block !important;
}

/* Prevent flex wrapping inside dropdown */
.login-dropdown-menu a,
.login-dropdown-menu span {
    display: block !important;
    width: 100% !important;
    white-space: nowrap !important;
}

/* Ensure header never wraps dropdown text */
.header-container,
.header-right,
.auth-buttons {
    overflow: visible !important;
    flex-wrap: nowrap !important;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.login-btn {
    margin-right: 20px;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    color: blue;
    border: 1px solid blue;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.login-btn:hover {
    background-color: blue;
    color: white;
}

.login-dropdown {
    position: relative;
}

.login-dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    height: 10px;
    width: 100%;
}


.login-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    display: none;
    z-index: 999;
    padding: 5px 0;
}

.login-dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.login-dropdown-menu a:hover {
    background: #f5f5f5;
}

.login-dropdown:hover .login-dropdown-menu {
    display: block;
}

.signup-btn {
    background-color: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.signup-btn:hover {
    background-color: var(--secondary);
}

/* tab responsive styles */

/* media (min-width: 993px) and (max-width: 1230px) responsive styles start */
@media (min-width: 993px) and (max-width: 1230px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    }

    /*-- about css  start --*/
    .section-title h2 {
        font-size: 1.3rem;
        color: #fc6f12;
    }


    .section-title h3 {
        font-size: 1.0rem;
        color: rgb(39, 150, 240);
    }


    .contant {
        text-decoration: none;
        text-align: left;
    }

    .contant_left,
    .contant_right {
        width: 100%;
    }

    .contant_titale {
        padding: 5px;
        text-align: center;
    }

    .contant_details {
        margin: 0;
        padding: 10px;
        font-size: 15px;
        font-weight: 500;
    }

    .contant_titale b {
        font-size: 0.9rem;
        color: #a14406;

    }

    .partners {
        margin: auto;
        padding: 2px;
        flex-wrap: wrap;

    }

    .partners_list {
        margin: 5px;
        padding: 10px;
        width: calc(25% - 10px);
        border-radius: 15px 15px 15px 15px;
        line-height: 20px;
        float: left;
    }

    .contant_product_list {
        margin: 5px;
        padding: 10px;
        width: calc(25% - 10px);
        border-radius: 15px 15px 15px 15px;
        line-height: 20px;
        float: left;
    }

    .team_list {
        margin: 5px;
        padding: 10px;
        width: calc(33.33% - 10px);
        min-height: 300px;

    }

    .team_profile_image {
        width: 70px;
        height: 70px;
    }

    .team_profile_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .profile_name {
        font-weight: 600;
    }

    .profile_degignation {
        background: linear-gradient(#fd6703, #fd8c40, #f88e46);
        border-radius: 15px;
        font-size: 20px;
        font-weight: 600;
        color: #000000;
    }

    .stat-card {
        margin: 10px;
        width: calc(25% - 20px);
        float: left;
    }

    .about-image {
        padding: 10px;
        width: 50%;
        float: left;
    }

    /*-- about css  end --*/
}



/* Mobile responsive styles */

/* media (min-width: 769px) and (max-width: 992px) responsive styles start */
@media (min-width: 769px) and (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    }

    /*-- about css  start --*/
    .section-title h2 {
        font-size: 1.3rem;
        color: #fc6f12;
    }


    .section-title h3 {
        font-size: 1.0rem;
        color: rgb(39, 150, 240);
    }


    .contant {
        text-decoration: none;
        text-align: left;
    }

    .contant_left,
    .contant_right {
        width: 100%;
    }

    .contant_titale {
        padding: 5px;
        text-align: center;
    }

    .contant_details {
        margin: 0;
        padding: 10px;
        font-size: 15px;
        font-weight: 500;
    }

    .contant_titale b {
        font-size: 0.9rem;
        color: #a14406;

    }

    .partners {
        margin: auto;
        padding: 2px;
        flex-wrap: wrap;

    }

    .partners_list {
        margin: 5px;
        padding: 10px;
        width: calc(50% - 10px);
        border-radius: 15px 15px 15px 15px;
        line-height: 20px;
        float: left;
    }

    .contant_product_list {
        margin: 5px;
        padding: 10px;
        width: calc(33.33% - 10px);
        border-radius: 15px 15px 15px 15px;
        line-height: 20px;
        float: left;
    }

    .team_list {
        margin: 5px;
        padding: 10px;
        width: calc(33.3% - 10px);
        min-height: 300px;

    }

    .team_profile_image {
        width: 70px;
        height: 70px;
    }

    .team_profile_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .profile_name {
        font-weight: 600;
    }

    .profile_degignation {
        background: linear-gradient(#fd6703, #fd8c40, #f88e46);
        border-radius: 15px;
        font-size: 20px;
        font-weight: 600;
        color: #000000;
    }

    .stat-card {
        margin: 10px;
        width: calc(50% - 20px);
        float: left;
    }

    .about-image {
        padding: 10px;
        width: 50%;
        float: left;
    }

    /*-- about css  end --*/
}

/* media (min-width: 769px) and (max-width: 992px) responsive styles end */

/* @media (min-width: 577px) and (max-width: 768px) */
@media (min-width: 577px) and (max-width: 768px) {
    .container-fluid {
        margin: 0;
        padding: 0;
    }

    /* -- login button register css  start -- */
    .auth-buttons {
        gap: 8px;
    }

    .login-btn,
    .signup-btn {
        padding: 6px 10px;
        font-size: 14px;
        margin-right: 10px;
    }

    .login-dropdown-menu {
        min-width: 200px;
    }

    /** login button register css  end **/

    /*-- service css  start --*/
    .service-card,
    .copyright-left,
    .copyright-center,
    .copyright-right {
        text-align: center;
        width: 100%;
    }

    /*-- service css  end --*/

    /*-- blog css  start --*/
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }

    /*-- blog css  end --*/

    /*-- about css  start --*/
    .section-title h2 {
        font-size: 1.2rem;
        margin-bottom: 5px;
        color: #f76403;
    }


    .section-title h3 {
        margin: auto;
        padding-left: 3px;
        padding-bottom: 10px;
        font-size: 0.9rem;
        color: rgb(6, 137, 245);
    }


    .contant {
        text-decoration: none;
        text-align: left;
    }

    .contant_left,
    .contant_right {
        width: 100%;
    }

    .contant_titale {
        padding: 5px;
        text-align: center;
    }

    .contant_details {
        margin: 0;
        padding: 10px;
        font-size: 12px;
    }

    .contant_titale b {
        font-size: 0.9rem;
        color: #a14406;

    }

    .partners {
        margin: auto;
        padding: 2px;
        flex-wrap: wrap;
    }

    .partners_list {
        margin: 5px;
        padding: 10px;
        width: calc(50% - 10px);
        border-radius: 15px 15px 15px 15px;
        line-height: 20px;
    }

    .contant_product_list {
        margin: 5px;
        padding: 5px;
        width: calc(50% - 10px);
        border-radius: 10px 10px 10px 10px;
        background-color: #eeecec;
        float: left;
    }

    .team_list {
        margin: 5px;
        padding: 10px;
        width: calc(50% - 10px);
        min-height: 300px;

    }

    .team_profile_image {
        width: 70px;
        height: 70px;
    }

    .profile_name {
        font-weight: 600;
    }

    .profile_degignation {
        background: linear-gradient(#fd6703, #fd8c40, #f88e46);
        border-radius: 15px;
        font-size: 20px;
        font-weight: 600;
        color: #000000;
    }

    .stat-card {
        margin: 10px;
        width: calc(50% - 20px);
        float: left;
    }

    .about-image {
        padding: 10px;
        width: 50%;
        float: left;
    }

    /*-- about css  end --*/
}


/* -- @media (max-width: 576px) -- */
@media (max-width: 576px) {
    .container-fluid {
        margin: 0;
        padding: 0;
    }

    /* -- login button register css  start -- */
    .auth-buttons {
        gap: 10px;
    }

    .login-btn,
    .signup-btn {
        padding: 6px 10px;
        font-size: 14px;
    }

    /** login button register css  end **/

    /*-- service css  start --*/
    .service-card,
    .copyright-left,
    .copyright-center,
    .copyright-right {
        text-align: center;
        width: 100%;
    }

    /*-- service css  end --*/

    /*-- blog css  start --*/
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }

    /*-- blog css  end --*/

    /*-- about css  start --*/
    .section-title h2 {
        font-size: 1.2rem;
        margin-bottom: 5px;
        color: #f76403;
    }


    .section-title h3 {
        margin: auto;
        padding-left: 3px;
        padding-bottom: 10px;
        font-size: 0.9rem;
        color: rgb(6, 137, 245);
    }


    .contant {
        text-decoration: none;
        text-align: left;
    }

    .contant_left,
    .contant_right {
        width: 100%;
    }

    .contant_titale {
        padding: 5px;
        text-align: center;
    }

    .contant_details {
        margin: 0;
        padding: 10px;
        font-size: 12px;
    }

    .contant_titale b {
        font-size: 0.9rem;
        color: #a14406;

    }

    .partners {
        margin: auto;
        padding: 2px;
        flex-wrap: wrap;
    }

    .partners_list {
        margin: 5px;
        padding: 10px;
        width: 100%;
        border-radius: 15px 15px 15px 15px;
        line-height: 20px;
    }

    .contant_product_list {
        margin: 5px;
        padding: 5px;
        width: 100%;
        border-radius: 10px 10px 10px 10px;
        background-color: #eeecec;
        float: left;
    }

    .team_list {
        margin: 5px;
        padding: 10px;
        width: 100%;
        min-height: 300px;

    }

    .team_profile_image {
        width: 70px;
        height: 70px;
    }

    .profile_name {
        font-weight: 600;
    }

    .profile_degignation {
        background: linear-gradient(#fd6703, #fd8c40, #f88e46);
        border-radius: 15px;
        font-size: 20px;
        font-weight: 600;
        color: #000000;
    }

    .stat-card {
        margin: 10px;
        width: 100%;
        float: left;
    }

    .about-image {
        padding: 10px;
        width: 100%;
        float: left;
    }

    /*-- about css  end --*/

}




/* Responsive Styles */

@media (max-width: 768px) {
    .login-dropdown-menu {
        display: none !important;
        position: absolute !important;
        right: 10px !important;
        left: auto !important;
    }

    /* Only show if hover (desktop) OR future JS click */
    .login-dropdown:hover .login-dropdown-menu {
        display: block !important;
    }

    .header-container {
        flex-wrap: wrap;
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        /* margin-left: 10px; */
        margin-right: 10px;
    }

    nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 0;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .contact-info,
    .contact-map,
    .contact-form {
        text-align: left;
        box-sizing: border-box;
        width: 100%;
        min-height: 500px;
        padding: 5px;
        float: left;
    }

    .header-right {
        margin-left: auto;
        display: flex;
        align-items: center;
    }

    .mobile-menu-btn {
        display: block;
        margin-left: 20px;
    }

    .hero {
        height: auto;
        padding: 100px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    nav ul li {
        background: #fffefe;
    }

    nav ul li a {
        padding-left: 10px;
    }
}

@media (max-width: 576px) {
    .logo {
        font-size: 20px;
    }

    nav ul li a {
        color: #080000;
        text-align: center;
    }

    .signup-btn {
        padding: 6px 15px;
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .cta-btn {
        padding: 10px 20px;
        font-size: 16px;
    }

    .price {
        font-size: 30px;
    }
}


/* Hospital List Styles */

.hospital-list {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.hospital-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
}

.filter-group label {
    margin-right: 10px;
    font-weight: 500;
}

.filter-group select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.search-box {
    display: flex;
    margin-left: auto;
}

.search-box input {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    width: 250px;
}

.search-box button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.hospitals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.hospital-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.hospital-card:hover {
    transform: translateY(-10px);
}

.hospital-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    object-position: center;
}

.hospital-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.5s;
}

.hospital-card:hover .hospital-image img {
    transform: scale(1.1);
}

.hospital-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--secondary);
}

.hospital-rating i {
    color: var(--accent);
    margin-right: 5px;
}



.hospital-info {
    padding: 20px;
}

.hospital-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.hospital-city,
.hospital-category {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #666;
}

.hospital-city i,
.hospital-category i {
    margin-right: 8px;
    color: var(--primary);
}

.hospital-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    color: #666;
}

.hospital-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.view-btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.view-btn:hover {
    background-color: var(--secondary);
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.page-btn {
    display: inline-block;
    background-color: #e7e7e7;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.page-btn:hover {
    background-color: #007bff;
    color: rgb(233, 201, 201);
}

.page-btn.active {
    background-color: #007bff;
    color: white;
}

.page-btn i {
    margin: 0 4px;
}

.page-btn {
    display: inline-block;
    background-color: #e7e7e7;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.page-btn:hover {
    background-color: #007bff;
    color: rgb(233, 201, 201);
}

.page-btn.active {
    background-color: #007bff;
    color: white;
}

.page-btn i {
    margin: 0 4px;
}

@media (max-width: 768px) {
    .hospital-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-group label {
        margin-bottom: 5px;
    }

    .search-box {
        margin-left: 0;
        width: 100%;
    }

    .search-box input {
        width: 100%;
    }

    .hospitals-grid {
        grid-template-columns: 1fr;
    }
}

/* end of hospital css */

/* Modal Backdrop */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    background-color: rgba(0, 0, 0, 0.5);
}


/* Modal Dialog - Centered */

.modal-dialog {
    position: relative;
    width: auto;
    margin: 1.75rem auto;
    /* Changed from 0.5rem to auto for centering */
    max-width: 800px;
    /* Added max-width */
    pointer-events: none;
    display: flex;
    min-height: calc(100% - 3.5rem);
    align-items: center;
    /* Vertically center */
}


/* Modal Content */

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3rem;
    outline: 0;
}


/* Modal Header */

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}


/* Modal Title */

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.1rem;
}


/* Close Button */

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.5;
    cursor: pointer;
}

.btn-close:hover {
    opacity: 0.75;
}


/* Modal Body */

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 0.5rem;
    max-height: auto;
    overflow-y: auto;
}


/* Modal Footer */

.modal-footer {
    display: flex;
    flex-wrap: wrap;
    flex-shrink: 0;
    align-items: center;
    justify-content: flex-end;
    padding: 0.50rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}


/* Modal Sizes */

.modal-lg {
    max-width: 800px;
}


/* Utility Classes */

.fade {
    transition: opacity 0.15s linear;
}

.show {
    display: block !important;
    opacity: 1;
}


/* Additional centering styles */

.modal.show .modal-dialog {
    transform: none;
}


/* Responsive adjustments */

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-lg {
        max-width: 800px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 900px;
    }
}

/* Services Section css start*/

/* 🔹 Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background-color: #f4f4f4;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.service-card .service-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


.modal-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* ===============================
   🔹 MODAL CARD GRID
   =============================== */

.website-modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Each card */
.website-modal-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 15px;
    text-align: center;
}

.website-modal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* Card Header */
.website-modal-card .card-header {
    margin-bottom: 10px;
}

.website-modal-card .card-header img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

.website-modal-card .card-header h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Card Body */
.website-modal-card .card-body {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.website-modal-card .card-body p {
    margin-bottom: 6px;
}

/* Upcoming or Active Styles */
.website-modal-card.upcoming {
    border: 1px solid #f39c12;
    background: #fffdf7;
}

.website-modal-card.active {
    border: 1px solid #2ecc71;
    background: #f8fffa;
}

/* ===============================
   🔹 PAGINATION STYLES
   =============================== */

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    padding: 15px 0;
}

.pagination-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.pagination-btn {
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 40px;
    text-align: center;
    color: #333;
    font-weight: 500;
}

.pagination-btn:hover {
    background: #3498db;
    color: #fff;
    border-color: #2980b9;
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: #3498db;
    color: #fff;
    border-color: #2980b9;
    font-weight: bold;
}



/* Website cards container */
#websiteCardsContainer {
    flex: 1;
    min-height: 200px;
}

/* No websites message */
.no-websites {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* Page buttons styling (services section के लिए) */
.page-btn {
    display: inline-block;
    background-color: #e7e7e7;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.page-btn:hover {
    background-color: #007bff;
    color: white;
}

.page-btn.active {
    background-color: #007bff;
    color: white;
}


/* Countdown styling */
.countdown {
    font-weight: 600;
    color: #22e6b5;
    background: #fff8f1;
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 5px;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .website-modal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .website-modal-grid {
        grid-template-columns: 1fr;
    }

    .modal-dialog {
        width: 100%;
        margin: 10px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        transform: translateY(-15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* Services Section css end*/
