@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');



:root {
    --gold: #caa43a;
    --silver: #D3D3D3;
    --deep: #0e2830;
    --cream: #f8f2ea;
    --table-head: #0d2930;
    --accent: #b78829;
    --silver: #bfbfbf;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Hind Siliguri;
}
html{
    scroll-behavior: smooth;
}
body {
    min-height: 100vh;
    background-image: url('https://rka-999.github.io/storage/photos/bg.jpg');
    background-attachment: fixed;
    background-size: 300px;
    background-repeat: repeat;
    background-blend-mode: soft-light;
}
.header{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 140px; /*999*/
    padding: 1.3rem 10%;
   /* background-color: rgba(0, 0, 0, .1);
    backdrop-filter: blur(50px); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
.header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: red;
    background-color: #0b1b22;
    backdrop-filter: blur(50px);
    z-index: -1;
}
.header::after {
    content: '';
    position: absolute;
    top: 0;
   /* Remove symbol to see magic left: 0; */
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
    transition: .5s;
}
.header:hover::after{
    left: 100%;
}
#homelogo{
    display: inline-block;
}
#name{
    margin-top: 20px;
    color: white;
    font-size: 25px;
    font-family: Hind Siliguri;
    font-weight: 700;
}
.logo{
     margin-left: 25px;
     font-size: 2rem;
     color: white;
     text-decoration: none;
     font-weight: 800;
}
.navbar a{
    font-size: 1.15rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2.5rem;
}
#check{
    display: none;
}
.icons{
    top: 27.5%; /* update */
    position: absolute;
    right: 4.5%;
    font-size: 30px;
    cursor: pointer;
    display: none;
    border: 1px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 7px; /* update */
    border-radius: 10px;
    color: white;
    transition: 1.2s all ease;
}
.icons:hover {
    color: red;
    border: 2px solid #0e2830;
    box-shadow: .5px .5px var(--cream);
    border-radius: 10px;
    font-size: 30px;
    transform: rotate(90deg); /* update */
}
/*U-turn*/
@media (max-width: 980px) {
    .header{
        padding: 1.3rem 3%;
    }
    .icons #close-icon{
        display: none;
    }
}
@media (max-width: 792px) {
    .icons{
        display: inline-flex;
    }
    #check:checked~.icons #menu-icon {
    display: none;
    }
    #check:checked~.icons #close-icon{
    display: block;
    }
    .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(0, 0, 0, .1);
        backdrop-filter: blur(50px);
        box-shadow: 0.5rem 1rem rgba(0, 0, 0, .1);
        overflow: hidden;
        transition: .8s ease;
    }
     #check:checked~.navbar {
    height: 37.7rem;
    }
    .navbar a{
        display: block;
        font-size: 1.2rem;
        margin: 2.5rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: 0.8s ease;
 }
 
 .navbar a:hover {
    background: white;
    border: .1px dashed white#42445A;
    border-radius: 20px;
    color: var(--gold);
}
 
    #check:checked~.navbar a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(.15s * var(--i));
    }
}
#menu-icon{
    font-size: 30px;
}
#menu-icon:hover{
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
}
#close-icon{
    font-size: 30px;
}
#close-icon:hover {
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 10px;
}
#logo1{
    height: 40px;
    width: 40px;
    transform: translateY(-10px);
    border-radius: 50px;
    animation-name: logo;
    animation-duration: 1s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}
@keyframes logo{
  form{border: 0px solid white;
  }
  to{
      border: 1.5px dotted #b78829;
}
}




    /* Header */
   #header{
      margin-top: 110px;
      width: 100%;
      background: linear-gradient(90deg, #0b1b22);
      color: var(--cream);
      padding: 16px;
      display: flex;
      justify-content: end;
      border-bottom: 2px solid var(--accent);
    }
   .logo{
      height: auto;
      width: 100%;
      border-radius: 4px
    }
    #hotline{
        width: auto;
        height: 20px;
        display: flex;
        justify-content: right;
        margin-right: -45px;
        margin-bottom: 0px;
    }
    #number{
    font-family: Hind Siliguri;
    margin-top: 25px;
    text-align: right;
    display: flex;
    margin-left: auto;
    font-size: 15px;  /* update */
    font-weight: 700; /* update */
    text-decoration: none;
    color: white;
    text-align: right;
    transition: .5s .5s all ease-in;
    }
    #number:hover{
      font-size: 14.8px;
      transition: 2s all ease-in;
      color: var(--gold);
    }
    
    

    /* scroll up button */
    
    #scrollUpButton {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 10px;
    z-index: 99;
    outline: none;
    background: rgba(255, 0, 0, 5);
    cursor: pointer;
    padding: 3px;
    border-radius: 40px;
    font-size: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 1);
}

#arrowimg {
    width: 40px;
    height: auto;
}

    
    
/* Basic Reset and Font Setup */
#about-us-odikari {
    font-family: Hind Siliguri;
    line-height: 1.6;
    color: #333; /* গাঢ় ধূসর রঙ */
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff; /* ভিতরের অংশের সাদা ব্যাকগ্রাউন্ড */
    padding: 30px;
    border-radius: 8px; /* কোণগুলি গোল করা */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* হালকা শ্যাডো */
}

/* Headings Styling */
.main-heading {
    text-align: center;
    color: #8B4513; /* জুয়েলারি বা গোল্ডেন কালারের জন্য ব্রাউন শেড */
    font-size: 2.2em;
    margin-bottom: 30px;
    border-bottom: 3px solid #FFD700; /* গোল্ডেন আন্ডারলাইন */
    padding-bottom: 10px;
}

.sub-heading {
    color: #4682B4; /* একটি প্রফেশনাল নীল রঙ */
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Paragraph and List Styling */
p {
    margin-bottom: 15px;
    text-align: justify; /* লেখা সমানভাবে সাজানো */
}

.section-block {
    margin-bottom: 40px;
    padding: 15px;
    border-left: 5px solid #FFD700; /* সেকশনের পাশে গোল্ডেন বর্ডার */
    background-color: #fafafa;
    border-radius: 4px;
}

/* List Styles */
.values-list, .app-features {
    list-style-type: none;
    padding-left: 0;
}

.values-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.values-list li::before {
    content: "✔️"; /* চেকমার্ক আইকন */
    color: #28a745;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}

.app-features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.app-features li::before {
    content: "•"; /* সাধারণ বুলেট */
    color: #4682B4;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

/* Footer Note Styling */
.footer-note {
    text-align: center;
    font-style: italic;
    color: #8B4513;
    margin-top: 30px;
    font-size: 1.1em;
}

/* Responsive Adjustments for smaller screens */
@media (max-width: 600px) {
    .main-heading {
        font-size: 1.8em;
    }
    .container {
        padding: 15px;
    }
}


/* update */
.dev-main{
    width: 90%;
    margin-left: 20px;
    margin-bottom: 20px;
    height: auto;
    display: block;
    align-items: center;
    text-align: center;
    background-color: #F8F9FF;
    padding: 50px 40px;
    border: 1px solid #E5E7FF;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: 1s all ease;
}
.dev-main:hover{
    transform: scale(.96);
}
.developer-banner{
    font-size: 25px;
    font-weight: 800;
    font-family: Hind Siliguri;
    color: #FFFFFF;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
    margin-top: -30px;
}
.developer-img{
    width: 80%;
    height: auto;
    border-radius: 5px;
    transition: .5s all ease;
}
.developer-img:hover{
    transform: scale(0.97);
    border-radius: 25px;
}
