@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poly:ital@0;1&display=swap');

:root {
    --primary-text-color: #000;
    --bg-color: #ffffff;
    --btn-color: #fdfdfd;
    /* button color */
    --btn-bg: #000;
    /* button bg color */
    --header-link-hover: #000000;
    --header-link-hover-bg: #bababa36;
    --input-hover-bd-color: #232323;
    --dropdown-bg: #f3f4f6;
    --dropdown-hover-bg: #dddddd84;
    --faq-h-text: #0e0e0e;
    --faq-content-text: #1e1e1e;
    --hr-color: #e5e7eb;
    --footer-link: #282828;
    --footer-link-hover: #000;
    --header-bg: #edececa5;
    /* color: #312f2f; */
    --hero-gradient: #fcfcfc;
    --hero-bg-img: url("../assets/images/background/dots-dark.svg");
}

.tw-dark {
    --primary-text-color: #fff;
    --bg-color: #000000;
    --btn-color: #000000;
    /* button color */
    --btn-bg: #ffffff;
    /* button bg color */
    --header-link-hover: #ffffff;
    --header-link-hover-bg: #8a8a8a5e;
    --input-hover-bd-color: #f8f8f8;
    --dropdown-bg: #171717;
    --dropdown-hover-bg: #2d2d2ddb;
    --faq-h-text: #efefef;
    --faq-content-text: #d4d4d4;
    --hr-color: #e1e1e195;
    --footer-link: #cfcfcf;
    --footer-link-hover: #ffffff;
    --header-bg: #232323a5;
    --hero-gradient: #000;
    --hero-bg-img: url("../assets/images/background/dots.svg");
}

html {
    scroll-behavior: smooth;
    /* font-family: "Ubuntu", sans-serif; */
}

body.modal-open {
    overflow: hidden;
}

header>.collapsible-header {
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease, height 0.3s ease;
}

hr {
    border-color: var(--hr-color);
    border-style: solid;
}

.animated-collapse {
    transition: width 0.3s ease;
}

.header-links {
    position: relative;
    display: flex;
    align-items: center;
    min-width: fit-content;
    padding: 8px 15px;
    z-index: 2;
    cursor: pointer;
    transition: background-color 0.5s, color 0.3s;
}

.header-links::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: var(--header-link-hover-bg);
    transform: scale(40%);
    opacity: 0;
    border-radius: 8px;
    transition: all 300ms;
}

.header-links:hover {
    color: var(--header-link-hover);
}

.header-links:hover::after {
    transform: scale(100%);
    opacity: 1;
}

