
:root {
    --primary-color: #1f2020;
    --secondary-color: #98fbcc;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #fff;
    border-bottom-color: var(--secondary-color);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.navbar {
    padding: 0px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--primary-color) !important;
    padding: 0px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 70px;
    padding: 0px !important;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: white;
}

.offcanvas {
    background-color: var(--primary-color);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.dark-section {
    background-color: var(--primary-color);
    color: white;
}

.light-section {
    background-color: white;
    color: var(--dark-color);
}

.section-title {
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--secondary-color);
    bottom: -10px;
    left: 0;
}

/* Banner */
.banner-slide {
    min-height: 650px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.banner-content {
    max-width: 600px;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
}

.app-buttons .btn {
    padding: 10px 20px;
    border-radius: 50px;
    margin-right: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.app-buttons .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-appstore {
    background-color: white;
    color: var(--dark-color);
}

.btn-playstore {
    background-color: var(--secondary-color);
    /* color: white; */
}

/* About */
/* .about-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.about-img:hover {
    transform: scale(1.03);
}

.about-content h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.about-content ul li i {
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 5px;
} */
 
/* About Section Food Icons */
.about-img {
    position: relative;
}

.about-icon {
    position: absolute;
    z-index: 2;
    width: 60px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}


.about-content ul {
    list-style: none;
    padding: 0;
}

.about-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.about-content ul li i {
    /* color: var(--secondary-color); */
    position: absolute;
    left: 0;
    top: 5px;
}

.about-icon:hover {
    transform: scale(1.1);
    opacity: 1;
}

.about-icon-1 {
    top: -20px;
    left: -20px;
    transform: rotate(-15deg);
}

.about-icon-2 {
    bottom: -20px;
    right: -20px;
    transform: rotate(15deg);
}

.about-icon-3 {
    top: 50%;
    left: -30px;
    transform: translateY(-50%) rotate(-10deg);
}

.about-icon-4 {
    top: 10px;
    right: 20px;
    width: 40px;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-icon {
        width: 40px;
    }
    
    .about-icon-1 {
        top: -10px;
        left: -10px;
    }
    
    .about-icon-2 {
        bottom: -10px;
        right: -10px;
    }
    
    .about-icon-3 {
        left: -15px;
    }
}






/* Features */
.feature-box {
    padding: 30px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.dark-section .feature-box {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-weight: 600;
    margin-bottom: 15px;
}




/* Features Section Pattern Decorations */
.features-pattern {
    position: absolute;
    z-index: 0;
    opacity: 0.08;
    width: 150px;
    height: auto;
    pointer-events: none;
}

.features-pattern-top-left {
    top: 50px;
    left: 50px;
    transform: rotate(-15deg);
}

.features-pattern-bottom-right {
    bottom: 50px;
    right: 50px;
    transform: rotate(15deg);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .features-pattern {
        width: 120px;
    }
    
    .features-pattern-top-left {
        top: 30px;
        left: 30px;
    }
    
    .features-pattern-bottom-right {
        bottom: 30px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .features-pattern {
        width: 80px;
        opacity: 0.05;
    }
}

/* How it works */
.step-box {
    text-align: center;
    padding: 30px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.step-icon img{
    height: 70px;
}

.step-title {
    font-weight: 600;
    margin-bottom: 15px;
}



/* How It Works Connecting Line */
.works-connecting-line {
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        to right,
        #98fbcc,
        #98fbcc 10px,
        transparent 10px,
        transparent 20px
    );
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.3;
    display: none;
}

.step-box {
    position: relative;
    z-index: 1;
}

.step-number {
    position: relative;
    z-index: 2;
    display: none;
}

/* Show connecting line only on desktop */
@media (min-width: 992px) {
    .works-connecting-line {
        display: block;
    }
    
    /* Alternative dotted line style */
    .works-connecting-line {
        background: radial-gradient(circle, #98fbcc 2px, transparent 2px);
        background-size: 20px 4px;
        background-repeat: repeat-x;
    }
    
    /* Alternative snake line style */
    .works-connecting-line {
        background: linear-gradient(to right, 
            transparent 10%, 
            #98fbcc 10%, 
            #98fbcc 15%, 
            transparent 15%, 
            transparent 35%, 
            #98fbcc 35%, 
            #98fbcc 40%, 
            transparent 40%, 
            transparent 60%, 
            #98fbcc 60%, 
            #98fbcc 65%, 
            transparent 65%, 
            transparent 85%, 
            #98fbcc 85%, 
            #98fbcc 90%, 
            transparent 90%
        );
    }
}









/* App Screens */
.app-screen-slide {
    text-align: center;
}

.app-screen-slide img {
    max-height: 500px;
    margin: 0 auto;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: var(--secondary-color);
    opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--secondary-color);
}



.swiper-button-next, .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    background: white;
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    color: #0d414e;
    transition: all 0.3s ease;
}


.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 20px !important;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

/* Download */
.download-content {
    max-width: 600px;
}

.download-img {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.download-img img{
   height: 500px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Contact */
.contact-info {
    margin-bottom: 30px;
}

.contact-info i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 15px;
}

.contact-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.form-control {
    height: 50px;
    border-radius: 10px;
    margin-bottom: 20px;
}

textarea.form-control {
    height: auto;
}

.btn-send {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background-color: #98fbcc;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 0;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    bottom: -10px;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #adb5bd;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 100px;
    z-index: 999;
  
    margin-top: 40px;
}



.footer-bottom p a{
    color: rgb(249, 209, 156);
    text-decoration: none;
}

.footer-bottom p a:hover{
    color:#ffffff;
    text-decoration: none;
}



/* Footer Background with Overlay */
footer {
    position: relative;
    background:  
                url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding-top: 80px;
    padding-bottom: 0;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

footer > .container {
    position: relative;
    z-index: 1;
}

/* Adjust text colors for dark background */
footer .footer-about p,
footer .footer-links p,
footer .footer-links ul li a,
footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

footer .footer-links h4,
footer .footer-bottom .text-danger {
    color: white;
}

/* Social icons styling */
footer .social-icons a {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

footer .social-icons a:hover {
    background-color: #98fbcc;
}

/* Download buttons styling */
footer .btn-appstore {
    background-color: white;
    color: #333;
}

footer .btn-playstore {
    background-color: #98fbcc;
    color: white;
}



.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom:-6px !important;
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}


/* Responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
    }
    
    .banner-title {
        font-size: 36px;
    }
    
    .banner-subtitle {
        font-size: 18px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .banner-slide {
        min-height: 500px;
        text-align: center;
    }
    
    .banner-content {
        margin: 0 auto;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    section {
        padding: 45px 0;
    }
}

@media (max-width: 575.98px) {
    .banner-title {
        font-size: 28px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    .app-buttons .btn {
        margin-bottom: 15px;
        margin-right: 0;
        display: block;
        width: 100%;
    }
    
    section {
        padding: 40px 0;
    }
}






/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1f2020#98fbcc, #98fbcc);
    color: #98fbcc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #98fbcc, #1f2020#98fbcc);
}

/* Optional: Pulse Animation */
.back-to-top.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 201, 158, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        bottom: 20px;
        right: 20px;
    }
}





.inner-banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #ffed4524;
  }
  .inner-banner .inner-title {
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
  }
  .inner-banner .inner-title h3 {
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  .inner-banner .inner-title ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .inner-banner .inner-title ul li {
    font-size: 18px;
    color: #1c1c25;
    display: inline-block;
    position: relative;
    margin-right: 0px;
    font-weight: 600;
  }
  .inner-banner .inner-title ul li i {
    font-size: 22px;
    top: 4px;
    position: relative;
    left: 10px;
  }
  .inner-banner .inner-title ul li:last-child {
    margin-right: 0;
  }
  .inner-banner .inner-title ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    height: 10px;
    width: 10px;
    border-radius: 50px;
    background-color: #98fbcc;
    display: none;
  }
  .inner-banner .inner-title ul li a {
    color: #1c1c25;
  }
  .inner-banner .inner-title ul li a:hover {
    color: #98fbcc;
  }
  .inner-banner .inner-line .line1 {
    position: absolute;
    left: 0;
    top: -70px;
    width: 35px;
    height: 170px;
    background-color: #98fbcc;
    border-radius: 50px;
    transform: rotate(-35deg);
  }
  .inner-banner .inner-line .line2 {
    position: absolute;
    right: 0;
    bottom: -70px;
    width: 35px;
    height: 170px;
    background-color: #aa6bd8;
    border-radius: 50px;
    transform: rotate(-35deg);
  }











       
.hoyasala-header h1 {
  margin: 0;
}
.hoyasala-container {
  max-width: 80%;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.hoyasala-heading {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #333;
}
.hoyasala-paragraph {
  font-size: 1rem;
  margin-bottom: 15px;
}
.hoyasala-list {
  margin: 15px 0;
  padding-left: 20px;
  list-style: none;
}
.hoyasala-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px; 
}
.hoyasala-list li::before {
  content: "◉"; 
  color:#1f2020; 
  position: absolute;
  left: 0;
  font-size: 1.2rem; 
  top: 0;
}
.hoyasala-link {
  color:#1f2020;
  text-decoration: none;
}
.hoyasala-link:hover {
  text-decoration: underline;
}
