/*-----------------------------------------------------------------------------------
    *  HandyQServe - CSS Stylesheet

-----------------------------------------------------------------------------------*/


/* --------Font--------------- */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Inter_18pt-Light.ttf'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/Inter_18pt-Light.ttf') format('truetype'), /* Safari, Android, iOS */
  }
  /* inter-regular - inter */
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Inter_18pt-Regular.ttf'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/Inter_18pt-Regular.ttf') format('truetype'), /* Safari, Android, iOS */  ;
  }
  /* inter-italic - inter */
  @font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/Inter_18pt-Italic.ttf'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/Inter_18pt-Italic.ttf') format('truetype'), /* Safari, Android, iOS */
  }
  /* inter-500 - inter */
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Inter_18pt-Medium.ttf'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/Inter_18pt-Medium.ttf') format('truetype'), /* Safari, Android, iOS */
  }
  /* inter-500italic - inter */
  @font-face {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 500;
    src: url('../fonts/Inter_18pt-MediumItalic.ttf'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/Inter_18pt-MediumItalic.ttf') format('truetype'), /* Safari, Android, iOS */
  }
  /* inter-600 - inter */
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Inter_18pt-SemiBold.ttf'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/Inter_18pt-SemiBold.ttf') format('truetype'), /* Safari, Android, iOS */
  }
  /* inter-700 - inter */
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Inter_18pt-Bold.ttf'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/Inter_18pt-Bold.ttf') format('truetype'), /* Safari, Android, iOS */
  }
  /* inter-800 - inter */
  @font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/Inter_18pt-ExtraBold.ttf'); /* IE9 Compat Modes */
    src: local(''),
         url('../fonts/Inter_18pt-ExtraBold.ttf') format('truetype'), /* Safari, Android, iOS */
  }

/* -----------Css-variable------ */

:root {
    --text-blue: #2584F8;
    --blue: #2B64F6;
    --dark-blue: #071422;
    --body-text: #000000;
    --text-white: #ffffff;
    --bg-white: #ffffff;
    --slider-dots-color: #D4D2DD;
    --light-bg: #F6F9FF;
    --dark-bg: #303030;
    --dark-gray: #2F2F2F;
    --border-color: #EDEDED;
}



/* ------Common-Css------------- */

html{scroll-behavior:smooth}

body {
    scrollbar-gutter: stable both-edges;
}

body::-webkit-scrollbar {
  display: contents;
  opacity: 0;
  width: 3px;
  height: 5px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--blue); 
  border-radius: 10px;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    color: var(--body-text);
    background-color: var(--bg-white);
}

.page_wrapper {
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--body-text);
}

a:hover {
    text-decoration: none;
    color: var(--body-text);
}

ul,
li {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

button:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

@media screen and (min-width:1200px) {
    .container {
        max-width: 1170px;
    }
}

/* -------------Preloader-Css-Start-------------- */

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 999999;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--bg-blue);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--body-text);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--blue);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* navigation bar */
.navbar {
    padding-left: 0;
    padding-right: 0;
    padding-top: 35px;
}

.navbar-expand-lg .navbar-nav {
    align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 5px 20px;
    font-weight: 500;
    color: var(--text-white);
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: var(--text-white);
}


.header-navbar {
    flex-flow: column;
    padding: 4px 20px;
    border-radius: 32px;
    border: 0.5px solid #DCDCDC;
    background: var(--bg-white);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 617px;
}

.hero-wrapper {
    height: 685px;
    background: url('../images/hero-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content {
    position: relative;
    top: 20%;
    transform: translate(-50%);
    max-width: 680px;
}

.hero-content h2 {
    font-size: 64px;
    font-weight: 700;
    line-height: 63px;
    letter-spacing: -1.6%;
    text-align: left;
}

.hero-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: var(--text-white);
    margin: 30px 0;
}

.hero-content button {
    background-color: var(--blue);
    color: var(--text-white);
    font-size: 18px;
    font-weight: 500;
    padding: 12px 40px;
    border-radius: 12px;
    border: none;
}

main .about-section {
    margin: 6rem auto;
}

main .header h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -2.4px;
}

main .header p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
}

main .about-section .card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

main .about-section .card {
    border-radius: 16px;
    border-color: var(--border-color);
    transition: transform 0.5s ease;
}

main .about-section .card:hover {
    transform: scale(1.02);
}

/* Full-height card */
main .about-section .card-full-height {
    height: 100%;
}

main .about-section .card-1 {
    background-position: top 100px right 0px;
    background-image: url('../images/dashboard.png');
    background-repeat: no-repeat;
    background-size: auto;
    padding: 3rem;
}
main .about-section .card-1 .card-content,
main .about-section .card-4 .card-content {
    max-width: 60%;
}

main .about-section .card-1 h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: -2.4px;
}

