:root {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;
    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;
    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;
    --primary: 222.2 47.4% 11.2%;
    --primary-foreground: 210 40% 98%;
    --secondary: 210 40% 96.1%;
    --secondary-foreground: 222.2 47.4% 11.2%;
    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;
    --accent: 210 40% 96.1%;
    --accent-foreground: 222.2 47.4% 11.2%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;
    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 91.4%;
    --ring: 222.2 84% 4.9%;
    --radius: 1rem;
    --background-radial-gradient:radial-gradient(transparent,transparent, #A07CFE,#FE8FB5,#FFBE7B,transparent,transparent);
}

.dark {
    --background: 222.2 84% 4.9%;
    --foreground: 210 40% 98%;
    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;
    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;
    --primary: 210 40% 98%;
    --primary-foreground: 222.2 47.4% 11.2%;
    --secondary: 217.2 32.6% 17.5%;
    --secondary-foreground: 210 40% 98%;
    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;
    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;
    --destructive: 0 62.8% 30.6%;
    --destructive-foreground: 210 40% 98%;
    --border: 217.2 32.6% 17.5%;
    --input: 217.2 32.6% 17.5%;
    --ring: 212.7 26.8% 83.9;
    --background-radial-gradient:radial-gradient(transparent,transparent, #A07CFE,#FE8FB5,#FFBE7B,transparent,transparent);
}

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@700&display=swap"); 


@font-face {
    font-family: 'test_shne_schmalkrftig';
    src: url('fonts/testsohneschmal-kraftig-bf663d89cad3ca8-webfont.eot');
    src: url('fonts/testsohneschmal-kraftig-bf663d89cad3ca8-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/testsohneschmal-kraftig-bf663d89cad3ca8-webfont.woff2') format('woff2'),
         url('fonts/testsohneschmal-kraftig-bf663d89cad3ca8-webfont.woff') format('woff'),
         url('fonts/testsohneschmal-kraftig-bf663d89cad3ca8-webfont.svg#test_shne_schmalkrftig') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'test_shne_schmalfett';
    src: url('fonts/testsohneschmal-fett-bf663d89cadad5a-webfont.eot');
    src: url('fonts/testsohneschmal-fett-bf663d89cadad5a-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/testsohneschmal-fett-bf663d89cadad5a-webfont.woff2') format('woff2'),
         url('fonts/testsohneschmal-fett-bf663d89cadad5a-webfont.woff') format('woff'),
         url('fonts/testsohneschmal-fett-bf663d89cadad5a-webfont.svg#test_shne_schmalfett') format('svg');
    font-weight: normal;
    font-style: normal;
}

body{
    font-family: DM Sans, sans-serif;
}

.sohne{
    font-family: 'test_shne_schmalkrftig';
}

.sohnebold{
    font-family: 'test_shne_schmalfett';
}

.text-foreground\/70 {
    color: hsl(var(--foreground) / .7);
}

.hover\:text-foreground:hover {
    color: hsl(var(--foreground));
}

.text-foreground {
    color: hsl(var(--foreground));
}

.text-foreground\/50 {
    color: hsl(var(--foreground) / .5);
}

.text-primary\/50 {
    color: hsl(var(--primary) / .5);
}

.dark\:text-white:is(.dark *) {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}

@layer utilities {
  @keyframes shine-pulse {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
}

.app {
    font-family: 'Inter', sans-serif;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    background-color: #0b0b0f;
    opacity: 0;
    transform: scale(0.98);
    filter: blur(10px);
    transition: opacity 1s ease, transform 1s ease, filter 1s ease;
}

.app.page-loaded {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.app.animation-done {
    transition: none;
    opacity: 0;
}

.app h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #6EE7B7, #3B82F6, #9333EA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app p {
    font-size: 1.2rem;
    color: #ccc;
}

.app::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(147, 51, 234, 0.2), transparent),
    radial-gradient(circle at bottom, rgba(59, 130, 246, 0.2), transparent);
    z-index: -1;
}

.bg-gradient {
    background: conic-gradient(from 180deg at 50% 50%, #2a8af6 0deg, #a853ba 180deg, #e92a67 1turn);
    mix-blend-mode: normal;
    filter: blur(75px);
    will-change: filter;
    border-radius: 100%;
    opacity: .2;
    width: 1200px;
    height: 300px;
}

.blur-layer {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    overflow: hidden;
}

.blur-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(15px);
    transform: scale(1.05);
}

.handle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 2px;
    background: #fff;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.handle-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px rgba(0,0,0,0.6);
}

.arrow.right {
    transform: rotate(180deg);
}

@keyframes dashmove {
    to { stroke-dashoffset: -100; }
}

.scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 20px;
}

.scrollbar::-webkit-scrollbar-track {
    border-radius: 100vh;
    background: #314158;
}

.scrollbar::-webkit-scrollbar-thumb {
    background: #62748e;
    border-radius: 100vh;
    border: 1px solid #314158;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
    background: #cad5e2;
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1060;
}

.toast-container-modal {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1060;
    filter: none;
}

.toast-container-modalapp{
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1060;
    filter: none;
}

/* Toast Styles */
.toast {
    background-color: #333;
    color: white;
    border-radius: 5px;
    padding: 10px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    background-color: #4CAF50;
}

.toast.error {
    background-color: #F44336;
}

.toast svg {
    margin-right: 10px;
}

.toast .toast-message {
    font-size: 13px;
    margin-top: 10px;
    width: auto;
    max-width: 401px;
    word-wrap: break-word; 
}

.animatemove {
    animation: ticker 6s infinite linear;
    display: flex;
    flex-wrap: nowrap;
}

.testimonial-container {
    display: flex;
    flex-wrap: nowrap;
}

@keyframes ticker {
    100% {
        transform: translateX(-24%);
    }
}

.highlight {
    box-shadow: 0 0 15px rgba(56,189,248,0.9);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.transition-all {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

.translate-y-10 {
    transform: translateY(10px);
}

.translate-y-0 {
    transform: translateY(0);
}

#sliderImages,
#informationsection,
#secttionLearn,
#landedPakistan {
    opacity: 0; 
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

#sliderImages.opacity-100,
#informationsection.opacity-100,
#secttionLearn.opacity-100,
#landedPakistan.opacity-100 {
    opacity: 1;
    transform: translateY(0); 
}

#time::-webkit-calendar-picker-indicator,
#appointmentdate::-webkit-calendar-picker-indicator {
    filter: invert(100%) sepia(30%) saturate(58%) hue-rotate(198deg) brightness(80%) contrast(80%);
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
}
   
.duration-300 {
    animation-duration: .3s;
    transition-duration: .3s;
}  

.g-recaptcha {
    transform: scale(0.99) !important;
    transform-origin: 0 0;
}