.hero-section {
    background-image: var(--hero-bg-img);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-bg-gradient {
    background: linear-gradient(180deg, var(--hero-gradient) 23%, rgba(0, 0, 0, 0) 87%, var(--hero-gradient) 97%);
}

.gradient-text {
    background: rgb(215, 215, 215);
    background: linear-gradient(90deg, rgba(215, 215, 215, 1) 18%, rgba(136, 136, 136, 1) 71%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.purple-bg-grad {
    background: rgb(126, 34, 206);
    background: linear-gradient(90deg, #7e22ce91 8%, #625aafae 31%, #7badbbbc 76%, #54d2d0ca 89%);
    filter: blur(50px);
    opacity: 0.5;
}

#dashboard {
    transform: perspective(1200px) translateX(0px) translateY(12px) scale(0.8) rotate(0deg) rotateX(70deg);
    transition: transform 0.5;
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-100 {
    opacity: 100 !important;
}

.btn {
    padding: 10px 15px;
    width: max-content;
    border-radius: 10px;
    color: var(--btn-color);
    background-color: var(--btn-bg);
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
}

.btn:hover {}

.btn:disabled {
    cursor: default;
}

.input {
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    outline: none;
    min-width: 100px;
    border: 1px solid #979797;
    transition: border 0.3s;
}

.input:active,
.input:focus,
.input:focus-within {
    border: 1px solid var(--input-hover-bd-color) !important;
}

/* ------------------- scrollbar ------------- */
.scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 20px;
}

.scrollbar::-webkit-scrollbar-track {
    border-radius: 25px;
}

.scrollbar::-webkit-scrollbar-thumb {
    background: #d7d7d7;
    border-radius: 25px;
}

/* ---------------- dropdown --------------------- */
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-toggle {
    width: 100%;
    outline: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 1;
    background-color: var(--dropdown-bg);
    list-style-type: none;
    padding: 0;
    width: 100%;
    left: 0px;
    border-radius: 10px;
    overflow: hidden;
}

.dropdown-menu li {
    padding: 8px 12px;
    cursor: pointer;
}

.dropdown-menu li:hover {
    background-color: var(--dropdown-hover-bg);
}

/* -------------- carousel ------------------*/
.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    max-width: 800px;
}

.carousel {
    display: inline-block;
    animation: scroll 10s linear infinite;
}

.carousel-img {
    display: inline-block;
    margin: 0 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ------ animated border ------- */
.animated-border {
    position: relative;
    overflow: visible;
}

.animated-border::after {
    content: '';
    position: absolute;
    top: 0px;
    left: -100%;
    width: 30%;
    height: 100%;
    border-radius: inherit;
    background-color: #6366f1;
    background-repeat: no-repeat;
    background-position: 0% 0%;
    filter: blur(1.5rem);
    opacity: 0.8;
    box-shadow: inset 0px 0px 20px 5px #6366f1;
    z-index: -2;
    pointer-events: none;
    animation: slide 10s ease-in-out infinite;
}

.animated-border::before {
    filter: blur(1.5rem);
    opacity: 0.3;
    will-change: transform;
}

@keyframes slide {
    0% {
        left: -100%;
        right: 100%;
    }

    100% {
        left: 100%;
        right: -100%;
    }
}

.footer-link {
    width: -moz-fit-content;
    width: fit-content;
    color: var(--footer-link);
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--footer-link-hover);
}

/* Style for the collapsible content such as faq commonly known as: accordion */
.faq-accordion {
    background-color: inherit;
    color: var(--faq-h-text);
    cursor: pointer;
    padding: 15px 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: height 0.4s;
}

.faq .content {
    padding: 0px 18px;
    color: var(--faq-content-text);
    height: max-content;
    overflow: hidden;
    background-color: transparent;
    text-align: justify;
    max-height: 0px;
    transition: max-height 0.4s, padding 0.4s;
}

@media not all and (min-width: 1024px) {
    header .collapsible-header {
        position: fixed;
        top: 60px;
        left: 0px;
        flex-direction: column;
        opacity: 0;
        height: 0vh;
        min-height: 0vh;
        width: 100vw;
        justify-content: space-between;
        padding: 5px;
        padding-top: 5%;
        padding-bottom: 5%;
        place-items: center;
        text-align: center;
        background-color: var(--header-bg);
        overflow-y: auto;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        box-shadow: 0px 2px 3px 2px #9f9f9f7c;
    }
}

/* Portfolio Card Styling */
.portfolio-card {
    height: 450px;
    /* Strict height enforcement */
    width: 350px;
    /* Consistent width (overridden by max-md:tw-w-[320px] on mobile) */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Prevents any content from spilling out */
}

.portfolio-card:hover {
    box-shadow: 0 7px 14px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

/* Image Container */
.portfolio-card .tw-h-[200px] {
    height: 200px;
    /* Fixed height for uniformity */
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    /* Prevents image from shrinking */
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images fill the space uniformly */
}

.portfolio-card img:hover {
    transform: scale(1.1);
    /* Zoom only the image on hover */
}

/* Text Container */
.portfolio-card .tw-p-4 {
    flex-grow: 1;
    /* Takes up remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Distributes space evenly */
    overflow: hidden;
    /* Prevents text overflow */
}

.portfolio-text {
    height: 120px;
    /* Fixed height for text consistency */
    overflow: hidden;
    text-overflow: ellipsis;
    /* Adds "..." for overflow */
    display: -webkit-box;
    -webkit-line-clamp: 5;
    /* Limits to 5 lines */
    -webkit-box-orient: vertical;
    margin-bottom: 0.5rem;
    /* Ensures spacing before Read More */
}
