*{
    margin: 0px;
    padding: 0%;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.3s ease-in-out;
}

.whatsapp-float i {
    font-size: 28px;
}

.wa-text {
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.07);
}

    /* Color Theme */
    :root {
      --navy: #0a1a33;
      --brown: #8b5e34;
      --white: #ffffff;
      --black: #000000;
    }

/* orbitimages */
   .otaCircle {
  position: relative;
  width: 450px;
  height: 450px;
  margin: auto;
}

/* OUTER CIRCLE */
.big-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

/* INNER CIRCLE */
.circle {
  position: absolute;
  width: 350px;
  height: 350px;
  top: 50%;
  left: 50%;
  margin-left: -175px;
  margin-top: -175px;
  border-radius: 50%;
  animation: rotate-reverse 30s linear infinite;
}

/* CIRCLE BORDER LINES */
.orbit-border {
  border: 2px dashed #cdd1d8;
}

.orbit-border-small {
  border: 2px dashed #dce0e5;
}

/* ICON POSITIONING */
.icon-block {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;  
  height: 14px;  
  margin: -50px; 
}
.icon-block img{
    width: 100px;
     height: 100px;
    border-radius: 50%;
    background-color: white;
    animation: rotate-image 30s linear infinite;
}
.icon-block .logo-inner img{
    width: 100px;
     height: 100px;
    border-radius: 50%;
    background-color: white;
    animation: rotate-image 30s linear infinite;
}

        icon-block {
            position: absolute;
            top: 50%; 
            left: 50%;
            
            /* Variables for placement */
            --num-items: 6; 
            --radius: 200px; 
            --angle: calc(360deg / var(--num-items) * var(--i));
            
            /* Place the item around the circle */
            transform: 
                translate(-50%, -50%) /* Center the logo-item itself */
                rotate(var(--angle)) 
                translate(var(--radius)); /* Move out by the radius */
            
            /* The logo-item moves with the parent .moving-circle and is also placed */
            transform-origin: 0 0; /* Reset origin for stability */
        }



/* place icons evenly */
.big-circle .icon-block:nth-child(1) { transform: rotate(0deg) translate(300px) rotate(0deg); }
.big-circle .icon-block:nth-child(2) { transform: rotate(45deg) translate(300px) rotate(-45deg); }
.big-circle .icon-block:nth-child(3) { transform: rotate(90deg) translate(300px) rotate(-90deg); }
.big-circle .icon-block:nth-child(4) { transform: rotate(135deg) translate(300px) rotate(-135deg); }
.big-circle .icon-block:nth-child(5) { transform: rotate(180deg) translate(300px) rotate(-180deg); }
.big-circle .icon-block:nth-child(6) { transform: rotate(225deg) translate(300px) rotate(-225deg); }
.big-circle .icon-block:nth-child(7) { transform: rotate(270deg) translate(300px) rotate(-270deg); }
.big-circle .icon-block:nth-child(8) { transform: rotate(315deg) translate(300px) rotate(-315deg); }

.circle .icon-block:nth-child(1) { transform: rotate(0deg) translate(175px) rotate(0deg); }
.circle .icon-block:nth-child(2) { transform: rotate(90deg) translate(175px) rotate(-90deg); }
.circle .icon-block:nth-child(3) { transform: rotate(180deg) translate(175px) rotate(-180deg); }
.circle .icon-block:nth-child(4) { transform: rotate(270deg) translate(175px) rotate(-270deg); }




/* CENTER LOGO */
.center-logo {
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 45%;
  left: 45%;
  width: 180px;
  height: 180px;
  margin-left: -60px;
  margin-top: -60px;
  border-radius: 50%;
}

.center-logo img {
  width: 100%;
  height: 100%;
}

/* ANIMATIONS */
        /* Animation 1: Spins the main container clockwise */
        @keyframes rotate  {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(-360deg);
            }
        }

                @keyframes  rotate-reverse  {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(-360deg);
            }
        }

        /* Animation 2: Spins the logo element counter-clockwise */
        @keyframes rotate-image {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
          @keyframes rotate-reverse-image {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(-360deg);
            }
        }
        





/* button styling */
.book-now-btn {
    background: linear-gradient(to bottom, black, #0a1a33); 
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.4); 
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.book-now-btn:hover {
    background: linear-gradient(to bottom, #4a4a4a, #8b5e34);
    box-shadow: 0 6px 8px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.book-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 5px rgba(0,0,0,0.4);
}


#top-navbar {
    width: 100%;
    height: 10vh;
    position: fixed;
    top: 0;
    left: 0;
    padding-right: 10%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
    z-index: 999;
}

#top-navbar.scrolled {
    background-color: white; 
    box-shadow: 0 2px 5px rgb(162, 161, 161);
}
.container-fluid{
    margin-bottom: 5%;
}


