/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    width: 98vw;
    overflow-x: hidden;
}

/* Header & Navigation (merged common widths) */
header, nav {
    width: 102%;
}
header {
    background-color: #ffcc00;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 70px;
    width: 101%;
}
header h1 {
    color: black;
}

/* New CSS */
.otp-text {
    display: flex;
    align-items: center;
    /* if you need spacing from the left edge, you can add padding-left here */
  }
  
  .otp-label {
    margin-right: 0.5rem;
    font-size: 14px;
    /* any font‑size or color tweaks you like */
  }
  
  /* Tweak your existing rule: */
  #sendOtpBtn {
    width: 20%;
    margin-left: 0;
    font-size: small;
    padding: 5px;
    margin-bottom: 2px;

    background-color:rgb(217, 168, 21);    /* reset the old 70% push */
   
    
    
  }
  /* Flex‐wrapper to keep them side by side */
.otp-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;       /* space between input and button */
  }
  
  /* Make the input a reasonable width */
  #otpInput {
    width: 100%;
    margin: 0;         /* kill the old margin-right */
  }
  
  /* (You can tweak button width if you like) */
  #verifyOtpBtn {
     width: auto; 

  }
  
/* Logo Styling */
.logo img {
    max-height: 50px;
    margin-right: 20px;
    margin-left: 20%;
}


/* Basic dropdown styling */
.dropdownn {
    position: relative;
    display: inline-block;
    margin-top: 2.5%;
  }

  .dropbtn {
    text-decoration: none;
    color: inherit;
    padding: 0.5rem 1rem;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #e6c329;
    min-width: 190px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 2;
  }

  .dropdown-content a {
    color: #2d3748;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: block;
  }

  .dropdown-content a:hover {
    background-color: #2994ec;
  }

  /* Show the dropdown menu on hover */
  .dropdownn:hover .dropdown-content {
    display: block;
  }

  /* Optional: style the dropdown button on hover */
  .dropdownn:hover .dropbtn {
    background-color: #dfbc1f;
  }

  html {
    scroll-behavior: smooth;
  }


/* Navigation Menu Styling */
nav {
    background-color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 2px;
    margin-left: 10%;
    margin-right: 15%;
}
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px;
    font-weight: bold;
    margin-right: 5%;
}

.social-media-icons {
    display: flex;
    text-align: center;
}
.social-media-icons a {
    display: inline-block;
    margin: 0 10px;
    color: #fff;
    background-color: #333;
    padding: 10px;
    border-radius: 50%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.social-media-icons a:hover {
    transform: scale(1.1);
    background-color: #555;
}

.home-link {
    display: flex;
    align-items: center;
    text-transform: none;
    text-decoration: none;
    color: inherit;
}
.icon-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: red;
    border-radius: 50%;
    margin-right: 5px;
}
.icon-container i {
    color: white;
    font-size: 14px;
}
.nav-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #fff;
}
.nav-buttons button {
    background-color: #ffcc00;
    color: #000;
    padding: 10px;
    margin: 5px;
    border: none;
    cursor: pointer;
}

/* Signout Button */
.signout-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    background: #ffcc00;
    border: none;
    color: white;
    padding: 1px 5px;
    border-radius: 5px;
    position: relative;
}
.signout-button:hover,
.login:hover,
.signup:hover {
    color: #ffcc00;
    background-color: #333;
}
/* Arrow for Signout Button */
.signout-button::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 12px;
    background: white;
    clip-path: polygon(100% 50%, 50% 0%, 50% 30%, 0% 30%, 0% 70%, 50% 70%, 50% 100%);
    margin-left: 10px;
}
.signout-button::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 4px solid white;
    border-left: 4px solid white;
    transform: translateY(-50%) rotate(-45deg);
    left: 14px;
    top: 50%;
}

/* Hamburger Icon */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Main Container */
.container {
    width: 100vw;
    background-color: rgb(248, 248, 248);

}

/* Notification Popup Styles */
ul {
    list-style-type: none;
    padding: 0;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    max-width: 500px;
    margin: 0;
}
li.success,
li.danger,
li.info {
    padding: 10px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInOut 5s ease-in-out;
}
li.success {
    background-color: #d4edda;
    color: #721c24;
}
li.danger {
    background-color: #f8d7da;
    color: #721c24;
}
li.info {
    background-color: #e8f7da;
    color: #721c24;
}
li::before {
    content: "🤚";
    font-size: 18px;
}
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* Responsive Styles for Navigation & Container */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .nav{
        width: 10%;
    }
    .nav-buttons {
        display: flex;
        justify-content: flex-end;
    }
    .menu-toggle {
        display: none;
    }
}
@media (max-width: 767px) {


    .nav-links {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: #000;
        position: absolute;
        top: 50px;
        left: 0;
        padding: 10px 0;
        box-shadow: 0 4px 2px -2px gray;
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        color: #fff;
        padding: 15px;
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }

    .menu-toggle {
        display: block;
    }
    .nav-buttons button {
        padding: 1px 0;
        font-size: 16px;
    }

}
@media (max-width: 480px) {
    header {
        width: 102%;
    }
    header h1 {
        font-size: 18px;
    }
    .nav-links a {
        font-size: 16px;
        padding: 10px 0;
    }
    .nav-buttons button {
        font-size: 16px;
        padding: 1px 10px;
        width: 100%;
    }


}

