/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/* Navbar Styling */
.navbar {
    background: var(--bs-dark); 
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px; 
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Logo Section */
.navbar .logo img {
    height: 60px;
    width: auto;
}

/* Navigation Links */
.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s;
}

.navbar .nav-links li a.active,
.navbar .nav-links li a:hover {
    background-color: #FF8C00;
    color: white;
}

/* User Dropdown */
.auth-section {
    display: flex;
    align-items: center;
}

.auth-section .btn-primary {
    background-color: #FF8C00;
    border: none;
    padding: 10px 20px;
    color: white;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s;
}

.auth-section .btn-primary:hover {
    background-color: #b8630d;
}

.auth-section .dropdown {
    position: relative;
}

.auth-section .dropdown-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.auth-section .dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #fff;
    color: #333;
    list-style: none;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.auth-section .dropdown-menu li {
    padding: 4px;
}

.auth-section .dropdown-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    transition: background 0.3s;
}

.auth-section .dropdown-menu li a:hover {
    background-color: #FF8C00;
    color: white;
}

.auth-section .dropdown-menu.show {
    display: block;
}
/*** Navbar End ***/

/*** Hero Section ***/
.hero-section {
    background-image: url(../img/hero-bg.jpg); 
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center; 
    position: relative;
    padding: 0 15px;
}

/* Hero Content Wrapper with Transparent Background */
.hero-content-wrapper {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px 50px; 
    border-radius: 10px; 
    max-width: 900px; 
    margin: 0 auto; 
    text-align: center;
}

/* Hero Content Styling */
.hero-content h4 {
    font-size: 1.5rem;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem; 
    line-height: 1.2;
    color: #fff;
}

.hero-content p {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: 20px;
}

.hero-content .btn {
    font-size: 1rem;
    padding: 15px 30px; 
    border-radius: 30px;
}

/*** Responsive Design Adjustments ***/
@media (max-width: 992px) {
    .hero-section {
        height: 700px; 
    }

    .hero-content-wrapper {
        padding: 30px 40px; 
    }

    .hero-content h1 {
        font-size: 2.5rem; 
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 600px; 
    }

    .hero-content-wrapper {
        padding: 20px 30px;
    }

    .hero-content h1 {
        font-size: 2rem; 
    }

    .hero-content h4 {
        font-size: 1.125rem; 
    }

    .hero-content p {
        font-size: 0.95rem; 
    }

    .hero-content .btn {
        padding: 10px 20px; 
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 500px;
    }

    .hero-content-wrapper {
        padding: 15px 20px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem; 
    }
}
/*** Hero Section END ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/banner-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Banner Start ***/
.banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/banner-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.banner .container {
    position: relative;
    z-index: 99;
}

.banner::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    top: -200px;
    left: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    bottom: -200px;
    right: 0;
    background: var(--bs-primary);
    transform: rotate(45deg);
    z-index: 1;
}

.banner .banner-design-1 {
    position: absolute;
    width: 30px;
    height: 500px;
    top: -165px;
    left: 0;
    background: var(--bs-dark);
    transform: rotate(45deg);
    z-index: 2;
}

.banner .banner-design-2 {
    position: absolute;
    width: 30px;
    height: 500px;
    bottom: -165px;
    right: 0;
    background: var(--bs-dark);
    transform: rotate(45deg);
    z-index: 2;
}

/*** Banner End ***/

/*** Service Start ***/
.service .service-item {
    margin-bottom: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 520px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.service .service-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service .service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service .service-item .p-4 {
    padding: 20px;
}

.service .service-item h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.service .service-item p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.service .service-item p:last-child {
    font-weight: bold;
    color: #333;
}

.service h3 {
    font-size: 1.75rem;
    font-weight: bold;
    color: #FF8C00;
    margin-bottom: 20px;
    text-align: center;
}

@media (min-width: 992px) {
    .service .row.g-5 {
        display: flex;
        justify-content: space-between;
    }

    .service .col-md-4 {
        flex: 0 0 32%;
        margin-bottom: 30px;
    }
}

@media (max-width: 991px) {
    .service .row.g-5 {
        display: block;
    }

    .service .col-md-4 {
        width: 100%;
        margin-bottom: 30px;
    }

    .service .service-item {
        margin-bottom: 20px;
    }
}

.service .container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.service .container .wow {
    animation-duration: 1s;
}

/*** Service End ***/



/*** Projects Start ***/
.projects .nav-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .09);
}

.projects-item .projects-content {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.projects .nav-item a.active {
    background: var(--bs-primary);
}

.projects .nav-item a span {
    color: var(--bs-dark);
}

.projects .nav-item a.active span {
    color: var(--bs-white);
}

.projects .nav-item a.active .projects-icon {
    background: var(--bs-dark) !important;
}

.projects .nav-item a.active .projects-icon span {
    color: var(--bs-primary);
}

/* Styling for the text and cards */
.text-center {
    text-align: center;
}

.card {
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
}

.card-img-top {
    max-height: 150px;
    object-fit: cover;
}

.card-body {
    text-align: center;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.btn-primary {
    border-radius: 30px;
}

/*** Projects End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(246, 138, 10, .2);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.team-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-img img {
    height: 200px;
    /* Adjust this value based on your preference */
    object-fit: cover;
}

.team-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*** Team End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item {
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border: none;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: rgba(246, 138, 10, .9);
    font-size: 18px;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
    background: var(--bs-light);
}

/*** FAQs End ***/

/* Error */
.error {
    color: red;
    font-size: 18px;
    text-align: center;
    margin-bottom: 12px;
}

/*** Footer Start ***/
.footer {
    background: var(--bs-dark); 
    padding: 30px 15px;
}

.footer h5 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: #bbb;
}

.footer .btn-outline-light {
    color: #fff;
    border: 1px solid #fff;
    font-size: 0.875rem;
    transition: all 0.3s ease-in-out;
}

.footer .btn-outline-light:hover {
    background-color: #fff;
    color: #222;
    transform: scale(1.1); 
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer .btn-outline-light {
        margin-bottom: 10px; 
    }

    .footer h5 {
        margin-bottom: 15px;
    }
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/