﻿:root {
    --primary-color: #1b4a56;
    --secondary-color: #ff9045;
    --bg-grey: #f1f1f0;
    --sahi-grey: #f8f8f8;
    --bg-white: #fff;
    --text-color: #333;
    --sahi-border-color: #DEE2E6;
    --sub-text-color: #808080;
    --sahi-white: #FFF;
    --sahi-black: #000000;
    --atoll-blue: #0c6980;
    --raw-brown: #8f5D46;
    --border-radius-sm: 3px;
    --border-radius-md: 5px;
    --border-radius-lg: 8px;
    --border-radius-xl: 10px;
    --sahi-dark-blue: #0d1f2d;
    --sahi-blue: #0c6980;
    --sahi-orange: #bf5700;
    --sahi-green: #0b5d1e;
    --sahi-red: #841617;
    --sahi-brown: #8f5D46;
    --sahi-black: #000000;
}
@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('assests/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



body, button, input, select, textarea {
    font-family: "Plus Jakarta Sans", sans-serif !important;
}

.section-container { 
    padding: 80px 10px 20px 10px;
    border-top: 1px solid var(--sahi-border-color);
}

.section-container .hdr {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: var(--sahi-dark-blue);
}

.section-container:nth-of-type(1),
.section-container:nth-of-type(3),
.section-container:nth-of-type(4) {
  background-color: var(--sahi-grey);
}

.section-container:nth-of-type(2) {
  background-color: white;
}

.NewLoginInput {
    display: inline-block;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 20px 30px 10px 10px;
    box-shadow: none !important;
    font-size: 17px;
    width: 65%;
}

.NewLoginInput:focus {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid;
}

.form-control {
    height: 27px;
    padding: 3px 3px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 0px;
    display: table-row;
    display: initial;
    margin-right: 3px;
    border-radius: 0px !important;
    box-shadow: none;
    border-color: #ddd;
}

.subtitle .txt {
    font-size: 17px;
    font-weight: 600;
}

.subtitle .txt-md {
    font-size: 27px;
    font-weight: 600;
}

.mrgn0 {
    margin: 0px;
}

.pad0 {
    padding: 0px;
}
    
.dot {
    margin: 0px 0px 0px 8px;
}
header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3); /* lower opacity for more transparency */
    backdrop-filter: blur(20px); /* more intense blur */
    -webkit-backdrop-filter: blur(20px); /* Safari support */
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* optional: subtle border */
    box-shadow: 0 8px 24px rgb(0 0 0 / 13%);
}




.gradient-text {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(90deg, #128745, #169d53, #1aad5e); /* Slightly darker end */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.container-web {
    width: 95%;
    border-radius: 16px;
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05); */
    padding: 0px 0px;
    margin-bottom: 40px;
    max-width: 500px; 
    max-height: 680px;
}

.full-page-center {
    display: flex;
    justify-content: center;       
    min-height: 60vh;         
    padding: 20px;              
    box-sizing: border-box;
}


.title {
    font-size: 24px;
    font-weight: 700;
    color: var(--sahi-black);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 17px;
    color: #6c757d;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 22px;
}

label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #212529;
   
}

.name-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.name-field {
    flex: 1;
    margin-bottom: 10px;
}

.submit-btn {
    width: 100%;
    padding: 10px 15px;
    background: var(--sahi-green);
    color: white;
    border: 1px solid var(--sahi-green);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
}

.login-btn-container {
    display: flex; 
    gap: 20px; 
    justify-content: center;
}

.back-link {
    display: block;
    text-align: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
}

