
/* ===============================
   1. Reset & Base
================================= */
body {
  font-family: 'Poppins', 'IBM Plex Sans Arabic', sans-serif;
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #4B2BAE, #5c36cf);
  color: white;
}


/* ===============================
   2. Typography
================================= */
h1 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 400;
}
h1 .bold {
  font-weight: 700;
  color: white;
}
h2, p {
  margin: 0;
  padding: 0;
}
.description {
  font-family: 'Poppins';
  margin: 20px auto 0;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  padding: 0 20px;
}
.services-title {
  max-width: 450px;
  font-family: 'Poppins';
  font-weight: bold;
  margin: 20px auto 20px;
  font-size: 2rem;
  text-align: center;
  color: #f4e022;
}
.banner-bar {
  color: white;
  padding: 20px 30px;
  font-weight: normal;
  font-size: 1.2rem;
  text-align: center;
  max-width: 100%;
  margin: 40px auto;
}
@media (max-width: 768px) {
 .banner-bar {
  padding: 40px 20px 30px;
  }
  }



/* ===============================
   3. Header Section
================================= */
.header {
  text-align: center;
  padding: 60px 30px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
}
.logo {
  width: 300px;
  margin-bottom: 20px;
}


/* ===============================
   4. Services Section
================================= */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 600px;
  padding: 0 20px;
  align-items: stretch;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .cards-container {
    grid-template-columns: 1fr;        
    justify-items: center;             
  }

  .service-card {
    max-width: 320px;                
    width: 100%;
  }
}