/* Side & User Menus */
.side-menu,
.user-menu {
    position: fixed;
    top: 30;
    left: -250px;
    width: 220px;
    height: 100%;
    background: #333;
    padding-top: 60px;
    transition: 0.3s;
    z-index: 999;
}

.side-menu a,
.user-menu a {
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    display: block;
}
/* Side menu dropdown styles */
.side-menu .dropdown {
    position: relative;
  }

  .side-menu .dropdown-content {
    display: block;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
    background-color: #242121;
    padding-left: 10px;
    border-left: 20px solid #ccc;
  }

  .side-menu .dropdown:hover .dropdown-content {
    opacity: 1;
    max-height: 500px; /* Enough space for 3 links */
  }

.side-menu a:hover,
.user-menu a:hover {
    background: #575757;
}
.side-menu.active,
.user-menu.active {
    left: 0;
}
.menu-toggle,
.user-toggle {
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    padding: 0;
    border-radius: 5px;
    transition: background 0.3s ease;
}
.menu-toggle:hover,
.user-toggle:hover {
    background: #ffcc00;
}
.user-toggle:hover svg path {
    fill: #333;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Search Icon */
.search-icon {
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
    visibility: hidden;
}

/* Headings */
h2 {
    text-align: center;
    margin: 20px 0;
}

/* Authentication Form */
.auth-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 550px;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease-in-out;
    margin: 0 auto;
    margin-top: 10%;
}
.auth-form h2 {
    margin-bottom: 15px;
    font-size: 22px;
    color: black;
}
.auth-form input {
    width: 92%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease-in-out;
}
.auth-form input:focus {
    border-color: #374286;
    box-shadow: 0 0 8px rgba(55, 66, 134, 0.5);
}
.auth-form input::placeholder {
    color: #aaa;
    font-size: 14px;
}
.auth-form button {
    width: 100%;
    padding: 12px;
    background-color: black;
    color: yellow;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}
.auth-form button:hover {
    background-color: #2a3368;
}

/* Assistance Banner */
.assistance-banner {
    background: linear-gradient(to right, #d3d1a6, #ebf6eb);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 90%;
}
.assistance-left {
    flex: 1;
    padding-right: 20px;
    margin-left: 10%;
    margin-top: -3%;
}
.assistance-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fstimg {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-top: 47px;
    margin-left: 20%;
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 250px;
    overflow: hidden;
    margin-top: 20px;
}
.slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideAnimation 10s infinite;
}
.slider img:nth-child(1) {
    animation-delay: 0s;
}
.slider img:nth-child(2) {
    animation-delay: 5s;
}
@keyframes slideAnimation {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    40%  { opacity: 1; }
    50%  { opacity: 0; }
    100% { opacity: 0; }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #eac808;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    text-align: center;
    display: none;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease;
}
.back-to-top:hover {
    background-color: #4a5568;
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}
.card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.card-image {
    width: 100%;
    height: 95%;
    object-fit: cover;
    border-radius: 0.5rem;
}
.card-content {
    margin-top: 1%;
}
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.profile {
    display: flex;
    align-items: center;
}
.profile-pic {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
}
.profile-name {
    margin-left: 0.5rem;
    color: #2d3748;
}
.stats {
    display: flex;
    align-items: center;
    color: #718096;
}
.stats i {
    margin-right: 0.25rem;
}
.stats .like-count,
.stats .view-count {
    margin-right: 1rem;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .assistance-banner {
        flex-direction: column;
        align-items: center;
        width: 95%;
        padding: 8px;
    }
    .fstimg {
        width: 80%;
        max-width: none;
        margin: 20px 0;
    }
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    .card {
        padding: 0.75rem;
    }
    .card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .stats {
        margin-top: 10px;
    }
}
@media (max-width: 480px) {
    .auth-form {
        padding: 15px;
        max-width: 90%;
        margin-top: 45%;
    }
    .auth-form h2 {
        font-size: 18px;
    }
    .auth-form input {
        font-size: 14px;
        width: 90%;
    }
    .auth-form button {
        font-size: 16px;
    }
    .close-modal{
        position: relative;
        left:330px;
        
    }
   
    
    .grid {
        grid-template-columns: 1fr;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.5);
    
}
.modal.active {
    display: block;
}

.close-modal {
    position: absolute;
    right: 10px;
    top: 22%;
    font-size: 30px;
    cursor: pointer;
    margin-right: 26%;
}

