* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1d143c 50%, #6366f1 100%, #a855f7 100%);
    backdrop-filter: blur(5px);
    padding: 12px 24px;
    width: 100%;
    z-index: 10;
    box-sizing: border-box;
    overflow: hidden;
}

.divmenubtn, .divwelcomemsg, .divloginbtn {
    flex: 1;
    display: flex;
    align-items: center;
}

.divmenubtn {
    justify-content: flex-start;
}

.divwelcomemsg {
    justify-content: center;
    
}

.divloginbtn {
    justify-content: flex-end;
}

.divwelcomemsg h2 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    white-space: nowrap;
    margin-left: 40px;
}

.navbar button {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.loginbtn {
    background-color: #3b82f6;
    color: #ffffff;
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 12px;
    max-width: 100%;
    box-sizing: border-box;
    margin-left: 25px;
}

.loginbtn:hover {
    background-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.usernamemsg {
  color: #3b82f6; 
  font-size: 16px;            
  font-weight: 500;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;            
  text-align: left;           
  max-width: 80px;            
  white-space: normal;        
  word-wrap: break-word;    
  text-decoration: none;
  margin-left: 10px;
}

.content h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #e2e8f0;
}

.buttonscontainer {
    display: block;
    justify-content: center;
    gap: 15px;
}

.menubtn {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8); 
  border: none;
  width: 40px;               
  height: 40px;              
  border-radius: 8px;        
  cursor: pointer;
  display: flex;
  flex-direction: column;    
  justify-content: center;   
  align-items: center;       
  gap: 4px;                  
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease; 
  flex-shrink: 0;            
}

.menubtn span {
  display: block;
  width: 20px;               
  height: 2px;               
  background-color: white;   
  border-radius: 2px;
  transition: all 0.3s ease; 
}

.menubtn:hover {
  transform: translateY(-2px); 
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.5);
  filter: brightness(1.1);     
}

.menubtn:hover span:nth-child(2) {
  width: 24px;
}

.welcometext {
  color: #ffffff;            
  font-size: 14px;
  font-weight: 700;          
  text-align: center;
  flex: 1;
  padding: 0 10px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 
               0 0 20px rgba(59, 130, 246, 0.2); 
  letter-spacing: 0.5px;     
}

.welcometext .brandcolor {
  color: #f59e0b;            
  font-weight: 700;          
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4); 
}

.text {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 4px 20px rgba(0, 0, 0, 0.9);
}

.text .highlight {
  color: #f59e0b;            
  font-weight: 700;          
  text-shadow: 0 0 12px rgba(245, 158, 11, 0.4); 
}

.description {
  font-size: 14.5px;
  color: #e2e8f0; 
  margin-bottom: 50px;
  line-height: 1.6;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9), 0 4px 15px rgba(0, 0, 0, 0.9);
}

.primarybtn {
  padding: 14px 35px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4), 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.primarybtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
  filter: brightness(1.1);
}

.totbtn {
  padding: 14px 35px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #FF0303, #FF0303);
  color: #EBEBF0;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4), 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  margin-top: 20px;
}

.totbtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #FF0303;
  filter: brightness(1.1);
}


  .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FF0000;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
  }


  .youtube-btn:hover {
    background-color: #FF0000; 
    color: #ffffff;
    transform: translateY(-4px) scale(1.08); 
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
  }
  
  .socialmedia {
    margin-top: 20px;
  }

.herosection {
    position: relative;
    width: 100%;
    height: 100vh; 
    background-image: url('IMG-20260630-WA1563.jpg'); 
    background-size: cover; 
    background-position: center; 
    display: flex;
    flex-direction: column;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5); 
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.content {
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0);
    width: 100%;
    max-width: 100%;
    padding: 20px 40px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    box-sizing: border-box;
}

.footerend {
  width: 100%;
  max-width: 1000px; 
  padding: 12px;
  text-align: center; 
  background: rgba(15, 23, 42, 0.5); 
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 0;
}

.footerend p {
  font-size: 12.5px;
  color: #cbd5e1; 
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9); 
}

.footerend .devname {
  color: #f59e0b;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.4), 0 1px 2px rgba(0, 0, 0, 0.9);
}

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background-color: rgba(19, 12, 39, 0.88); 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);
  border-left: 1px solid rgba(168, 85, 247, 0.2); 
  padding: 80px 20px;        
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.sidebar.open {
  transform: translateX(0);
}

.closebtn {
  position: absolute;
  top: 20px;
  left: 25px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 32px;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}

.closebtn:hover {
  color: #ef4444; 
  transform: rotate(90deg); 
}

.sidebarlinks {
  margin-top: 20px;
}

.sidebarlinks a {
  display: flex;
  align-items: center;
  color: #e2e8f0;             
  text-decoration: none;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;        
  border-radius: 12px;        
  background: rgba(255, 255, 255, 0.03); 
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebarlinks a.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(29, 78, 216, 0.2));
  color: #60a5fa;             
  border-color: rgba(59, 130, 246, 0.3);
}

.sidebarlinks a:hover {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8); 
  color: white;               
  padding-right: 25px;        
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); 
  transform: scale(1.02);     
}

.modaloverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.6); 
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none; 
  justify-content: center;
  align-items: center;
  z-index: 1001; 
  padding: 20px;
}

.modalcontent.contactcard {
  background: linear-gradient(135deg, #1d143c 40%, #6366f1 100%, #a855f7 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color:#0f172a;
  width: 100%;
  max-width: 440px;
  padding: 35px 25px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  position: relative;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  direction: rtl; 
  animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modalcontent h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.modaldesc {
  font-size: 14.5px;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contactmethods {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contactlink {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.emaillink {
  background-color: #f1f5f9;
  color: #1e293b;
  border: 1px solid #e2e8f0;
}

.emaillink:hover {
  background-color: #e2e8f0;
  transform: translateY(-1px);
}

.whatsappbtn {
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.whatsappbtn:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

.modalcontent .closebtn {
  position: absolute;
  top: 15px;
  left: 20px;
  right: auto; 
  font-size: 26px;
  font-weight: bold;
  color: #94a3b8;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.modalcontent .closebtn:hover {
  color: #ef4444;
  transform: scale(1.1);
}

.aboutfeatures {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right; 
  margin-top: 10px;
}

.featureitem {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px;
  border-radius: 14px;
  background: #f59e0b;
  border: 1px solid rgba(15, 23, 42, 0.02);
  transition: background 0.2s ease;
}

.featureicon {
  font-size: 24px;
  margin-top: 2px;
  flex-shrink: 0; 
}

.featuretext h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.featuretext p {
  font-size: 13px;
  color: #FFFFFF;
  line-height: 1.5;
}

#loadingoverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
}

#loadingoverlay h2 {
    color:#f59e0b;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.1);
    border-top-color: #f59e0b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom:20px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
