@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: 25px;
    color: white;
    font-size: 25px;
    font-family: Hind Siliguri;
    font-weight: 700;
}

/* update */
#menu{
    color: white;
    margin-right: 2.9%;
    margin-top: -2%;
    font-family: Hind Siliguri;
    font-size: 25px;
    font-weight: 900;
}

.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: 60%; /* 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;
    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;
}


/* (Main Container) */
.contact-container {
    padding: 20px;
    display: flex;
    flex-direction: column; /* উলম্ব বিন্যাস */
    gap: 15px; /* কার্ডগুলোর মধ্যে দূরত্ব */
}

/* প্রতিটি কার্ডের স্টাইল */
.contact-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* হালকা ছায়া */
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: scale(0.96);
}

/* শিরোনামের স্টাইল */
.card-title {
    font-size: 1.1em;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

/* আইকন ধারক */
.icon-wrapper {
    margin: 15px 0;
}

/* আইকনের স্টাইল (পরিবর্তন করুন) */
.card-icon {
    width: 50px; /* আইকনের আকার */
    height: 50px;
    display: inline-block;
}

/* ব্যাখ্যার স্টাইল */
.card-description {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 20px;
}

/* অ্যাকশন বাটনের স্টাইল */
.action-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff; /* মূল রং */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.action-button:hover {
    background-color: #0056b3;
}

/* রঙের বৈচিত্র্য (ঐচ্ছিক) */
.whatsapp .action-button {
    background-color: #25D366;
}
.email .action-button {
    background-color: #D93025;
}
.website .action-button {
    background-color: #FFA500;
}
.location .action-button {
    background-color: #4285F4;
}