.otp-container {
    margin-top: 15px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.otp-box, .otp-box-mob {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 24px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.terms-container {
    display: flex;
    /* align-items: center; */
    gap: 12px;
    margin-bottom: 0px;
    font-size: 14px;
}

.terms-link {
    color: var(--sahi-green);
    text-decoration: none;
    font-weight: bold;
}

.terms-link:hover {
    text-decoration: underline;
}

input {
    width: 88%;
    padding: 10px 12px;
    border: 1px solid var(--sahi-green);
    border-radius: 5px;
    font-size: 16px;
    background-color: #fff;
    margin-top: 10px;
    text-align: center;
}

input::placeholder, textarea::placeholder {
    font-style: italic;
    color: #a0a0a0;
}

form[name="createProfileForm"] input {
    width: 100% !important;
    margin-top: 0px !important;
}

form[name="createProfileForm"] label {
    display: flex;
    padding-left: 5px;
    margin-bottom: 5px !important;
    font-weight: 500;
    color: #333;
    font-size: 16px;
}

.mob-field-container {
    display: flex; 
    align-items: center; 
    border: 1px solid var(--sahi-green); 
    border-radius: 4px; 
    overflow: hidden; 
    width: 100%; 
    margin-top: 12px;
}

.input-focus {
    transition: box-shadow 0.3s ease;
}

.input-focus:focus-within {
    box-shadow: 0px 0px 7px var(--sahi-green) !important;
    outline: none !important;
    border: 1px solid var(--sahi-green) !important;
}

.pricing-container {
    padding: 80px 20px 100px;
    background-color: #f8f8f8;
    text-align: center;
    overflow: hidden;
    border-top: 1px solid lightgrey;
}
.pricing-header {
    font-size: 32px;
    font-weight: bold;
    color: var(--sahi-dark-blue);
}
.pricing-subtext {
    font-size: 15px;
    margin-bottom: 30px;
}
.pricing-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.price-card {
    background: var(--bg-white);
    padding: 0px;
    border-radius: 10px;
    width: 400px;
    text-align: left;
    padding: 15px;
    border: 1px solid #ccc;
}

.price-card span {
    color: var(--sahi-black);
    font-weight: 600;
    font-size: 16px;
    margin-left: 8px;
    margin-right: 3px;
}
.price-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0 2px;
    color: var(--sahi-black);
}

.price-card .web-li li {
    font-size: 15px;
}
.price-card ul li {
    margin: 10px 0;
    color: var(--sahi-black);
    font-size: 12px;
}

.price-card.pro li span {
    color: var(--sahi-dark-blue);
}
.price-card.grow li span {
    color: var(--sahi-green);
}
.price-card.scale li span {
    color: var(--sahi-red);
}

.price-btn {
    flex: 1;
    max-width: 147px;
    padding: 7px 22px;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 18px;
}

.price-btn-dark-blue {
    background: var(--sahi-dark-blue);
}

.price-btn-green {
    background: var(--sahi-green);
}

.price-btn-red {
    background: var(--sahi-red);
}

/* Hover State */
.price-btn:hover {
    opacity: 0.9;
}
.price-card h3 {
    margin-top: 0px;
    font-weight: 600;
}
.work-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    padding: 0px 15px; /* Add side padding */
    justify-items: center;
    row-gap: 22px;
    column-gap: 16px;
    padding-bottom: 50px;
  }
  
  .work-card {
    background: #f7f7f7;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    border: 1px solid #ddd;
    box-sizing: border-box;
  }
  
  .work-card img {
    width: 100%; /* Make image responsive */
    height: auto;
    display: block;
    border-radius: 5px;
  }
  
  .work-card h4 {
    font-size: 18px;
    margin: 10px 0 10px;
    font-weight: 700;
    text-align: left;
    color: var(--sahi-dark-blue);
    padding-top: 10px;
  }
  
  .work-card p {
    font-size: 13px;
    text-align: left;
    margin: 0;
    color: var(--sahi-black);
    font-weight: 500;
  }
  
  .feature-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    background-color: var(--sahi-white);
    padding-bottom: 60px;
  }
  
  .slider-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
  }
  
  .tab-content {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    padding: 0px 60px 30px;
  }

  .text-content {
    font-size: 15px;
  }
  .text-content h4{
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
  }
  
.highlight-text {
    color: var(--sahi-green);
    font-weight: 700;
    font-size: 25px;
}
.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-right: 8px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
}

.web-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 38px;
    box-shadow: 0 8px 24px rgb(0 0 0 / 13%);
    height: 80px;
    background: var(--sahi-white);
}
.logo {
    font-size: 20px;
}
.logo span {
    color: var(--sahi-green);
}
.sidebar {
    position: fixed;
    top: 0;
    right: -250px; /* Start hidden on the right */
    width: 250px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
}

.sidebar.open {
    right: 0;
}

