@font-face {
    font-family: 'alkia';
    src: url('../fonts/Alkia.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'suisse-intl';
    src: url('../fonts/SuisseIntl-Regular.ttf') format('truetype'),
    url('../fonts/SuisseIntl-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/* 2. Theme Variables (Equivalent to @theme) */
:root {
    /* Colors */
    --color-black: #060606;
    --color-gray-900: #0C131A;

    --color-brand-25: #f2f7ff;
    --color-brand-50: #ecf3ff;
    --color-brand-100: #dde9ff;
    --color-brand-200: #c2d6ff;
    --color-brand-300: #9cb9ff;
    --color-brand-400: #7592ff;
    --color-brand-500: #465fff;
    --color-brand-600: #3641f5;
    --color-brand-700: #2a31d8;
    --color-brand-800: #252dae;
    --color-brand-900: #262e89;
    --color-brand-950: #161950;

}

/* 3. Base Styles (@layer base equivalent) */
html,
body {
    background-color: #f3f4f6;
    color: #1f2937;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-family: "suisse-intl","alkia", sans-serif;
}



#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 5vw;
    font-family: 'alkia', sans-serif;
}


.gposting-anim-text{
    font-size: 10vw;
    font-family: 'alkia', sans-serif;
    font-weight: 900;

}



.hero-text,
.hero-section .btn-primary,
.hero-section img  {
    opacity: 0;
}

.gposting-anim-text span{
    display: inline-block;
}


/* Main content initially hidden */
#main {
    opacity: 0;
    visibility: hidden;
}



.font-pt-sans {
    font-family: 'suisse-intl', sans-serif !important;
}

/* Dark mode override */
.dark,
:root.dark {
    background-color: var(--color-gray-900);
    color: white;
}
a,
p,
li,
ol,
input,
textarea,
select,
button {

    font-family: var(--font-pt-sans);
}

button{
    cursor: pointer;
}


/* primary-background utility */
.primary-background {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-image:
            radial-gradient(circle at 25% 25%, #dbeafe 0%, transparent 50%),
            radial-gradient(circle at 75% 25%, #fef3c7 0%, transparent 50%),
            radial-gradient(circle at 25% 75%, #f3e8ff 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, #ecfdf5 0%, transparent 50%);
    background-size: cover;
    background-attachment: fixed;
}
/* Responsive padding for md:py-16 */
@media (min-width: 768px) {
    .primary-background {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
/* Dark Mode styles for primary-background */
.dark .primary-background {
    background-image: linear-gradient(to right, var(--color-gray-900), #1f2937, var(--color-gray-900));
    color: white;
}


/* secondary-background utility */
.secondary-background {
    position: relative;
    background-image: url('../img/newsletter-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/* Dark Mode styles for secondary-background */
.dark .secondary-background {
    background-image: linear-gradient(to right, var(--color-gray-900), #1f2937, var(--color-gray-900));
    color: white;
}


/* tersiary-background utility */
.tersiary-background {
    position: relative;
    background-image:
            radial-gradient(circle at 25% 25%, #dbeafe 0%, transparent 50%),
            radial-gradient(circle at 30% 25%, #fef3c7 0%, transparent 50%),
            radial-gradient(circle at 25% 75%, #f3e8ff 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, #ecfdf5 0%, transparent 50%);
    background-size: cover;
    background-attachment: fixed;
}
/* Responsive padding for md:py-16 */
@media (min-width: 768px) {
    .tersiary-background {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}
/* Dark Mode styles for tersiary-background */
.dark .tersiary-background {
    background-image: linear-gradient(to right, var(--color-gray-900), #1f2937, var(--color-gray-900));
    color: white;
}


/* btn-primary utility */
.btn-primary {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-image: linear-gradient(to right, var(--color-brand-600), #9333ea);

    color: white;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: background-image 0.3s ease-in-out;
}
.btn-primary:hover {
    background-image: linear-gradient(to right, var(--color-brand-700), #7e22ce);
}

.newsletter-btn {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-image: linear-gradient(to right, var(--color-brand-600), #9333ea);

    color: white;
    font-weight: 500;
    transition: background-image 0.3s ease-in-out;
}
.newsletter-btn:hover {
    background-image: linear-gradient(to right, var(--color-brand-700), #7e22ce);
}


/* btn-secondary utility */
.btn-secondary {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background-color: #FF5F04;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background-color 0.3s ease-in-out, border-color 0.3s;
}
.btn-secondary:hover {
    background-color: #CC4C03;
}



/* Container */
.container {
    max-width: 1280px !important;
    margin-inline: auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

/* Dropdown transitions */
#services-dropdown-menu {
    transform-origin: top;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-10px) scaleY(0.95);
}

#services-dropdown-menu.show {
    opacity: 1;
    transform: translateY(0) scaleY(1);
}



/*faq accordion*/
.faq-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-btn{
    background-image: linear-gradient(to right, var(--color-brand-600), #9333ea);
    color: white !important;
    margin-bottom: 12px;
}

.faq-item.open .faq-btn .icon{
    color: white !important;
}

.bill-to-address div,
.bill-to-address p,
.bill-to-address li,
.bill-to-address a,
.bill-to-address span{
    color: #4a5565 !important;
    font-style: normal !important;
    font-size: 14px !important;
}

.dark .bill-to-address div,
.dark .bill-to-address p,
.dark .bill-to-address li,
.dark .bill-to-address a,
.dark .bill-to-address span{
    color: #d1d5dc !important;
}

/* testimonial css */

.testimonial-container {
    width: 100%;
    max-width: 56rem;
    padding: 2rem;
    margin: 0 auto;
}
.testimonial-grid {
    display: grid;
    gap: 5rem;
}
.image-container {
    position: relative;
    width: 100%;
    height: 20rem;
    perspective: 1000px;
}
.testimonial-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.testimonial-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}
.designation {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
}
.quote {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
}
.arrow-buttons {
    display: flex;
    gap: 1rem;
    padding-top: 3rem;
}
.arrow-button {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: #141414;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
.arrow-button:hover {
    background-image: linear-gradient(to right, var(--color-brand-600), #9333ea);

    color: white;
}
.arrow-button svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #f1f1f7;
    transition: transform 0.3s;
}
.arrow-button:hover svg {
    fill: #ffffff;
}
@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
    .arrow-buttons {
        padding-top: 0;
    }
}