.logo {
    margin-left: 100px;
    height:30px;
}

.nav-link-custom {
    color: navy !important;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link-custom:hover {
    color: brown !important;
}


.dropdown-custom {
    background-color: navy;
}

.dropdown-custom .dropdown-item {
    color: black;
}

.dropdown-custom .dropdown-item:hover {
    background-color: rgb(215, 215, 215);
    color: black;
}


.nav-btn {
    background-color: white;
    border-radius: 5px;
}



/* -----hero section--------- */
.hero-section {
    padding: 30px 0;
    
    
}


.hero-title {
    color: navy;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.4;
}

.type-blue {
    color: brown; 
    font-weight: 800;
}

.hero-desc {
    font-size: 18px;
    max-width: 480px;
    color: navy;
}

/* text-styling */
    .smooth-flip-box {
        font-size: 32px;
        font-weight: bold;
        color: #613103;
        display: inline-block;
        height: 40px;
        overflow: hidden;
        perspective: 1000px;
    }

    .smooth-flip-box span {
        display: inline-block;
        transform-origin: top;
        opacity: 0;
    }



/* all ottes */

.logo-slider-section {
    margin-top: -5%;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.15);
}

.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    border-radius: 20px;
}

.logo-track {
    display: flex;
    gap: 40px;
    width: calc(250px * 14);
    animation: slide 70s linear infinite;
}

.logo-track img {
    width: 90px;
    height: 6rem;
    filter: brightness(1);
    transition: 0.3s ease;
}

.logo-track img:hover {
    transform: scale(1.1);
}


@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}



@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu {
        margin-top: 0;
    }
}


.dropdown-menu {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease-in-out;
}

/* --benefits-section-- */
.benefits-auto-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.benefits-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: benefitsSlide 60s linear infinite;
}

.benefit-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px 20px;
    margin: 15px;
    width: 280px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.12);
    text-align: center;
    flex-shrink: 0;
}

.benefit-box img {
    width: 90px;
    height: 6rem;
    object-fit: contain;
    transition: 0.3s;
}

.benefit-box img:hover {
    transform: scale(1.1);
}

@keyframes benefitsSlide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
/* why choose saasaro */
.choose-saasaro-section {
    background: white;
    color: black;
}

.section-title {
    color:#0a1a33 ;
}

.section-text {
    color: #333;
    font-size: 1.1rem;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    padding: 8px 0;
    font-weight: 500;
    color: brown;
}

.custom-list li::before {
    color: navy;
    font-size: 22px;
    font-weight: bold;
}

/* state-section */

.stats-section {
  background: #ffffff;
}

.stats-box {
  background: #002664;
  border-radius: 30px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f1f4f7;
}

.stat-label {
  font-size: 1.2rem;
  color: #ffffff;
  margin-top: -8px;
 
}



/* Review Card */
.review-card {
    background: #f3f6ff; 
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    background: #eaf0ff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.review-text {
    color: #1b294f;
    font-size: 15px;
    line-height: 1.6;
}

.review-author h6 {
    color: #0e1a44;
}
.underline {
    width: 30%;
    height: 3px;
    background: #0a3150;
}






/* ---FAQ-Section--- */


.faq-section {
    background: #ffffff;
    padding: 80px 0;
    font-family: "Poppins", sans-serif;
}

.faq-heading {
    color: #163063;
    font-size: 32px;
    line-height: 1.4;
}

.faq-heading span {
    color: brown;
    text-decoration: underline;
}

.faq-line {
    width: 120px;
    height: 4px;
    background: brown;
    margin-top: 10px;
    border-radius: 20px;
}

.faq-btn {
    background: #163063;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    border: 2px solid transparent;
    transition: 0.3s;
}

.faq-btn:hover {
    background: brown;
    border-color: brown;
}
/* blog-link-section */

.blog-link {
    background: #f8f9fa;
}

.blog-card {
    text-decoration: none;
    color: inherit;
}

.blog-img {
    border-radius: 10px;
    height: 320px;
    object-fit: cover;
    transition: 0.3s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.03);
}

.blog-text {
    background: #fff;
    border-radius: 10px;
    margin-top: -20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.blog-card:hover .blog-text {
    transform: translateY(-5px);
}

.blog-text h5 {
    color: #163063;
}

.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50%;
    background-color: #163063 !important;
}

/* FAQ Box */
.faq-box {
    background: #f7f8fb;
    border: 2px solid #16306320;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.faq-box.active {
    border-color: brown;
    background: #163063;
    color: #fff;
}

.faq-question {
    padding: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 18px;
    color: brown;
}

.faq-box.active .faq-icon {
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 18px;
    color: #555;
    transition: max-height 0.4s ease;
}

.faq-box.active .faq-answer {
    padding: 18px;
    max-height: 300px;
}

.faq-box:hover:not(.active) {
    background: #16306310;
}

