body {
  margin: 0;
  font-family: Arial, sans-serif;
  /* background-color: #000000; */
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #0f1112;
  display: flex;
  justify-content: space-between; /* cleaner than space-around */
  align-items: center;
  padding: 10px 20px;
  width: 100%;
  color: white;
  border: solid 2px white;
  z-index: 1000; /* keeps it above other sections */
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 40px;
}
nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}
nav a:hover {
  color: #f39c12;
}

nav .atri{
  padding-right: 40px;
}
.serch-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.serch-box input[type="text"] {
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.serch-box button {
  padding: 6px 12px;
  border: none;
  border-radius: 4px;
  background-color: #e67e22;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.serch-box button:hover {
  background-color: #d35400;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-right: auto;
}
.logo img {
  height: 40px;
  width: auto;
  border-radius: 4px;
  border: solid 1px black;
}

.logo-name {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.support-content {
  min-height: 100%;
  padding: 200px 70px;
  color: white;
  position: relative;
  background-image: url(background.jpg);
  background-attachment: fixed;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 65px;
}
.support-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
.support-content > * {
  position: relative;
  z-index: 1;
}
.typing {
  font-size: 3rem;
  font-weight: bold;
  color: #f3780c;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: typing 2s steps(25) forwards, blink 0.75s step-end infinite;
}

@keyframes typing {
  to { width: 25ch; } 
}

@keyframes blink {
  50% { border-color: transparent; }
}
.support-content h1 {
  font-size: 44px;
  margin-bottom: 12px;
}
.support-content p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 600px;
}
.btn {
  display: inline-block;
  margin: 20px;
  padding: 12px 24px;
  background-color: #e67e22;
  color: white;
  text-decoration: none;
  font-size: 18px;
  border-radius: 4px;
  transition: background-color 0.3s;
}
.social-icon1 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 20%;
  background-color: #e67e22;
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s, background-color 0.3s;
  text-decoration: none;
}
.social-icons1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.main-social {
  position: fixed;
  top: 40%;
  right: 20px;
  display: flex;
  flex-direction:column;
  align-items: flex-end;  
  text-align: right;
  padding-right: 20px;
}
.servises {
  background: transparent;
  padding: 3rem 6vw;
  background: #00000000;
  color: #111827;
  text-align: center;
  
}
.servises h2{
  letter-spacing: 0.8px;
  font-size: 1.8rem;
  margin-bottom: 1%;
}
.Services1{
  background: transparent;
  display: grid;
  grid-template-columns: repeat(2, minmax(0 , 1fr));
  gap: 1.5rem 2rem;
  width: 800px;
  margin: 0 auto;
}

.servies-box{
  background-color:#ffffff;
  border-radius:16px;
  height: 70%;
  width: 90%;
  padding: 1.5rem 1.7rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  box-shadow: 0 10px 25px rgb(15, 23, 42, 0.19);
  border: 1px solid rgb(148, 163, 184, 0.25);
  transition:transform 0.2s ease, box-shadow 0.3s ease;
}

.servies-box a{
  text-decoration: none;
  color: inherit;
}
.servies-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgb(15, 23, 42, 0.2);
  border-color: #4f46e5;
}

.servise-icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eef2ff;
  color: #4f46e5;
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

.servies-box h3{
  font-size: 1.3rem;
  margin: 0;
}
.servies-box p{
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.ads-section{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
 .ads-section h2{
  color: rgb(17, 15, 15);
  font-size: 2rem;
  margin-bottom: 60px;
  font-weight: 700;
 } 
.ads-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.ads-card{
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  color: rgb(0, 0, 0);
  transition: all 0.3s ease;
  border: 2px solid rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.ads-card:hover{
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.icon-circle{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #0033ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.google .icon-circle{
  background: linear-gradient( 45deg, #4285f4 , #34a853);
}
.facebook .icon-circle{
  background: linear-gradient( 45deg, #1877f2 , #0a6c20);
}
.linkedin .icon-circle{
  background: linear-gradient( 45deg,  #1877f2 , #0a6c20);
}
.instagram .icon-circle{
  background: linear-gradient( 45deg, #1877f2 , #0a6c20);
}

.contact-section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  color: #333;
  font-family: 'Roboto', sans-serif;
}

.contact-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #e67e22;
}

.contact-header p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-card {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px 20px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-icon {
  font-size: 2rem;
  color: #e67e22;
  margin-bottom: 10px;
}

.trust-box {
  background-color: #fff8f0;
  border: 1px solid #f3e2d0;
  border-radius: 12px;
  padding: 20px;
  max-width: 600px;
  margin: 0 auto;
  color: #444;
}

.trust-box h4 {
  margin-bottom: 10px;
  color: #e67e22;
}

.trust-box p {
  font-size: 1rem;
  line-height: 1.6;
}

.faq-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: 'Roboto', sans-serif;
  color: #333;
  max-width: 900px;
  margin: 0 auto;
}

.faq-header h2 {
  font-size: 2.4rem;
  color: #e67e22;
  margin-bottom: 10px;
  text-align: center;
}

.faq-header p {
  font-size: 1.1rem;
  color: #666;
  text-align: center;
  margin-bottom: 50px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.faq-question {
  background-color: #fefefe;
  color: #333;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 18px 20px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #fff5ec;
}

.faq-question::after {
  content: "▶";
  position: absolute;
  right: 20px;
  font-size: 1rem;
  color: #e67e22;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background-color: #fff8f0;
  color: #444;
  font-size: 0.95rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 16px 20px;
}
.site-footer {
  background-color: #ffffff;
  color: #000000;
  border-top: 1px double #000000;
  padding: 40px 20px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about, .footer-links, .footer-social {
  flex: 1;
  min-width: 250px;
}

.footer-about h3 {
  color: #e67e22;
  margin-bottom: 10px;
}

.footer-links h4, .footer-social h4 {
  margin-bottom: 12px;
  color: #e67e22;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #e67e22;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #e67e22;
  color: #fff;
  font-size: 18px;
  transition: transform 0.3s, background-color 0.3s;
  text-decoration: none;
}
.social-icon:hover {
  transform: scale(1.1);
  background-color: #d35400;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 0.9rem;
  color: #aaa;

}
/* Mobile view adjustments */
@media (max-width: 768px) {
  /* Header & Navbar */
  .site-header {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 15px;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    color: #f39c12;
    cursor: pointer;
  }

  nav {
    position: absolute;
    top: 65px; /* below header */
    left: 0;
    right: 0;
    background-color: #0f1112;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
  }

  nav.open {
    transform: translateY(0);
  }

  nav a {
    font-size: 18px;
    text-align: center;
    padding: 10px 0;
  }

  /* Hero section */
  .support-content {
    padding: 120px 20px;
    text-align: center;
  }
  .support-content h1 {
    font-size: 28px;
  }
  .support-content p {
    font-size: 16px;
    max-width: 100%;
  }

  /* Services grid */
  .Services1 {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .servies-box {
    width: 100%;
  }

  /* Ads grid */
  .ads-grid {
    grid-template-columns: 1fr;
  }

  /* Contact cards */
  .contact-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  /* FAQ */
  .faq-section {
    padding: 40px 10px;
  }

  /* Footer */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