.service-card {
  width: 100%;
  border-radius: 30px;
  max-width: 300px;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  background-color: #f4e022;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-top {
  background-color: #2d1774;
  padding: 40px 20px 30px;
  text-align: center;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.icon {
  width: 80px;
  margin-bottom: 20px;
}

.card-bottom {
  background-color: #f4e022;
  padding: 25px 20px;
}
.card-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card-bottom li {
  font-weight: 600;
  font-size: 14px;
  color: #1d1260;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}
.card-bottom li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 10px;
  background-image: url('./assests/backslash.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.hover-expand:hover .card-bottom {
  max-height: 500px;
  opacity: 1;
  padding: 20px;
}


/* ===============================
   5. Chat Card
================================= */
.chat-card {
  width: 100%;
  min-width: 260px;
  max-width: 300px;
  border-radius: 30px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  background-color: #2d1774;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}
.chat-card-top {
  background-color: #f4e022;
  color: #2d1774;
  text-align: center;
  padding: 40px 20px 30px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.chat-card-top .chat-icon {
  width: 80px;
  margin-bottom: 20px;
}
.chat-card-top h2 {
  font-size: 18px;
  margin: 0;
  font-weight: bold;
  line-height: 1.4;
}
.chat-card-bottom {
  background-color: #2d1774;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.chat-card-bottom input,
.chat-card-bottom .send-button {
  width: 100%;
  max-width: 250px;
  box-sizing: border-box;
}

.chat-card-bottom input {
  padding: 15px 25px;
  font-size: 12px;
  border: none;
  border-radius: 40px;
  outline: none;
  font-weight: 500;
  color: #494949;
  text-align: center;
}

.send-button {
  background-color: #f4e022;
  color: #2d1774;
  border: none;
  border-radius: 40px;
  padding: 14px 25px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
}

.send-button:hover {
  background-color: #9a8c1c;
}

/* ===============================
   6. Clients Section
================================= */
.clients-section {
  position: relative;
  padding: 10px 0px 10px; 
  background-color: #431e96;
  overflow: hidden;
  margin: 50px 0px 0px;
  margin-bottom: 20px;
}
.clients-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 0;
  opacity: 100;
  pointer-events: none;
}
.clients-title {
  font-size: 2.5rem;
  color: #f4e022;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.clients-grid img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background: white;
  padding: 15px;
  border-radius: 20px;
}
.logos-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.logos-slider {
  overflow: hidden;
  width: 100%;
}
.logos-track {
  display: flex;
  gap: 10px;
  animation: scroll-left 20s linear infinite;
}
.logos-track img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: white;
  padding: 15px;
  border-radius: 20px;
  flex-shrink: 0;
}
#row2 .logos-track {
  animation: scroll-right 20s linear infinite;
}


/* ===============================
   7. Counter Section
================================= */
.counter-section {
  text-align: center;
  color: white;
}

.top-text {
  font-size: 40px;
  font-weight: 500;
  font-family: 'Poppins';
  margin-bottom: -20px; 
}

.counter-number {
  font-size: 100px;
  font-family: 'Poppins';
  font-weight: 900;
  color: #f4e022;
  margin: 0;
}

.bottom-text {
  font-size: 26px;
  font-family: 'Poppins';
  font-weight: 400;
  margin-top: -20px; 
}

/* ===============================
   8. Footer
================================= */

.contact-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #4b2bae;
  padding: 40px 20px;
  gap: 30px;
  color: white;
}

.left-info,
.center-info,
.right-info {
  flex: 1;
  min-width: 250px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.contact-item .icon {
  width: 25px;
  margin-right: 10px;
}

.center-info {
  text-align: center;
}

.center-info .counter-number {
  font-size: 80px;
  font-weight: bold;
  color: #f4e022;
  margin: 0;
}

.center-info .bottom-text {
  font-size: 20px;
  margin: 5px 0 0;
}

.right-info {
  text-align: center;
}

.qr-code {
  width: 120px;
  height: 120px;
  border-radius: 20px;
}

.qr-label {
  margin-top: 10px;
  font-weight: bold;
}

.qr-link {
  color: #f4e022;
  font-family: 'Poppins', cursive;
  text-decoration: none;
}
.contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;      
  text-align: center;  
  justify-content: center;
  height: 200px;
  background-color: #2d1774; 
  padding: 50px;
  border-radius: 60px;
  margin-right: 25px;
  margin-left: 25px;
  margin-bottom: 25px;
  color: white;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-row:hover {
  transform: translateX(8px);
  color: #FFD700; 
}

.contact-row img.icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.contact-row:hover img.icon {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .contact-box {
    padding: 25px;           
  }
  }

/* ===============================
   9. Agency Name
================================= */

.agency-footer {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 40px;
}

.agency-name {
  font-size: 24px;
  font-weight: 700;
  color: #f4e022;
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.agency-since {
  font-size: 20px;
  font-weight: 500;
  color: 431e96;
  font-family: 'Poppins', sans-serif;
  margin-top: -5px;
}

/* ===============================
   10. Animations
================================= */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes floatDown {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/* ===============================
   9. Background Particles
================================= */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.particle {
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatDown linear;
}

/* ===============================
   9. Folder
================================= */

.floating-folder-wrapper {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1000;
  display: flex;
  width: auto;
  text-decoration: none;
  align-items: center;
  justify-content: flex-end;
}
.label {
  text-decoration: underline;
  text-decoration-color: #5a37c3;
  color: white;
}
.floating-folder img {
  width: 60px;
  animation: wiggle 4s ease-in-out infinite;
  color: white;
  text-decoration: none;
  flex-direction: column;
  align-items: center;

}
.floating-folder span {
  text-decoration: none;
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(5.5deg); }
  50% { transform: rotate(-5.5deg); }
  75% { transform: rotate(3deg); }
}
.proposal-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 60px auto;
}

.proposal-column img {
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  background-color: white;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}
.portfolio-grid img {
  max-width: 80%;
  object-fit: contain;
  background: white;
  border-radius: 20px;
}
.calendly-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 70px;
}

.calendly-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 42px;
  border-radius: 32px;
  border: none;
  cursor: pointer;

  background: linear-gradient(135deg, #f4e022, #d6c91c);
  color: #2b1f5c;

  box-shadow: 0 12px 30px rgba(244, 224, 34, 0.25);
  transition: all 0.35s ease;
}

.calendly-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(244, 224, 34, 0.4);
}

.calendly-btn:active {
  transform: scale(0.97);
}