/* ___________________________________________________________________________________________________________________________________________  */
/* Parent Styling */
/* ___________________________________________________________________________________________________________________________________________  */

/**Setting up for ROOT STYLING**/
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

:root {
    --primary-color: #F97316;
    --fourth-color: #FDBA74;
    --third-color: #f0f0f0;
    --secondary-color: #334155;
    --white-color: #FFFFFF;

    --hover-btn-color: #8f3c00;
    --funny-color-one: #c7ede6;
    --toggle-color: #3e3e3e;
    --toggle-light-color: #6e6e6e;
    --text-color: #242424;
    --error-color: red;


    /**TRANSITIONS**/
    --slow: 0.6s all ease-in-out;
    --normal: 0.4s all ease-in-out;
    --fast: 0.2s all ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--third-color);
}


/* ___________________________________________________________________________________________________________________________________________  */
/* Navigation Bar */
/* ___________________________________________________________________________________________________________________________________________  */
nav {
    background-color: var(--white-color);
}

.navbar {
    font-weight: bold;
    font-size: large;
    padding-left: 6%;
    padding-right: 6%;
}

.logo {
    height: 32px;
    width: auto;
    margin-top: -3px;
}

.dropdown-menu {
    background-color: var(--white-color);
}

.dropdown-menu :hover {
    background-color: var(--white-color);
    font-weight: bold;
    font-size: large;
}

.mainMenuLink {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
}

.mainMenuLink:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    right: 50%;
    bottom: 0;
    background: var(--primary-color);
    height: 1.5px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.mainMenuLink:hover:before,
.mainMenuLink:focus:before,
.mainMenuLink:active:before {
    left: 0;
    right: 0;
}


/* ___________________________________________________________________________________________________________________________________________  */
/* Footer Bar */
/* ___________________________________________________________________________________________________________________________________________  */
.footer {
    background-color: var(--secondary-color) !important;
}

.ft-headers {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: lowercase;
    transition: 0.2s;
}

.ft-services {
    color: var(--white-color);
    text-decoration: none;
}

.ft-services:hover {
    color: #fe7200;
    text-decoration: none;
}

.ft-row1 p {
    color: var(--white-color);

}

.copy-row {
    color: var(--third-color);
    margin-top: 30px;
}

.ft-ember:hover {
    color: var(--white-color);
    text-decoration: none;
}



/* ___________________________________________________________________________________________________________________________________________  */
/* Index Page  */
/* ___________________________________________________________________________________________________________________________________________  */

/* Hero Section */
.welcome {
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.btn {
    background-color: var(--primary-color);
    border: none;
}

.btn:hover {
    background-color: var(--hover-btn-color);
}

/* Who We Are Section more like about section */
.content {
    background-color: var(--fourth-color);
    padding: 30px;
    border-radius: 10px;
}

.content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.content h2 {
    font-weight: 600;
}

/* Why work with us Section */
.values {
    background-color: var(--funny-color-one);
    padding-top: 50px;
    margin-top: 50px;
}

.values p {
    color: var(--toggle-light-color);
    font-family: Arial, Helvetica, sans-serif;
}

.ourServices {
    text-align: center;
    text-transform: uppercase;
}

.ourServices h1,
h3,
h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    text-transform: none;
    color: var(--text-color);
}

.ourServices p {
    padding-left: 100px;
    padding-right: 100px;
    text-transform: none;
    font-size: 23px;
    color: var(--toggle-light-color);
}

.box {
    text-align: center;
}

.box img {
    width: 100px;
    height: 100px
}

/* PACKAGE PRICES HERE */

/*This is the package pricing style*/
#flexible {
    color: var(--primary-color);
}

.packages {
    margin-top: 50px;
}

#standardBigDiv {
    border: 1px solid var(--primary-color);
}

#standardBigDiv>Div:first-child {
    background-color: var(--primary-color);
}

.card-body button {
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    transition: background-color 500ms ease 0s;
}

.card-body button:hover {
    background-color: var(--primary-color);
    color: var(--toggle-color);
    border: 1px solid var(--primary-color);
}

/* Our Patners HERE */
.partners-section {
    text-align: center;
    padding: 50px 20px;
}

.partners-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--toggle-light-color);
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.partner-logos img {
    max-width: 150px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.partner-logos img:hover {
    opacity: 1;
}

.partner-logos img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partners {
    background-color: var(--white-color);
    margin-top: 50px;
}

/* Our Testimonials HERE */
.testimonials {
    text-align: left;
}

.testimonial {
    max-width: 600px;
    margin: 0 auto 40px;
    background: var(--white-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial .quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--toggle-light-color);
}

.testimonial .stars {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.testimonial .client {
    font-weight: bold;
    color: var(--text-color);
}


/* ___________________________________________________________________________________________________________________________________________  */
/* Services Page  */
/* ___________________________________________________________________________________________________________________________________________  */

/* Our Services List HERE */
.it-services {
    padding: 50px 20px;
    background-color: #f4f7fa;
    text-align: center;
}

.it-services h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.it-services .subtitle {
    font-size: 1.1rem;
    color: var(--toggle-color);
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white-color);
    padding: 30px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card h2 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}


/* Our Contact Me button HERE */
.hire_me {
    background-color: var(--primary-color);
}

.section-sm {
    padding: 40px 0 !important;
}


/* ___________________________________________________________________________________________________________________________________________  */
/* Contact Us Page  */
/* ___________________________________________________________________________________________________________________________________________  */

.left {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-btn-color));
    color: var(--white-color);
    border-radius: 20px;
}

.contact-title {
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--white-color);
}