.sidebar .close-btn {
    background: none;
    border: none;
    font-size: 24px;
    float: right;
    cursor: pointer;
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.sidebar ul li {
    margin-bottom: 20px;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
}
#main-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 8px 24px rgb(0 0 0 / 13%);
    display: none;
    z-index: 9999;
  }

  .content {
    height: 2000px; /* long scroll */
    padding-top: 80px;
  }

  .header-content {
    font-size: 20px;
    font-weight: bold;
  }
  .image-container {
    background: white;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.info-card {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  transition: all 0.3s ease;
  border: 1px solid #ccc;
}

.info-card img {
  width: 48px;
  height: 48px;
}

.info-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.info-card p {
  font-size: 14px;
  color: #444;
  margin: 0;
}
/*Temp Zone*/
.card-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 60px 20px;
    min-height: 240px;
    overflow: hidden;
  }
  
  .info-card {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.6s ease, opacity 0.6s ease;
    text-align: center;
  }
  
  .info-card.show {
    opacity: 1;
    transform: translateX(0);
    left: 0;
    position: absolute;
  }
  
  .info-card.exit {
    transform: translateX(-100%);
    opacity: 0;
  }
  
  .info-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
  }
  
  .info-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
  }
  
  .info-card p {
    font-size: 14px;
    color: #444;
    margin: 0;
  }


  /* Web view styles*/
  .how-it-works-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 40px;
  }

  .how-it-works-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 40px;
    flex-wrap: wrap;
    background: var(--sahi-white);
  }
  
  .left-image {
    flex: 1;
    text-align: center;
  }
  
  .left-image img {
    width: 60%;
    margin-top: 120px;
  }
  
  .right-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .feature-nav {
        display: flex;
        justify-content: center;
        gap: 66px;
        padding: 15px 0;
        background-color: #f8f9f0;
        z-index: 100;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .nav-item {
        font-weight: 600;
        font-size: 16px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }
    nav a {
        margin: 0 15px;
        text-decoration: none;
        color: #333;
        font-size: 18px;
        padding: 5px;
    }
    .cta {
        background-color: var(--sahi-green);
        color: white;
        padding: 7px 6px;
        border-radius: 4px;
        text-decoration: none;
        font-size: 15px;
        position: relative;
        top: -1%;
        right: 10px;
        text-shadow: 0px 0px 0px #ffffff;
    }
    .cta:hover {
        background-color: white;
        color: #169d53;
        border: 1px solid #169d53; 
    }
    .feature-grid {
        display: grid;
        grid-template-columns: 1fr 2fr; /* left side 1 part, right side 2 parts */
        align-items: center;
        gap: 100px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        background: #f8f8f8;
    }
    
    .connect-section {
        text-align: center;
        background-color: var(--sahi-white);
    }
    select.no-arrow {
        appearance: none;         /* Remove native styling */
        -webkit-appearance: none; /* Safari/Chrome */
        -moz-appearance: none;    /* Firefox */
        background: #f5f5f5;
        border: none;
        padding: 12px;
        border-right: 1px solid #ddd;
        font-size: 15px;
    }
    select.no-arrow:focus {
        outline: none;
        box-shadow: none;
        border: none;
    }

    .form-control {
        height: 100%;
        border: none !important;
        padding: 15px;
        box-shadow: none;
        margin-top: 0px;
        background: var(--bg-grey);
        font-size: 17px;
    }
    
     .form-control:focus {
        outline: none !important;
        box-shadow: none !important;
        border: none !important;
        background: var(--bg-grey);
    }
      
      
    .angucomplete-holder {
        height: 100%;
    }
    
    .angucomplete-input {
        height: 100%;
        border: none;
        padding: 10px;
        box-shadow: none;
    }

    #ctryCodeSelect md-autocomplete {
        height: auto;
        min-width: auto;
    }

    #ctryCodeSelect md-autocomplete md-autocomplete-wrap {
        height: auto;
        box-shadow: none !important;
        border-right: 1px solid var(--sahi-green);
    }

    #ctryCodeSelect md-autocomplete input {
        height: auto;
        margin: 0px;
        padding: 6px;
        font-size: 16px;
        color: #6c757d;
        background-color: var(--bg-grey);
    }

    md-virtual-repeat-container {
        width: 100% !important;
        max-width: 300px !important;
    }

    .otp-text {
        color: var(--sahi-green);
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 30px;
        margin-top: 15px;
        display: inline-block;
    }

    md-select .md-select-icon {
        display: none !important;
    }

    .md-select-value {
        min-width: 65px !important;
    }

      
@media only screen and (min-width: 1000px) {
    .web-view {
        display: block;
    }
    body {
        background: var(--bg-grey);
    }
    /* .container {
        width: 95%;
        max-width: 450px;
        border-radius: 20px;
        padding: 36px 27px;
        margin-bottom: 40px;
        border: 1px solid #ccc;
        background: var(--bg-white);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    } */
    .mob-view {
        display: none;
    }
}

/* Mobile */
@media only screen and (max-width: 1000px) {
    .web-view {
        display: none;
    }
    .mob-view {
        display: block;
    }

    .mobile-nav-menu {
        width: 70%;
        display: none;
        position: absolute;
        top: 50px;
        right: 0px;
        background-color: white;
        border: 1px solid #ccc;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        z-index: 1000;
    }

    .mobile-nav-menu a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: black;
        border-bottom: 1px solid var(--sahi-border-color);
        font-size: 14px;
    }

    .mobile-nav-menu a:last-child {
        border-bottom: none;
    }

    .mobile-nav-menu a:hover {
        background-color: #f0f0f0;
    }
    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 998;
    }

    .sahi-footer { 
        text-align: center; 
        font-size: 12px; 
        color: var(--sahi-black); 
        line-height: 5px; 
        padding: 36px; 
        background: var(--bg-grey); 
        border-top: 1px solid lightgrey;
    }

    .md-select-menu-container {
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px;
    }
}

@media (max-width: 315px) {
    .submit-btn {
        font-size: 16px;
    }
}

@media (max-width: 293px) {
    .submit-btn {
        max-width: none !important;
    }

    .login-btn-container {
        flex-direction: column;
    }
}