body {
    margin: 0;
    padding: 0;
    font-family: 'Siyam Rupali', sans-serif;
    background-color: #f0f0f0;
}
header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
}
.logo {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}
.header-text h1 {
    margin: 0;
    font-size: 28px;
    color: #2c3e50;
    text-align: justify;
}
.header-text p {
    margin-top: 8px;
    font-size: 16px;
    color: #555;
}
nav {
    background: #006a4e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    font-family: 'Siyam Rupali', sans-serif;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav ul li {
    position: relative;
}
nav ul li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    font-size: 16px;
    transition: background 0.3s;
}
nav ul li a:hover {
    background-color: #1b5e20;
}
nav ul li .dropdown {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: #006a4e;
    min-width: 160px;
    z-index: 1000;
}
nav ul li:hover .dropdown {
    display: block;
}
nav ul li .dropdown a {
    padding: 12px 16px;
} 
.menu-toggle {
    display: none; 
    justify-content: flex-end;
    background-color: #006a4e;
    padding: 15px 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    user-select: none;
    z-index: 1001;
    position: relative;
}
.mobile_nav {
    display: none;
    position: fixed;
    top: 0;
    left: -280px;  
    width: 280px;
    height: 100vh;
    background-color: #006a4e;
    font-family: 'Siyam Rupali', sans-serif;
    color: white;
    padding-top: 60px;
    box-sizing: border-box;
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}
.mobile_nav.show {
    left: 0;
}
.mobile_nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mobile_nav ul li {
    border-bottom: 1px solid #004d3d;
    position: relative;
}
.mobile_nav ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 15px 20px;
    font-size: 16px;
}
.mobile_nav ul li .dropdown {
    display: none;
    background-color: #005734;
    padding-left: 20px;
    flex-direction: column;
}
.mobile_nav ul li .dropdown a {
    padding: 10px 20px;
    font-size: 14px;
    border-bottom: 1px solid #004d3d;
}
.mobile_nav ul li .dropdown a:hover {
    background-color: #003822;
}
.mobile_nav ul li.active .dropdown {
    display: flex;
    flex-direction: column;
}
.dropdown-toggle {
    cursor: pointer;
} 
.dropdown-toggle .arrow {
    margin-left: 55%;
}
nav ul li a.active {
    background-color: #004d3d; 
    color: #fff;
    border-radius: 5px;
    border-bottom: 2px solid red;
}
.contact-section {
    max-width: 1000px;
    margin: 50px auto;  
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    justify-content: center; 
    align-items: center; 
    padding: 10px;
} 
.contact-info{
    display: flex;
    gap: 20px; 
    align-items: center;
    flex-wrap: wrap; 
}
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    margin-left:60px
}
.info-item i {
    font-size: 22px;
    color: red;
    background: #fff;
    border-radius: 50%;
    padding: 12px;
    margin-right: 15px;
    border: 1px solid #eee;
}
.info-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 5px;
}
.contact-form {
    flex: 2;
    padding: 40px;
    min-width: 300px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
}
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.form-row input {
    flex: 1;
    padding: 12px 15px;
    font-size: 14px;
    border: none;
    background: #eaeef3;
    border-radius: 5px;
}
textarea {
    padding: 15px;
    font-size: 14px;
    border: none;
    background: #eaeef3;
    border-radius: 5px;
    resize: none;
    margin-bottom: 20px;
}
button {
    padding: 14px;
    border: none;
    background: linear-gradient(to right, #ff0080, #7928ca);
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}
button:hover {
    background: linear-gradient(to right, #ff5dab, #6a0dad);
}  
.social-icons { 
  text-align: center;
}
.social-icons a {
    color: #000;
    margin-right: 15px;
    font-size: 18px; 
    text-decoration: none;
    transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.3);
} 
.social-icons .facebook i       { color: #3b5998; }
.social-icons .twitter i        { color: #00acee; }
.social-icons .linkedin i       { color: #0077b5; }
.social-icons .instagram i      { color: #e1306c; }
.social-icons .youtube i        { color: #ff0000; }
.social-icons .pinterest i      { color: #bd081c; }
.social-icons .snapchat i       { color: #fffc00; }
.social-icons .whatsapp i       { color: #25d366; }
.social-icons .telegram i       { color: #0088cc; }
.social-icons .tiktok i         { color: #010101; }
.social-icons .reddit i         { color: #ff4500; }
.social-icons .tumblr i         { color: #35465d; }
.social-icons .github i         { color: #333333; }
.social-icons .skype i          { color: #00aff0; }
.social-icons .vimeo i          { color: #1ab7ea; }
.social-icons .dribbble i       { color: #ea4c89; }
.social-icons .behance i        { color: #1769ff; }
.social-icons .medium i         { color: #12100e; }
.social-icons .slack i          { color: #611f69; }
.social-icons .discord i        { color: #5865f2; }
.social-icons .wechat i         { color: #7bb32e; }
.social-icons .qq i             { color: #eb1923; }
.social-icons .line i           { color: #00c300; }
.social-icons .twitch i         { color: #9146ff; }
.social-icons .stack-overflow i { color: #f48024; }
.social-icons .rss i            { color: #ffa500; }
.form-container {
    width: 50%;
    background: white;
    padding: 30px 20px 20px 20px;
    margin: 50px auto;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 0 15px rgba(0,0,0,0.2); 
}
.registration-form {
    position: relative; 
    z-index: 1;
}
.registration-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 103%;
    height: 53%;
    background-image: url(../icon/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1;
}
.form-title {
    text-align: center;
    font-size: 20px;
    background: linear-gradient(to right, #1b5e20, #e1306c, #1b5e20);
    color: white;
    padding: 15px 0;
    margin: -30px -20px 30px -20px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 75% 85%, 50% 100%, 25% 85%, 0% 100%);
}
.form-row-r {
    display: flex;
    flex-direction: column; 
}
.form-row-r label {
    font-size: 14px;
    color: #0072ff;
    margin-bottom: 5px;
}
.form-row-r input, .form-row-r textarea,.form-row-2 input {
    padding: 6px;
    border: 1px solid #aee1f9;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    margin-bottom: 10px;
    background: #eaeef3;
}
.gender {
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.photo-box {
    position: absolute;
    right: -2px;
    top: -40px;
    width: 133px;
    height: 8%;
    background: #f4f4f4;
    border: 2px dashed #aad4f5;
    border-radius: 8px;
    text-align: center;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}
.photo-box img {
    width: 100%;
    height: 100%;
}
.form-group,
.help-group,
.suggestions-group {
    flex: 1;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    color: #0072ff;
}
.gender-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}
.form-row-flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap; 
    color: #0072ff;
}
.form-row-gender,
.form-row-dob,
.form-row-expatriate {
    display: flex;
    align-items: center;
    gap: 10px;
}
.gender-options {
    display: flex;
    gap: 15px;
}
.form-row-dob input[type="date"] {
    font-size: 14px;
    padding: 6px;
    border: 1px solid #aee1f9;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    background: #eaeef3;
}
.form-row-location {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;  
    align-items: flex-end;
    margin-bottom: 15px;
    color: #0072ff;
} 
.select-group label {
    margin-bottom: 5px; 
}
.select-group select {
    min-width: 153px; 
    padding: 6px;
    border: 1px solid #aee1f9;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    background: #eaeef3;
    margin-top: 10px;
}
.form-row-2 {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
#educationDropdown,
#education_years,
#countryDropdown,
#profession,
#Organization,
#area,
#areaLevel,
#areaSelect,
#help-group,
#suggestions-group{
    padding: 6px;
    border: 1px solid #aee1f9;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    background: #eaeef3;
}
#signature-pad {
    width: auto;
    height: 150px;
    border: 1px solid;
    touch-action: none; 
}
.feedback-group {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;  
    margin-bottom: 10px;
}
.h2{
    text-align: center;
}
.tips-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}
.password-tip-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-left: 6px solid #4CAF50;
    border-right: 6px solid #4CAF50;
    border-radius: 10px;
    padding: 20px;
    flex: 1 1 300px; 
    max-width: 500px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-family: "Segoe UI", sans-serif;
    transition: transform 0.2s ease;
}
.password-tip-card:hover {
    transform: translateY(-4px);
}
.password-tip-card h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 12px;
}
.password-tip-card ul {
    padding-left: 20px;
    margin: 0;
}
.password-tip-card li {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.6;
}
.message-box{
    text-align: center;
} 
.rating-container {
  font-family: Arial, sans-serif;
  user-select: none;
  text-align: center;
}
.average-rating {
  font-weight: bold;
  font-size: 1.5rem;
  color: #444;
  margin-bottom: 10px;
  align-items: center; 
}
.average-rating .stars .star {
  color: #ccc;
  font-size: 1.5rem;
}
.average-rating .stars .star.filled {
  color: #f5b301;
}
#rating-count {
  font-size: 1rem;
  color: #666;
}
.user-rating {
  font-size: 1.2rem;
  color: #333;
}
.user-rating .stars-input {
  cursor: pointer;
  display: inline-flex;
  gap: 5px;
}
.user-rating .stars-input .star {
  font-size: 2rem;
  color: #ccc;
  transition: color 0.2s;
}
.user-rating .stars-input .star.hover,
.user-rating .stars-input .star.selected {
  color: #f5b301;
}
.star {
    color: #ccc;
    font-size: 24px;
}
.star.filled {
    color: gold;
}
.user-card {
    width: 205px;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #1b1c37;
    color: white;
    height: auto;
    max-height: 29vh;
}
.user-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    cursor: pointer;
}
.user-photo {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    /*border: 2px solid #007bff;*/
}
.user-card h3 {
    margin: 10px 0 5px;
    font-size: 16px; 
}
.user-card p {
    font-size: 14px;  
}
.user-card a{
    text-decoration: none;
    color: white;
}
.social-links {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 6px;
}
.social-links a {
    margin: 0 4px; 
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
    font-size: 19px;
}
.social-links a .fa-facebook { color: #3b5998; }
.social-links a .fa-instagram { color: #e4405f; }
.social-links a .fa-twitter { color: #1da1f2; }
.social-links a .fa-linkedin { color: #0077b5; }
.social-links a .fa-youtube { color: #ff0000; }
.social-links a .fa-tiktok { color: #000000; }
.social-links a .fa-snapchat-ghost { color: #fffc00; }
.social-links a .fa-pinterest { color: #bd081c; }
.social-links a .fa-reddit { color: #ff4500; }
.social-links a .fa-tumblr { color: #36465d; }
.social-links a .fa-whatsapp { color: #25d366; }
.social-links a .fa-telegram { color: #0088cc; }
.social-links a .fa-discord { color: #7289da; }
.social-links a .fa-twitch { color: #6441a5; }
.social-links a .fa-vimeo { color: #1ab7ea; }
.social-links a .fa-medium { color: #00ab6c; }
.social-links a .fa-github { color: #333; }
.social-links a .fa-gitlab { color: #fc6d26; }
.social-links a .fa-stack-overflow { color: #fe7a15; }
.social-links a .fa-behance { color: #1769ff; }
.social-links a .fa-dribbble { color: #ea4c89; }
.social-links a .fa-deviantart { color: #05cc47; }
.social-links a .fa-flickr { color: #ff0084; }
.social-links a .fa-quora { color: #b92b27; }
.social-links a .fa-microphone { color: #ff5500; } 
.social-links a .fa-weixin { color: #7bb32e; } 
.social-links a .fa-line { color: #00c300; }
.social-links a .fa-dove { color: #1da1f2; } 
.social-links a .fa-globe { color: #0077b6; }
.social-links a:hover {
    transform: scale(1.5);
    filter: brightness(1.2);
} 
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.pagination li a {
    padding: 6px 12px;
    background: #fff;
    color: #007bff;
    border: 1px solid #007bff;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pagination li.active a {
    background: #007bff;
    color: #fff;
}
.pagination li a:hover {
    background-color: #0056b3;
    color: #fff;
} 
.army-section {
    width: 78%;
    padding: 16px 0 0 0;
    margin: 50px auto;
    /*display: flex;
    flex-wrap: wrap;
    justify-content: center;*/
    position: relative;
    z-index: 1;
    background: rgb(211 211 215 / 95%);
    border-radius: 12px;
}  
.army-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 103%;
    height: 100%;
    background-image: url(../icon/logo.png);
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: -1; 
}
.design{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; 
} 
.user-photo-wrapper {
    position: relative;
    display: inline-block;
    width: 100px; 
    height: 100px;
} 
.verified-badge {
    position: absolute;
    bottom: -7px;
    right: 38px;
    font-size: 22px;
    color: #2196F3;
    background-color: #1b1c37;
    border-radius: 50%;
    padding: 1px;
}
.profile-frame {
    width: 117px;
    height: 117px;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: -14px;
    left: -8px;
    pointer-events: none;
} 