.info .information {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info i {
    font-size: 1.5rem;
    color: var(--white-color);
    position: relative;
    top: -8px;
}

.social-media {
    margin-top: 2rem;
}

.social-media p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.social-icon a {
    color: var(--white-color);
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icon a:hover {
    color: var(--secondary-color);
}

.form-tittle {
    font-size: 2rem;
    text-shadow: var(--hover-btn-color) 0.5px 0.5px 1px;
}

#us {
    color: var(--primary-color);
}

/* Input & Select Fields */
.form-control {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--white-color);
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}


/* Button Styling */
.btn-info {
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

select.form-control {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none;
    /* Removes default OS dropdown arrow */
    background-image: url("data:image/svg+xml,%3Csvg fill='%2300bfa5' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    height: auto;
}


/* Disabled option for selection */
select.form-control option[disabled] {
    color: var(--text-color);
}


/* Style fo Faqs */
.faq-section {
    font-family: Arial, sans-serif;
    padding: 40px;
    background: var(--third-color);
    color: var(--text-color);
}

.faq-container {
    display: flex;
    max-width: 1100px;
    margin: auto;
    gap: 40px;
}

.faq-sidebar {
    flex: 1;
}

.faq-sidebar h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.faq-sidebar p {
    margin-bottom: 20px;
    color: var(--toggle-color);
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* scrollable */
.scrollable{
    max-height: 400px; /* Adjust height as needed */
    overflow-y: auto;
    padding: 10px; /* Optional: prevents content from being cut off by scrollbar */
}

.faq-content{
    width: 50px;
    scrollbar-color: var(--text-color) var(--third-color); 
}

.faq-categories button {
    background: var(--white-color);
    border: 1px solid var(--toggle-light-color);
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-categories .active,
.faq-categories button:hover {
    background: var(--text-color);
    color: var(--white-color);
}

.faq-content {
    flex: 2;
}

.faq-inside-item {
    border-bottom: 1px solid var(--toggle-color);
    padding: 20px 0;
    cursor: pointer;
}

.faq-inside-item h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    margin: 0;
}

.faq-inside-item p {
    margin-top: 10px;
    font-size: 16px;
    color: var(--toggle-light-color);
}

.faq-inside-item p.hidden {
    /* display: none; */
}

.faq-inside-item.open p {
    display: block;
}

.faq-contact {
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    text-align: center;
}




/* ___________________________________________________________________________________________________________________________________________  */
/* About Us Page  */
/* ___________________________________________________________________________________________________________________________________________  */

/* This is a Mission  Vision part  */
.about-item {
    margin-bottom: 30px;
    margin-top: 30px;
    background-color: var(--fourth-color);
    padding: 80px, 30px;
    height: 260px;
    border-radius: 10px;
}

.about-item i {
    font-size: 30px;
    margin: 20px;
}

.about-item h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.about-item hr {
    width: 35%;
    height: 1.5px;
    background-color: var(--secondary-color);
    margin: 0 auto;
    border: none;
}

.about-item p {
    margin: 25px;
    padding-bottom: 10px;
}

.about-item:hover {
    background-color: var(--third-color);
}

.about-item:hover i,
.about-item:hover h3,
.about-item:hover p {
    color: var(--toggle-light-color);
}

.about-item:hover i,
.about-item:hover h3,
.about-item:hover p,
.about-item:hover hr {
    transition: all 400ms ease-in-out;
}

.about-item:hover hr {
    width: 45%;
    background-color: var(--secondary-color);
}

.about-item:hover i {
    transform: translateY(-10px);
}

/* Social Media Icons Styling  */
.wrapper {
    margin-bottom: 50px;
}

.wrapper .button {
    display: inline-block;
    margin: 10px;
    height: 60px;
    width: 60px;
    overflow: hidden;
    background: rgb(239, 239, 239);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.wrapper .button:hover {
    width: 170px;
    text-align: left;
}

.wrapper .button .icon {
    display: inline-block;
    height: 60px;
    width: 60px;
    text-align: center;
    border-radius: 50px;
    box-sizing: border-box;
    line-height: 60px;
    transition: all 0.3s ease-in-out;
}

.wrapper .button:nth-child(1):hover .icon {
    background: linear-gradient(120deg, #000100 0%, #FFFFFF 15%, #fe2c55 50%, #fe2c55 75%, #fe2c55 100%) !important;
}
.wrapper .button:nth-child(2):hover .icon {
    background-color: #3b5998;
}

.wrapper .button:nth-child(3):hover .icon {
    background-color: var(--text-color);
}

.wrapper .button:nth-child(4):hover .icon {
    background: linear-gradient(120deg, #feda75 0%, #fa7e1e 25%, #d62976 50%, #962fbf 75%, #4f5bd5 100%);
}

.wrapper .button:nth-child(5):hover .icon {
    background-color: #25d366;
}

.wrapper .button:nth-child(6):hover .icon {
    background-color: #b8b8b8;
}

.wrapper .button:nth-child(1):hover span {
    color: #fe2c55;
}
.wrapper .button:nth-child(2):hover span {
    color: #3b5998;
}

.wrapper .button:nth-child(3):hover span {
    color: var(--text-color);
}

.wrapper .button:nth-child(4):hover span {
    color: #4f5bd5;
}

.wrapper .button:nth-child(5):hover span {
    color: #25d366;
}

.wrapper .button:nth-child(6):hover span {
    color: #b8b8b8;
}

.wrapper .button .icon i {
    font-size: 25px;
    line-height: 60px;
    transition: all 0.3s ease-in-out;
}

.wrapper .button:hover i {
    color: #fff;
}

.wrapper .button span {
    font-size: 20px;
    font-weight: 500;
    margin-left: 1px;
}