/* ===================================
    Rosanne.ai - Enhanced Professional Styles
====================================== */
/* font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
/* variable */
:root {     
    --base-color: #e99022; 
    --medium-gray: #7b7a7a;
    --dark-gray: #1d1d1d;  
    --charcoal-blue: #232323;
    --alt-font: 'Space Grotesk', sans-serif;
    --primary-font: 'Inter', sans-serif;
    --gradient-primary: linear-gradient(135deg, #d115b5 0%, #8b1f8f 50%, #b12b9f 100%);
}
body {
    line-height: 30px;
}
html {
    scroll-behavior: smooth;
}
a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
    color: var(--dark-gray);
}
h1, .h1 {
    line-height: 3.5rem;
}
.full-screen:not(.registration-hero) h1 {
    font-size: 4rem;
    line-height: 4.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
h3, .h3 { 
    line-height: 2.813rem;
}
h4 {
    line-height: 2.6rem;
}
/* header */
header nav.navbar {
    padding: 0.5rem 0;
    min-height: 55px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(228, 228, 228, 0.3);
}
header.sticky nav.navbar {
    padding: 0.2rem 0;
    min-height: 44px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-bottom-color: rgba(228, 228, 228, 0.5);
}
header nav.navbar .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
    align-items: center;
    display: flex;
}
header .col-auto {
    display: flex;
    align-items: center;
}
header .navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
    margin-right: 0;
    display: flex;
    align-items: center;
    line-height: 1;
}
.navbar .navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 0.4rem 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}
.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #d115b5, #b12b9f);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}
.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link:focus::after {
    width: 65%;
}
.navbar .navbar-nav .nav-link:hover {
    color: #d115b5;
}
header .header-button .btn.btn-switch-text.btn-medium > span {
    padding: 8px 20px;
}
header .header-button .btn.btn-medium {
    font-size: 13px;
    padding: 7px 18px;
    font-weight: 600;
    border-radius: 6px;
}
header .header-button .btn.btn-gradient-fuel-yellow-blue {
    box-shadow: 0 2px 8px rgba(209, 21, 181, 0.25);
}
header .header-button .btn.btn-gradient-fuel-yellow-blue:hover {
    box-shadow: 0 4px 12px rgba(209, 21, 181, 0.35);
    transform: translateY(-1px);
}
header .navbar-brand img {
    max-height: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    vertical-align: middle;
    display: block;
}
header .navbar-brand:hover img {
    transform: scale(1.05);
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
    font-size: 17px;
    font-weight: 500;
    color: var(--dark-gray) !important;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a:hover {
    background-color: #f6f4f3;
}
.navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a i {
    font-size: 30px;
    width: 35px;
}
/*margin*/
.ms-100px {
    margin-left: 100px;
}
.ms-80px {
    margin-left: 80px;
}
.mb-minus-50px {
    margin-bottom: -50px;
}
/* btn - Professional Enhanced Styles */
.btn {
    text-transform: none;
    letter-spacing: 0.3px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}
.btn:hover::before {
    left: 100%;
}
.btn > span {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn.btn-extra-large {
    font-size: 16px;
    padding: 18px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    text-align: center;
}
.btn.btn-extra-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.btn.btn-extra-large span {
    display: block;
    width: 100%;
}
.btn.btn-large {
    font-size: 15px;
    padding: 16px 32px;
    border-radius: 10px;
}
.btn.btn-medium {
    border-radius: 8px;
}
.btn.btn-switch-text.btn-large > span {
    padding: 16px 32px;
}
.btn.btn-gradient-fuel-yellow-blue {
    background-image: linear-gradient(135deg, #d115b5 0%, #8b1f8f 50%, #b12b9f 100%);
    background-size: 200% auto;
    color: #ffffff !important;
    border: none;
}
.btn.btn-gradient-fuel-yellow-blue:hover {
    background-position: right center;
    box-shadow: 0 12px 30px rgba(209, 21, 181, 0.3);
    transform: translateY(-3px);
}
.btn.btn-gradient-fuel-yellow-blue span {
    color: #ffffff !important;
}
.btn-transparent-light-gray {
    background-color: transparent;
    border: 1.5px solid #e4e4e4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-transparent-light-gray:hover {
    background-color: #1d1d1d;
    border-color: #1d1d1d;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.btn-transparent-light-gray:hover .btn-double-text,
.btn-transparent-light-gray:hover i {
    color: #ffffff !important;
}
header .btn-transparent-light-gray {
    border-width: 1.5px;
}
header .btn-transparent-light-gray:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* Professional Form Styles */
.form-control,
.form-select {
    border-radius: 8px;
    border: 2px solid #e4e4e4;
    padding: 12px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
}
.form-control:focus,
.form-select:focus {
    border-color: #d115b5;
    box-shadow: 0 0 0 0.2rem rgba(209, 21, 181, 0.15);
}
/* left right top bottom */
.left-minus-45 {
    left: -45%;
}
.bottom-minus-200px {
    bottom: -200px;
}
.one-half-screen {
  height: 550px !important;
}
.swiper-pagination-progress .swiper-progress {
    background-color: var(--dark-gray); 
}
.magic-drag-cursor #ball-cursor:before {
    font-weight: 500;
}
/* text gradient color */
.text-gradient-base-color {
    background-image: linear-gradient(to right, #e97522 0%, #1ea3b1 100%); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-gradient-primary {
    background-image: linear-gradient(135deg, #d115b5 0%, #b12b9f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-orange{
    color: #e97522;
}
.text-blue{
    color: #1ea3b1;
}
/* bg gradient color */
.bg-gradient-top-very-light-gray { 
    background-image:linear-gradient(to right, #fbf3e9, #f9f4eb, #f4f4f0, #f2f4f2, #eff4f4);
}
.bg-linen {
    background: #f6f4f3;
}
.bg-gradient-orange-transparent {
    background: linear-gradient(to right, rgba(233, 117, 34, 1.0) 10%, rgba(255, 255, 255, 0.0) 95%);
}
.bg-gradient-blue-transparent {
    background: linear-gradient(to right, rgba(30, 163, 177, 1.0) 10%, rgba(255, 255, 255, 0.0) 95%);
}
/* Professional glass effect enhancement */
.glass-effect {
    backdrop-filter: blur(12px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.97) !important;
}
/* Header icon spacing */
header .header-icon i {
    font-size: 14px;
}
header .header-button .btn span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
header .header-button .btn i {
    margin-right: 0;
    order: -1;
}
/* blog only text */
.blog-only-text .card-body:after {
    display: none;
}
/* social icon style 06 */
.social-icon-style-06 li {
    position: relative;
}
.social-icon-style-06 li:before {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: var(--medium-gray);
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
    opacity: .5;
}
.social-icon-style-06 li:last-child:before {
    display: none;
}
.google-maps-link a:hover {
    color: var(--white);
}
/* footer */
footer {
    background-color: #ffffff;
}
footer ul {
    list-style: none;
    padding: 0;
}
footer .row.align-items-center {
    flex-wrap: nowrap !important;
    justify-content: space-between;
    align-items: center;
}
footer ul li {
    margin-bottom: 0;
    line-height: 28px;
}
footer a {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
footer a:hover {
    color: #d115b5 !important;
}
footer .footer-logo img {
    max-height: 34px;
}
footer .footer-navbar {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 24px;
    align-items: center;
    flex-wrap: nowrap;
}
footer .footer-social-icon {
    list-style: none;
    padding: 0;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
}
footer .footer-social-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e4e4e4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
footer .footer-social-icon a:hover {
    background-color: #d115b5;
    border-color: #d115b5;
    transform: translateY(-2px);
}
footer .footer-social-icon a:hover i {
    color: #ffffff !important;
}
/* z-index */
.z-index-99 {
    z-index: 99; 
}
/* Homepage hero section height control */
.full-screen:not(.registration-hero) {
    min-height: 65vh !important;
    height: auto !important;
    padding-top: 14rem !important;
    overflow: visible !important;
}
.full-screen:not(.registration-hero) p {
    font-size: 18px;
    line-height: 32px;
}
/* Professional registration page enhancements */
.registration-hero {
    min-height: calc(100vh - 55px);
}
.registration-content {
    animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Enhanced slider navigation buttons */
.slider-navigation-style-04 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}
.slider-navigation-style-04:hover {
    background-color: #1d1d1d !important;
    border-color: #1d1d1d !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.slider-navigation-style-04:hover i {
    color: #ffffff !important;
}
/* Enhanced marquee slide */
.marquee-slide .swiper-slide {
    transition: opacity 0.3s ease;
}
.marquee-slide {
    position: relative;
    z-index: 1;
}
section.overflow-hidden {
    z-index: 0;
}
/* Homepage marquee positioning */
.full-screen + .overflow-hidden {
    padding-top: 10rem !important;
    position: relative;
    z-index: 0;
    margin-top: 2rem;
}
/* Hero section bottom spacing */
.full-screen:not(.registration-hero) .position-relative.z-index-9 {
    padding-bottom: 2rem;
    z-index: 20;
}
.full-screen:not(.registration-hero) {
    z-index: 20;
    position: relative;
}
/* Professional spacing utilities */
.lh-32 {
    line-height: 32px;
}
/* Enhanced border on mobile */
@media (max-width: 767px) {
    .md-border-0 {
        border: 0 !important;
    }
}
/* Professional focus states for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid #d115b5;
    outline-offset: 2px;
}
/* Enhanced swiper pagination */
.swiper-pagination-progress {
    transition: all 0.3s ease;
}
/* Professional hover effects for images and logos */
.client-box img {
    transition: filter .35s ease, opacity .35s ease, transform .35s ease;
    filter: grayscale(100%);
    opacity: 0.7;
    transform: translate3d(0,0,0);
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    will-change: transform, filter, opacity;
}
.client-box:hover img {
    transform: translateY(-4px) translateZ(0);
    filter: grayscale(0%);
    opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
    .client-box img,
    .client-box:hover img {
        transition: none;
        transform: none;
    }
}
/* Smooth scroll progress indicator */
.scroll-progress .scroll-top:hover {
    transform: translateY(-3px);
}
/* Enhanced card and content transitions */
.swiper-slide {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Professional text selection */
::selection {
    background-color: rgba(209, 21, 181, 0.2);
    color: #1d1d1d;
}
::-moz-selection {
    background-color: rgba(209, 21, 181, 0.2);
    color: #1d1d1d;
}
@media (min-width: 992px) {
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu li a {
        padding: 20px 30px;
    }
    .navbar .navbar-nav .dropdown.dropdown-with-icon-style02 .dropdown-menu {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        width: 285px;
    }
}
@media (max-width: 1199px) {
    .left-minus-45 {
        left: -78%;
    }
    .lg-ms-70px {
        margin-left: 70px;
    }
    .lg-bg-transparent {
        background-color: transparent;
    }
    .one-half-screen {
        height: auto !important;
    }
    .full-screen:not(.registration-hero) {
        min-height: 70vh !important;
        height: 70vh !important;
        padding-top: 10rem !important;
    }
    .full-screen:not(.registration-hero) h1 {
        font-size: 2.8rem;
        line-height: 3.2rem;
    }
    .full-screen:not(.registration-hero) p {
        font-size: 17px;
        line-height: 30px;
    }
}
@media (max-width: 991px) {
    [data-mobile-nav-style=modern] .navbar-modern-inner .navbar-nav .nav-item .dropdown-menu a i {
        font-size: 19px;
        vertical-align: middle;
        color: var(--white);
    }
    .md-top-auto {
        top: auto;
    }
    header nav.navbar {
        min-height: 52px;
        padding: 0.4rem 0;
    }
    header .navbar-brand img {
        max-height: 22px;
    }
    .navbar .navbar-nav .nav-link {
        font-size: 13px;
        padding: 0.3rem 0.8rem;
    }
    header nav.navbar .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .full-screen:not(.registration-hero) {
        min-height: auto !important;
        height: auto !important;
        padding: 10rem 0 6rem 0;
    }
    .full-screen:not(.registration-hero) h1 {
        font-size: 2.2rem;
        line-height: 2.6rem;
    }
    .full-screen:not(.registration-hero) p {
        font-size: 16px;
        line-height: 28px;
    }
}
/* Safe spacer under hero CTA */
.hero-spacer {
    height: 2.5rem;
    width: 100%;
}
/* Sleek modal styling */
.modal-content {
    border: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.modal-header .modal-title {
    font-weight: 700;
}
.modal-header, .modal-footer {
    padding: 1.25rem 1.5rem;
}
.modal-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
}
/* Blur the background while modal is open */
.modal-backdrop.show {
    background-color: rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: backdrop-filter 0.3s ease, background-color 0.3s ease;
}
.btn.btn-dark {
    background-color: #1d1d1d;
    border: none;
}
.btn.btn-dark:hover {
    background-color: #000;
}