/* SVG Lines */
.line-container {
    position: relative;
    bottom: -106px;
    width: 100%;
    height: 120px;
}
#svg, #svgg {
    position: absolute;
    width: 103%;
    height: 100%;
}
.line {
    stroke: black;
    stroke-width: 10;
    fill: none;
}
.linee {
    stroke: #FFC107;
    stroke-width: 10;
    fill: none;
}

/* Footer Styles */
.footer {
    display: flex;
    background: rgb(255, 255, 255);
    color: #FFC107;
    height: 150px !important;
    text-align: center;
    padding: 10px;
    width: 100%;
}
.yellow-line {
    width: 100%;
    height: 3px;
    background-color: #FFC107;
    margin: 10px 0;
    display: block;
}
.footer-image {
    width: 60px;
    height: 60px;
    margin-left: 6%;
    border-radius: 50%;
    margin-right: 15px;
}
.footer p {
    margin-left: 5%;
    top: -20px;
    position: relative;
}
.profilesidename{
    margin-left: 10%;
}
.profilesidename h6 {
    display: inline-block;
    border-bottom: 2px solid #000;
    margin-right: 50%;
    padding-bottom: 4px;
}
.profilesidename .contact-info p {
    margin: 5px 0;
    font-size: 10px;
    color: #333;
    display: flex;
}
.profilesidename .contact-info i {
    margin-right: 8px;
    color: #555;
}
.logoooo {
    display: flex;
    margin: 0 auto 1rem;
    height: 80px;
}
.brand-name {
    font-size: 10px;
    font-weight: bold;
    color: #4A4A4A;
    margin-left: 20%;
}
.brand-name span {
    font-weight: normal;
}
.tagline {
    color: #9B9B9B;
    font-size: 10px;
    margin-left: 20%;
}
.yellow-boxes {
    display: flex;
    justify-content: center;
    margin-left: 20%;
}
.yellow-box {
    width: 2em;
    height: 1.5em;
    background-color: #FFC107;
    margin: 0 0.25rem;
}
.new-section {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-top: 10px;
}
.section-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    visibility: hidden;
}
.new-section .section-item {
    font-size: 14px;
    color: #7e7575;
    margin: 0 10px;
}
.support-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.support-text {
    font-size: 14px;
    color: #7e7575;
}
.social-icons a {
    font-size: 16px;
    color: #000;
    text-decoration: none;
}

/* Mobile Footer Adjustments */
@media (max-width: 767px) {
    .user-toggle{
        margin-left: 35%;
    }
    /* SVG Lines */
.line-container {
    position: relative;
    bottom: -106px;
    width: 102%;
    height: 120px;
}

    .footer {
        background: #e1dab8;
        color: #f4ba19;
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        text-align: center;
        width: 89vw;
        height: auto !important;
        margin-top: 5%;
    }
    .footer p {
        font-size: 14px;
        margin: 0;
    }
    .footer-image {
        width: 60px;
        height: 60px;
        border: 2px solid #fff;
        border-radius: 50%;
        margin: 0 auto;
        transition: transform 0.3s ease;
    }
    .footer-image:hover {
        transform: scale(1.1);
    }
    .profilesidename,
    .brand-name,
    .tagline {
        margin: 5px 0;
        text-align: center;
    }
    .profilesidename h6 {
        margin: 0;
        padding: 5px 0;
        border-bottom: 1px solid #dfa32c;
        font-size: 13px;
    }
    .profilesidename  {
        font-size: 12px;
        margin: 2px 0;
        justify-content: center;
    }
    .contact-info{
        margin-top: 20%;

    }

    .yellow-boxes {
        justify-content: center;
        gap: 5px;
        margin: 5px 0;
    }
    .yellow-box {
        width: 20px;
        height: 20px;
        background-color: #FFC107;
        border-radius: 4px;
    }
    
    
    
   
}






/* Animated Heading and Paragraph */
.tshirt-heading {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease;
  margin-top: -4%;
}

.tshirt-description {
  text-align: center;
  color: #555;
  font-size: 16px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease;
}

/* Flex Layout for Images */
.tshirt-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 20px;
}

/* T-shirt Image Styling */
.tshirt-image {
  width: 360px;
height: 350PX;
object-fit:fill;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.tshirt-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}



/* Hover effect */
.tshirt-image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

  /* Printer Section */
.printer-section {
  text-align: center;
  margin-top: -7%;
}

.section-title {
  font-size: 30px;
  color: #1a1a1a;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.printer-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px;
}

.printer-card {
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  padding: 10px;
  margin-bottom: -13%;
}

.printer-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.printer-label {
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

/* Wrapper backgrounds */
.section-bg {
  padding: 60px 20px;
}

.tshirt-bg {
  background-color: #f3f9ff; /* light blue */
}

.printer-bg {
  background-color: #fff7ec; /* warm beige */
}




.idcard-section-wrapper {
  background-color: #f3f4f6;
  padding: 50px 20px;
  text-align: center;
 
}

.idcard-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.idcard-section-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.idcard-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.idcard-item img {
  width: 380px;
  height: 510px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.idcard-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