main .about-section .card-2 {
    background-size: cover;
    background-position: center;
    background-image: url('../images/male-with-female.png');
    background-repeat: no-repeat;
}
main .about-section .card-2 .card-content {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    border-radius: 16px;
    color: var(--bg-white);
}
main .about-section .card-2 .card-content h5,
main .about-section .card-3 .card-content h5,
main .about-section .card-4 .card-content h5 {
    font-weight: 500;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -2px;
    vertical-align: bottom;
}
main .about-section .card-2 .card-content p,
main .about-section .card-3 .card-content p,
main .about-section .card-4 .card-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    vertical-align: bottom;
}

main .about-section .card-3 {
    background-size: auto;
    background-position: center;
    background-image: url('../images/golder-star.png');
    background-repeat: no-repeat;
    background-position: top 60px right 0px;
    padding: 3rem 0;
}

main .about-section .card-4 {
    background-size: auto;
    background-position: center;
    background-image: url('../images/smart-scheduling.png');
    background-repeat: no-repeat;
    background-position: top 60px right 0px;
    padding: 3rem 0;
}


/* Set the height of card 2 and divide height equally for card 3 and card 4 */
main .about-section .column-2 {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 1.5em;
}

main .about-section .column-2 .card {
    flex: 1;
}

/* Ensuring cards inside column-2 take half height each */
main .about-section .card-3, main .about-section .card-4 {
    height: 50%;
}

main .business-section {

}

footer {
    background-color: var(--light-bg);
    padding: 92px 0;
}

footer .banner {
    background-color: var(--blue);
    border-radius: 12px;
}

footer input {
    background-color: #112F82;
    border: none;
    outline: none;
    color: var(--text-white);
    border-radius: 12px;
    display: flex;
    width: 457px;
    height: 48px;
    padding: 0px 6px 0px 24px;
    align-items: center;
    gap: 8px;
}

footer input::placeholder {
    color: var(--text-white);
    font-size: 16px;
    font-weight: 400;
}

footer .links h4 {
    font-weight: 800;
    font-size: 16px;
    color: #191D23;
}

footer .links p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #4B5768;
}

  body {
            background: #f8f9fa;
            color: #333;
            min-height: 100vh;
            background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
        }
        
        .hero-section {
            padding: 100px 50px;
            border-radius: 20px;
            border:1px solid var(--border-color);
            margin-top: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--accent-color);
        }
        
        h1 {
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 30px;
        }

.header-navbar .nav-links {
    gap: 20px;
}


  .countdown-container {
            margin: 40px 0;
        }
        
        .countdown-box {
            text-align: center;
            padding: 25px 15px;
            border-radius: 12px;
            background: white;
            box-shadow: 0 10px 20px rgba(43, 100, 246, 0.1);
            transition: all 0.3s ease;
            margin: 0 10px;
        }
        
        .countdown-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(43, 100, 246, 0.15);
        }
        
        .countdown-value {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }
        
        .countdown-label {
            font-size: 1rem;
            color: #7f8c8d;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 10px;
        }
        
        .btn-primary {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--accent-dark);
            border-color: var(--accent-dark);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(43, 100, 246, 0.3);
        }
        
        .event-date {
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-bottom: 30px;
        }
        
        .event-date span {
            color: var(--accent-color);
            font-weight: 600;
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(43, 100, 246, 0.1);
            color: var(--accent-color);
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-3px);
        }
        
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            overflow: hidden;
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            background: var(--accent-color);
        }
        
        .shape-1 {
            width: 150px;
            height: 150px;
            top: -50px;
            right: -50px;
        }
        
        .shape-2 {
            width: 250px;
            height: 250px;
            bottom: -100px;
            left: -100px;
        }
        
        @media (max-width: 768px) {
            .countdown-box {
                margin-bottom: 20px;
            }
            
            .countdown-value {
                font-size: 2.5rem;
            }
            
            h1 {
                font-size: 2rem;
            }

             .navbar-brand {
                font-size: 1.2rem;
            }
        }

         .navbar {
            padding: 15px;
            border-bottom:1px solid var(--border-color);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            color: #2c3e50;
            font-size: 1.5rem;
        }
        
        .navbar-brand img {
            margin-left: 10px;
        }
        
        .nav-link {
            color: #2c3e50;
            font-weight: 500;
            margin: 0 10px;
            padding: 8px 15px !important;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
            background: rgba(43, 100, 246, 0.1);
        }
        
        .nav-link.active {
            color: white;
            background: var(--accent-color);
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }
        
        .navbar-toggler:focus {
            outline: none;
        }

        .loader {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--blue);
            width: 4px;
            aspect-ratio: 1;
            border-radius: 50%;
            box-shadow: 19px 0 0 7px, 38px 0 0 3px, 57px 0 0 0;
            transform: translateX(-38px);
            animation: l21 .5s infinite alternate linear;
}

@keyframes l21 {
  50%  {box-shadow: 19px 0 0 3px, 38px 0 0 7px, 57px 0 0 3px}
  100% {box-shadow: 19px 0 0 0  , 38px 0 0 3px, 57px 0 0 7px}
}

@media screen and (max-width:767px) {
  .hero-section { padding: 50px 20px; }
}

