@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@100..900&display=swap');

.exo-2-uniquifier {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800; /* يمكنك تغيير هذا الرقم بين 100 و 900 */
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Exo 2", sans-serif;
    text-decoration: none;
}

body {
    zoom: 90%;       /* للمتصفحات التي تدعم الخاصية */
    zoom: 0.8;       /* طريقة أخرى لنفس القيمة */
    -moz-transform: scale(0.8); /* محاولة دعم Firefox (قد لا تعمل كما هو متوقع) */
    -moz-transform-origin: top left; /* ضروري لـ Firefox لتبدأ من أعلى اليسار */
}

html {
    background-color:#000014;
    opacity: 1;
    zoom: 0.8;       /* طريقة أخرى لنفس القيمة */
    zoom: 90%;       /* للمتصفحات التي تدعم الخاصية */


}

/* Motion defaults and smooth scrolling */
:root {
    --ease: cubic-bezier(.22,.61,.36,1);
    --ease-out: cubic-bezier(.16,1,.3,1);
    --fast: 200ms;
    --normal: 400ms;
    --slow: 800ms;
}

html { scroll-behavior: smooth; }

.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 1000;
    transition:  0.3s ease;
}

.whatsapp-float img {
    width: 76%;
    height: 76%;
    border-radius: 50%;
    position: relative;
    left: 1.25px;
    top: 1px;
}

.whatsapp-float:hover {
    background-color: #1faa52;
}

header {
    display: flex;
    position: sticky;
    top: 0;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid 1px rgba(221, 221, 221, 0.672);
    z-index: 999;
    height: 65px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(10px);
    background-color: rgba(38, 36, 36, 0.5);
}

header .passion {
    position: relative;
    left: 150px;
    font-size: 1.7em;
    font-weight: 600;
    color: white;
}

header .nav-link {
    font-size: 1.1em;
    display: flex;
    justify-content: center;
    gap: 30px;
}

header .nav-link a {
    color: white;
    transition: 0.4s;
}

header .nav-link a:hover {
    color: #1594E7;
}

header .button {
    position: relative;
    right: 150px;
    text-transform: capitalize;
    font-size: 1.4em;
    font-weight: 400;
    background-color:black;
    border: solid 0.5px #1594E7;
    padding: 3px 35px 3px 35px;
    border-radius: 8px;
    color: white;
    transition: 0.5s;
    text-align: center;
}

header .button:hover {
    background-color:rgb(50, 50, 50);
}


.button-massge {
    color: white;
    font-weight: 400;
    opacity: 0.7;
}


.stars {
    position: fixed;
    width: 100%;
    height: 100%;
    background-image: url(./imges/star.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: repeat;
    opacity: 0.2;
    z-index: -1;
    top: 0;
    left: 0;
    pointer-events: none;
}

.services-hero-img {
    opacity: 0;
    animation: zoomIn 1.5s ease-out forwards;
}
@keyframes zoomIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}



.hero-img {
    opacity: 0;
    animation: zoomIn 1.5s ease-out forwards;
}
@keyframes zoomIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.animation {
    animation: fadeSlide 1.4s ease forwards;
    opacity: 0;
}

@keyframes fadeSlide {
  0%   { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.about-box {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}


@keyframes stars-drift {
    from { background-position: 0 0; }
    to   { background-position: 0 70px; }
}

.stars { animation: stars-drift 13s linear infinite alternate; }

.hero .passion-image {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.hero .hero-content h1 {
    color: white;
    font-size: 3.5em;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    line-height: 80px;
    margin-top: 25px;
}

.hero .hero-content h4 {
    color: #fffc;
    font-size: 1.5em;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
}

.hero .heros {
    display: flex;
    flex-direction: row ;
    justify-content: center;
    gap: 50px;
}

.hero div .hero1-button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 200px;
    background-color:#0b152e;
    border: rgba(255, 255, 255, 0.527) solid 1px;
    height: 60px;
    border-radius: 7px;
    font-size: 1.2em;
    color: white;
    font-weight: 500;
    transition: ease 0.7s;
}

.hero div .hero1-button:hover {
    background-color: transparent;
}

.form-success {
  margin-top: 15px;
  font-size: 1.3em;
  color: #9bdcff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.form-success.show {
  opacity: 1;
  transform: translateY(0);
}

.hero div .hero-button  {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    background-image:linear-gradient( to right, #1A2E63, #1594E7);
    width: 200px;
    height: 60px;
    border-radius: 7px;
    font-size: 1.2em;
    color: white;
    font-weight: 500;
}


.hero .hero-img {
    display: flex;
    flex-direction: column ;
    align-items: center;
    margin-top: 60px;
    height: 100%;
}


.hero .hero-img .transparent-box {
    background-color: #06629f5c;
    width: 75%;
    height: 100%;
    z-index: -1;
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: -5px -16px 60px 5px  #1594E7;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}



.hero .hero-img img {
    z-index: 998;
    margin-left: auto;
    margin-right: auto;
    width: 96%;
    height: auto;
}

.line {
    z-index: 2;
    background-image: linear-gradient(90deg, #777bfb00, #1594E7 26%, #146aa4 70%, #777bfb00);
    width: 100%;
    height: 2px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: 90px;
}

.hero h3 {
    color: white;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    font-size: 1.5em;
    font-weight: 500;
}

/* Scroll reveal base */
.scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s ease, transform 1s ease;
}

/* لما يدخل العنصر على الشاشة */
.scroll-reveal.scroll-show {
  opacity: 1;
  transform: translateY(0);
}

/* اختياري: تأخير خفيف لعناصر معيّنة */
.pg-tabs-row.scroll-show {
  transition-delay: 0.1s;
}

.pg-tab-panels.scroll-show {
  transition-delay: 0.2s;
}


.pg-process-tabs {
  padding: 80px clamp(16px, 5vw, 40px);
  color: #e5e7eb;
}

.pg-process-tabs-container {
  max-width: 1600px;
  margin: 0 auto;
}

/* HEADER */
.pg-process-tabs-header {
  margin-bottom: 50px;
}

.pg-eyebrow {
  font-size: 3.9em;
  font-weight: 700;
  color: white;
  display: flex;
  justify-content: center;
}

.pg-title {
  font-size: 1.7em;
  margin: 8px 0;
  display: flex;
  justify-content: center;
  color: #0ea5e9;
  font-weight: 500;
}

/* TABS FULL WIDTH */
.pg-tabs-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; /* distribute across full width */
  gap: clamp(10px, 2vw, 18px);
  background: rgba(15, 23, 42, 0.9);
  padding: clamp(18px, 4vw, 30px) clamp(14px, 4vw, 20px);
  border-radius: 18px;
  border: 1px solid rgba(148,163,184,0.4);
  box-sizing: border-box;
  flex-wrap: wrap;
}

/* TAB BUTTONS */
.pg-tab-btn {
  flex: 1; /* equal width */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 15px 18px;
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #9ca3af;
  transition: 0.25s ease;
  font-size: 1.5em;
  font-weight:700;
}

.pg-tab-btn:hover {
  transform: translateY(-1px);
}

.pg-tab-btn.active {
  background: radial-gradient(circle at top, #0ea5e9, #494cda);
  color: white;
  box-shadow: 0 0 12px rgba(56,189,248,0.7);
}

/* ARROW COLOR FIXED */
.pg-tab-arrow {
  width: 26px;
  height: 2px;
  background: #1594e7; /* NEW COLOR */
  border-radius: 999px;
  opacity: 0.9;
  position: relative;
}

.pg-tab-arrow::after {
  content: "";
  position: absolute;
  right: -6px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #1594e7;
  border-right: 2px solid #1594e7;
  transform: rotate(45deg);
}

/* PANELS */
.pg-tab-panels {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(30,41,59,0.85));
  padding: clamp(20px, 5vw, 32px);
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.45);
}

.pg-tab-panels::before,
.pg-tab-panels::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  z-index: 0;
}

.pg-tab-panels::before {
  width: 240px;
  height: 240px;
  top: -60px;
  right: -40px;
  background: radial-gradient(circle, rgba(56,189,248,0.5), rgba(17,94,163,0.1));
}

.pg-tab-panels::after {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: -40px;
  background: radial-gradient(circle, rgba(99,102,241,0.45), rgba(30,41,59,0.1));
}

.pg-tab-panel {
  display: none;
  animation: fadeIn 0.35s ease;
  position: relative;
  z-index: 1;
}

.pg-tab-panel.active {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(16px, 3vw, 28px);
  align-items: flex-start;
}

.pg-panel-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 13px;
}

.pg-panel-copy {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.pg-panel-text {
  color: #d1d5db;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  line-height: 1.6;
}

.pg-panel-visual {
  --accent: #38bdf8;
  --accent-2: #6366f1;
  position: relative;
  min-height: 320px;
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.28);
  background: radial-gradient(circle at 20% 20%, rgba(56,189,248,0.15), transparent 45%),
radial-gradient(circle at 80% 20%, rgba(99,102,241,0.12), transparent 40%),
rgba(15,23,42,0.6);
  overflow: hidden;
  isolation: isolate;
}

.pg-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148,163,184,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,163,184,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
  z-index: 1;
}

.pg-visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(56,189,248,0.16), transparent 45%),
              radial-gradient(circle at 80% 40%, rgba(99,102,241,0.18), transparent 40%);
  filter: blur(18px);
  opacity: 0.8;
  z-index: 1;
}

.pg-visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: clamp(160px, 20vw, 220px);
  height: clamp(160px, 20vw, 220px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), rgba(15,23,42,0.8));
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 0 0 12px rgba(56,189,248,0.06), 0 20px 50px rgba(0,0,0,0.35);
  z-index: 3;
  text-align: center;
  backdrop-filter: blur(8px);
  align-content: center;
  overflow: hidden;
  animation: centerPulse 10s ease-in-out infinite;
}

.pg-visual-center::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(56,189,248,0.28);
  box-shadow: 0 0 30px rgba(56,189,248,0.25);
  opacity: 0.7;
  animation: ringBreath 12s ease-in-out infinite;
  pointer-events: none;
}

.pg-visual-center::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(56,189,248,0.0), rgba(56,189,248,0.18), rgba(99,102,241,0.14), rgba(56,189,248,0));
  filter: blur(1px);
  opacity: 0.7;
  animation: sweepGlow 14s linear infinite;
  pointer-events: none;
}

.pg-visual-step {
  font-size: 2.2em;
  font-weight: 700;
  color: #e5e7eb;
  letter-spacing: 0.03em;
  animation: textFloat 8s ease-in-out infinite;
}

.pg-visual-label {
  font-size: 1.1em;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 6px;
  animation: textFloat 8s ease-in-out infinite reverse;
}

@keyframes centerPulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(56,189,248,0.06), 0 20px 50px rgba(0,0,0,0.35); }
  50% { box-shadow: 0 0 0 14px rgba(56,189,248,0.12), 0 26px 60px rgba(0,0,0,0.42); }
}

@keyframes ringBreath {
  0%, 100% { transform: scale(0.98); opacity: 0.45; }
  50% { transform: scale(1.04); opacity: 0.9; }
}

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

@keyframes textFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes tagFloat {
  0%, 100% { transform: translate(-50%, -50%) translateX(var(--tag-offset)) translateY(0); }
  50% { transform: translate(-50%, -50%) translateX(var(--tag-offset)) translateY(-8px); }
}

.pg-visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.8;
  z-index: 2;
  --offset-x: 0px;
  --offset-y: 0px;
}

.pg-visual-orb.orb-a {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  --offset-x: 140px;
  transform: translate(-50%, -50%) translateX(var(--offset-x)) translateY(var(--offset-y));
  transform-origin: center;
  background: radial-gradient(circle, var(--accent), transparent 60%);
}

.pg-visual-orb.orb-b {
  width: 90px;
  height: 90px;
  top: 50%;
  left: 50%;
  --offset-x: -150px;
  transform: translate(-50%, -50%) translateX(var(--offset-x)) translateY(var(--offset-y));
  transform-origin: center;
  background: radial-gradient(circle, var(--accent-2), transparent 62%);
}

.pg-visual-orb.orb-c {
  width: 70px;
  height: 70px;
  top: 50%;
  left: 50%;
  --offset-x: 80px;
  transform: translate(-50%, -50%) translateX(var(--offset-x)) translateY(var(--offset-y));
  transform-origin: center;
  background: radial-gradient(circle, rgba(255,255,255,0.4), transparent 60%);
  opacity: 0.45;
}

.pg-visual-tag {
  position: absolute;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(148,163,184,0.35);
  color: #e5e7eb;
  font-size: 0.95em;
  letter-spacing: 0.05em;
  z-index: 3;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.pg-visual-tag.tag-1,
.pg-visual-tag.tag-2,
.pg-visual-tag.tag-3 {
  top: 50%;
  left: 50%;
  transform-origin: center;
  --tag-offset: 0px;
  animation: tagFloat 7s ease-in-out infinite;
}

.pg-visual-tag.tag-1 {
  --tag-offset: 100px;
  top: 70px;
  transform: translate(-50%, -50%) translateX(var(--tag-offset));
  animation-delay: 0s;
}

.pg-visual-tag.tag-2 {
  --tag-offset: -140px;
  transform: translate(-50%, -50%) translateX(var(--tag-offset));
  animation-delay: 0.8s;
}

.pg-visual-tag.tag-3 {
  --tag-offset: 150px;
  transform: translate(-50%, -50%) translateX(var(--tag-offset));
  animation-delay: 1.4s;
}

.pg-visual-theme-2 { --accent: #34d399; --accent-2: #22c55e; }
.pg-visual-theme-3 { --accent: #f97316; --accent-2: #fb7185; }
.pg-visual-theme-4 { --accent: #a855f7; --accent-2: #38bdf8; }


/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 900px) {
  .pg-tabs-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .pg-tab-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.2em;
  }

  .pg-tab-panel.active {
    grid-template-columns: 1fr;
  }

  .pg-panel-title {
    text-align: left;
  }

  .pg-panel-copy {
    max-width: none;
  }

  .pg-panel-visual {
    min-height: 260px;
  }
}

@media (max-width: 700px) {
  .pg-tab-arrow {
    display: none;
  }
  .pg-tab-panels {
    padding: 20px;
  }

  .pg-panel-title {
    font-size: 1.8rem;
  }

  .pg-panel-text {
    font-size: 1.05rem;
  }

  .pg-tab-btn {
    font-size: 1.05em;
    padding: 12px 14px;
  }

  .pg-process-tabs {
    padding: 60px 14px;
  }
}



.about-us .about-info h2 {
    display: flex;
    justify-content: center;
    color: white;
    font-size: 5em;
    font-weight: 700;
    margin-top: 70px;
}

.about-us .about-info .about-box {
    background-color:#00132a;
    width: 93%;
    height: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;   
    border-radius: 12px;
    border: solid 1px rgba(221, 221, 221, 0.442);
    box-shadow: rgb(21, 148, 231) 1px -3px 50px -17px;
    transition:  0.4s ease;
    padding-bottom: 20px;
}

.about-us .about-info .about-box:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.about-us .about-info .about-box h2 {
    color: #1594E7;
    font-size: 4.4em;
}


.about-us .about-info .about-box p {
    color: white;
    margin-top: 15px;
    font-size: 1.5em;
    font-weight: 300;   
    line-height: 34px;
    word-spacing: 2px;
    padding: 20px;
    text-align: center;
    text-transform: capitalize;
}

.why-passion .boxs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 80px;
    margin: 0 80px 0 80px;
}


.about-us .why-passion  h2 {
    margin-top: 90px;
    font-size: 4em;
}

.about-us .why-passion h5 {
    color: #1594E7;
    font-size: 1.5em;
    font-weight: 400;
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.about-us .why-passion .box {
    margin-top: 70px;
    background-color:#00132a;
    border: solid 1px rgba(221, 221, 221, 0.442);
    width: 40%;
    height: 40%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: inset rgb(21, 148, 231) -2px -2px 40px -17px;
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(-30px);
    transition: 1s cubic-bezier(.25,.46,.45,.94);
}

.about-us .why-passion .box.show {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.4);
}



.about-us .why-passion .box:hover {
    transform: translateY(-10px);
    box-shadow: none;
}

.about-us .why-passion .box .icon {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background-color: #0e1a38;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;  
}


.about-us .why-passion .box .icon i  {
    color: #1594E7;
    font-size: 3.6em;
}

.about-us .why-passion .box .icon svg {
    color: #1594E7;
    transform: scale(1);
}

.about-us .why-passion .box .box-info h3 {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 20px 0 5px 0;
    color: #1594E7;
    font-size: 2.8em;
}

.about-us .why-passion .box .box-info p {
    color: white;
    font-size: 1.3em;
    text-align: center;
    line-height: 35px;
    font-weight: 300;
    padding: 10px 10px 20px 10px;
    
}


.clint .continer .card-item {
    margin-top: 60px;
    border: solid 1px rgba(221, 221, 221, 0.442);
    width: 50%;
    height: 60%;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.4s ease;
    cursor: pointer;
    border-bottom: 0px;
}

.clint .continer .card-item ::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #777bfb00, #1594E7 26%, #146aa4 70%, #777bfb00);
}

.clint .continer .card-item:hover {
    border: solid 2px #1594E7;
    border-bottom: none;
}

.clint .continer .card-item .icon i  {
    color: #1594E7;
    font-size: 3.6em;
}

.clint .continer .card-item i {
    display: flex;
    justify-content: center;
    margin: 33px 0 10px 0;
    color: #1594E7;
    font-size: 3.7em;
}

.clint .continer .card-item p {
    color: #a0a0a1;
    font-size: 1.3em;
    text-align: center;
    line-height: 30px;
    font-weight: 300;
    padding: 0 15px;
    
}

.clint .continer .card-item p span {
    color: #fff;
    font-size: 22px;
}

.clint .continer .card-item .clint-name {
    color: white;
    margin-top: 5px;
    font-size: 19px;
}

.clint .continer .card-item .clint-postion {
    font-size: 17px;
    font-weight: 400;
    color: #1594E7;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* START The Slider Style */

.clint .slide-wapper {
    overflow: hidden;
    width: 77%;
    margin: 0 auto 55px;
    display: flex;
    justify-content: center;
}

.clint .slide-wapper .swiper-pagination-bullet {
    background-color: #fff;
    height: 15px;
    width: 15px;
}

.clint .slide-wapper .swiper-slide-button {
    color: #fff;
    transition: 0.4 ease;
    display: flex;
    justify-content: center;
    border: solid 2px rgba(255, 254, 254, 0.442); 
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

/*  for ReSizing the arows */

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    font-weight: 800;
}

.swiper-button-next::after {
    position: relative;
    left: 1.5px;
}

.swiper-button-prev::after {
    position: relative;
    right: 1.5px;
}

.clint .slide-wapper .swiper-button-prev {
    margin-left: 90px;
}

.clint .slide-wapper .swiper-button-next {
    margin-right: 90px;
}

/* END The Slider Style */


.clint h2 {
    display: flex;
    justify-content: center;
    color: white;
    font-size: 4em;
    font-weight: 700;
    margin-top: 70px; 
    text-align: center;
}

.clint .sub-title {
    color: #1594E7;
    font-size: 1.5em;
    font-weight: 400;
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.clint hr {
    margin: 30px auto 0 auto;
    width: 75px;
}

.line2 {
    z-index: 2;
    background-image: linear-gradient(90deg, #777bfb00, #1594E7 26%, #146aa4 70%, #777bfb00);
    width: 70%;
    height: 3px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: 90px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 1.2s ease-out;
}

.line2.animate {
    transform: scaleX(1);
}

.footer {
    margin-top: 150px;
    padding: 20px;
    background-color: #00132a52;
    width: 100%;
}

.footer .footer-continer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 400px;
}

.footer .footer-continer .footer-continer-left {
    margin: 20px 0 0 0;
    width: 20%;
}

.footer .footer-continer .footer-continer-left p {
    font-size: 2em;
    color: white;
    font-weight: 700;
    margin-top: 20px;
    line-height: 40px;
    letter-spacing: 0.6px;
    width: 100%;
    text-transform: capitalize;
}

.footer .footer-continer .footer-continer-left hr {
    margin-top: 20px;
    width: 20%;
}

.footer .footer-continer .footer-continer-center {
    margin: 20px 0 0 0;
}

.footer .footer-continer .footer-continer-center h3 {
    color: #1594E7;
    font-weight: 500;
    font-size: 1.4em;
}

.footer .footer-continer .footer-continer-center a {
    color: rgba(255, 255, 255, 0.452);
    font-weight: 400;
    font-size: 1.1em;
    margin-top: 15px;
    display:flex;       
    transition: 0.4s ease;
    word-spacing: 4px;
    text-transform: capitalize;
}

.footer .footer-continer .footer-continer-center a:hover {
    transform: translateX(5px);
    color: #fff;
}

.footer .footer-continer .footer-continer-right {
    margin-top: 20px;
}

.footer .footer-continer .footer-continer-right h3 {
    color: #1594E7;
    font-weight: 500;
    font-size: 1.4em
}


.footer .footer-continer .footer-continer-right p {
    color: white;
    font-size: 1.2em;
    font-weight: 400;
    margin-top: 12px;
}

.footer .footer-continer .footer-continer-right .social-icon {
    display: flex;
    gap: 15px;
}

.footer .footer-continer .footer-continer-right .social-icon a  {
    color: white;
    font-size: 2.2em;
    margin-top: 20px;
    transition: 0.4s ease;
}

.footer .footer-continer .footer-continer-right .social-icon a:hover {
    color: #1594E7;
}

.footer .footer-continer .footer-continer-right img {
    position: relative;
    left: 500px;
    opacity: 0.1;
}

/* تنسيق شريط التمرير بأكمله */
::-webkit-scrollbar {
  width: 13px; /* عرض الشريط */
}

/* تنسيق المسار */
::-webkit-scrollbar-track {
  background: #c0c0c092; /* لون خلفية المسار */
  border-radius: 3px; /* جعل الحواف مستديرة */
}

/* تنسيق مقبض التمرير */
::-webkit-scrollbar-thumb {
  background: #1594E7; /* لون المقبض */
  border-radius: 3px; /* جعل الحواف مستديرة */
}

/* عند مرور الماوس فوق المقبض */
::-webkit-scrollbar-thumb:hover {
  background: #1594E7; /* لون المقبض عند التفاعل */
}

::selection {
  background: #1A2E63; /* لون الخلفية عند التحديد */
  color: #ffffff; /* لون النص عند التحديد */
}

/* للمتصفحات القديمة مثل Mozilla Firefox */
::-moz-selection {
  background: #1A2E63; /* لون الخلفية عند التحديد */
  color: #ffffff; /* لون النص عند التحديد */
}

.services .services-hero-content {
    opacity: 0; /* إخفاء العنصر */
    transform: translateY(30px); /* تحريكه 30 بكسل للأسفل */
    transition: opacity 1s ease-out, transform 1s ease-out; /* حركة الظهور السلسة */
    margin-top: 70px;
}

.services-hero-content.animate {
    opacity: 1; /* إظهار العنصر */
    transform: translateY(0); /* إعادته إلى مكانه الأصلي */
}

.services .services-hero-content h2 {
    color: white;
    font-size: 3.5em;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    line-height: 80px;
    margin-top: 40px;
}

.services .services-hero-content h4 {
    color: #fffc;
    font-size: 1em;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin-top: 20px;
    padding: 0px 10px;
}

.services .services-hero-button  {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    background-image:linear-gradient( to right, #1A2E63, #1594E7);
    width: 200px;
    height: 50px;
    padding-top: 13px;
    border-radius: 10px;
    font-size: 1.2em;
    color: white;
    font-weight: 500;
}

.services .services-hero-img {
    display: flex;
    justify-content: center;
    margin-top: 55px;
    
}

.services .services-hero-img img {
    box-shadow: -5px -16px 60px 5px  #1594E7;
    width: 65%;

}

.services h3 {
    color: white;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    font-size: 1.5em;
    font-weight: 500;
}

.our-services .our-services-info h1 {
    display: flex;
    justify-content: center;
    color: white;
    font-size: 5em;
    font-weight: 700;
    margin-top: 70px;
}

.our-services .our-services-boxs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 80px;
    gap: 50px;
}


.our-services .our-services-boxs .box {
    background-color: #00132a;
    width: 30%;
    height: 800px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: solid 1px rgba(255, 254, 254, 0.442);
    border-bottom: none;
    transition: transform 0.7s ease;
}

.our-services .our-services-boxs .box:hover {
    transform: translateY(-30px);
}

.our-services .our-services-boxs .box::after {
    content: "";
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #777bfb00, #1594E7 26%, #146aa4 70%, #777bfb00);
}

.our-services .our-services-boxs .box img {
    width: 100%;
    height: auto;
    border-radius: 13px 13px 0 0;
    padding: 3px;
}

.our-services .our-services-boxs .box .icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #00132a;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
}

.our-services .our-services-boxs .box .icon i {
    font-size: 3.7em; 
    color: white;
}

.our-services .our-services-boxs .box .box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.our-services .our-services-boxs .box .box-content h2 {
    color: #1594E7;
    font-size: 2.8em;
    text-transform: capitalize;
    text-align: center;
}

.our-services .our-services-boxs .box .box-content p {
    margin-top: 15px;
    text-align: center;
    color: white;
    font-weight: 500;
    font-size: 1.7em;
    line-height: 40px;
    padding: 10px 40px 20px;
}

.our-services .our-services-boxs .box .box-content hr {
    margin-top: 5px;
    margin-bottom: 15px;
    width: 20%;
}

.our-services .our-services-boxs .box .box-content a {
    background: radial-gradient(circle at top, #0ea5e9, #494cda);
    margin: 10px 0 30px 0;
    border-radius: 6px;
    padding:20px 25px 20px 25px;
    color: white;
    font-weight: 500;
    font-size: 1.3em;
    transition: 0.5s ease;
}


/* form style */

.toch .info {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.toch .info h2 {
    color: white;
    text-transform: capitalize;
    margin-top: 70px;
    font-size: 3.6em;
    text-align: center;
}

.toch .info p {
    color:#1594E7;
    font-size: 2.6em;
    font-weight: 600;
    margin-top: 20px;
    text-transform: capitalize;
    text-align: center;
}

.toch .toch-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    background-color: #091024;
    width: min(92%, 1000px);
    margin-top: 50px;
    padding: 36px 60px 52px;
    border-radius: 12px;
    border: #1594E7 1px solid;
    box-shadow: 0 0 26px rgba(21, 148, 231, 0.35), -7px 0px 49px -10px #1594e7 inset;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;


    /* ✅ إضافة الأنيميشن */
    animation: glowShadow 1.8s ease-in-out infinite alternate;
}

.toch .toch-box.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes glowShadow {
    0% {
        box-shadow: -7px 0px 49px -10px #1594e7 inset;
    }
    100% {
        box-shadow: -2px 0px 15px -5px #1594e7 inset;
    }
}


/* 2. أنماط الصورة نفسها */
.toch img {
    margin-top: 50px;
    width: 140px;
    height: auto;
    display: flex;
    text-align: center;
}

.toch .toch-box-info {
    width: 70%;
    display: flex;
    justify-content: center;
}


.toch .toch-box  form {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.toch .toch-box select {
    margin-top: 4px;
    padding: 14px;
    width: 100%;
    border-radius: 6px;
    background-color: transparent;
    border: #1594E7 1px solid;
    color: white;
    font-size: 1.1em;
    text-transform: capitalize;
}

.toch .toch-box form input {
    margin-top: 4px;
    padding: 14px;
    width: 100%;
    border-radius: 6px;
    background-color: transparent;
    border: #1594E7 1px solid;
    color: white;
    font-size: 1.1em;
}


.toch .toch-box  form .button {
    background-color: #1594E7;
    font-size: 1.3em;
    padding: 14px;
    width: 100%;
    font-weight: 600;
    transition: 0.4s ease;
    text-transform: capitalize;
    margin-top: 6px;
}


.toch .toch-box  form .button.button:hover {
    background-color: transparent;
    border: white 2px solid;
    cursor: pointer;
}

.toch .toch-box  form .text:hover {
    border: white 2px solid;
}

.contacttt .contacttt-info h1 {
    color: white;
    font-size: 4.5em;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    line-height: 80px;
    margin-top: 80px;
}

.contacttt .contacttt-info h4 {
    color: #fffc;
    font-size: 1.3em;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    margin-top: 30px;
    text-transform: capitalize;
}

.contacttt .contacttt-info h4 span {
    color: #1594E7;
    font-size: 1.4em;
}


.project .powrpoint {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project .powrpoint h2 {
    font-size: 3.5em;
    color: white;
    text-transform: capitalize;
    font-weight: 700;
    margin-top: 50px;
    text-align: center;
}

.project .powrpoint h4 {
    color:#1594E7;
    font-size: 1.6em;
    text-transform: capitalize;
    font-weight: 400;
    margin-top: 15px;
}

.project .project-cards {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 100px;
}

.project .project-cards .card {
    display: flex;
    text-align: center;
    transition: 0.4s ease;
    width: 45%;
     opacity: 0; /* إخفاء البطاقة */
    transform: translateY(43px); /* تحريكها قليلاً للأسفل */
    transition: opacity 0.8s ease-out, transform 0.4s ease-out; 
}

.project .project-cards .card.animate {
    opacity: 1; /* إظهار البطاقة */
    transform: translateY(0); /* إعادتها إلى مكانها الأصلي */
}

.project .project-cards .card:hover {
    transform: translateY(-12px);
}

.project .project-cards .card .box {
    background-color: #00132a;
    width: 90%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border: solid 1px rgba(255, 254, 254, 0.442);
    border-bottom: none;
    transition: transform 0.4s ease-in-out;
    padding: 0 12px;
}

.project .project-cards .card .box::after {
    content: "";
    position: relative;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #777bfb00, #1594E7 26%, #146aa4 70%, #777bfb00);
}

.project .project-cards .card .box .card-info img {
    margin-top: 12px;
    border-radius: 10px;
    width: 100%;
    height: 40%;
}

.project .project-cards .card .box .card-info h3 {
    /* margin-top: 20px; */
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 1.3em;
    padding: 10px;
}

.contacttt .contacttt-info h3 {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 2.5em;
    color: #1594E7;
    margin-top: 15px;
    text-transform: capitalize;
    padding: 4px;
}

.work {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: row;
    margin-top: 40px;
}

.work .work-info {
    opacity: 1; /* إخفاء العنصر */
}



.work .work-info h1 {
    color: white;
    font-size: 4.2em;
    font-weight: 600;
    text-align: center;
    text-transform: capitalize;
    line-height: 80px;
    margin-top: 25px;
}

.work .work-info h3 {
    color: #fffc;
    font-size: 1em;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.project .project-cards .card .box1 {
    background-color: #00132a;
    width: 90%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border: solid 1px rgba(255, 254, 254, 0.442);
    border-bottom: none;
    transition: transform 0.4s ease-in-out;
    padding: 0 12px;
}


.project .project-cards .card .box1::after {
    content: "";
    position: relative;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #777bfb00, #1594E7 26%, #146aa4 70%, #777bfb00);
}

.project .project-cards .card .box1 .card-info img {
    margin-top: 12px;
    border-radius: 10px;
}

.project .project-cards .card .box1 .card-info h3 {
    /* margin-top: 20px; */
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 1.3em;
    padding: 10px;
}

.social-media .powerpoint-one {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-media .powerpoint-one h2 {
    font-size: 3.5em;
    color: white;
    text-transform: capitalize;
    font-weight: 700;
    margin-top: 50px;
    text-align: center;
}

.social-media .powerpoint-one h4 {
    color:#1594E7;
    font-size: 1.6em;
    text-transform: capitalize;
    font-weight: 400;
    margin-top: 15px;
}

.social-media .project-cards {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 100px;
}

.social-media .project-cards .card {
    display: flex;
    text-align: center;
    width: 45%;
    transition: 0.4s ease;
    opacity: 0; /* إخفاء البطاقة */
    transform: translateY(30px); /* تحريكها 30 بكسل للأسفل */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; 
}

.social-media .project-cards .card.animate {
    opacity: 1; /* إظهار البطاقة */
    transform: translateY(0); /* إعادتها إلى مكانها الأصلي */
}

.social-media .project-cards .card:hover {
    transform: translateY(-12px);
}

.social-media .project-cards .card .box1 {
    background-color: #00132a;
    width: 90%;
    height: 100%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    border: solid 1px rgba(255, 254, 254, 0.442);
    border-bottom: none;
    transition: transform 0.4s ease-in-out;
    padding: 0 12px;
}

.social-media .project-cards .card .box1::after {
    content: "";
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #777bfb00, #1594E7 26%, #146aa4 70%, #777bfb00);
}

.social-media .project-cards .card .box1 .card-info img {
    margin-top: 12px;
    border-radius: 10px;
    width: 99%;
    height: auto;  
    object-fit: cover;
}

.social-media .project-cards .card .box1 .card-info h3 {
    /* margin-top: 20px; */
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 1.3em;
    padding: 10px;
}


/* blog design */

.blog-hero{
    display:flex;
    flex-direction:row;
    margin:100px auto 0;
    justify-content:center;
    align-items:center;
    max-width:65%;
    padding:35px;
    background:#03031049;
    border:1px solid #ffffff5e;
    border-radius:20px;
    box-shadow:-5px -16px 60px 5px #1594E7;
    backdrop-filter: blur(10px);

    /* حالة قبل الظهور */
    opacity:0;
    transform: translateY(40px) scale(0.97);
    filter: blur(4px);

    /* انتقال واحد فقط */
    transition: 0.9s cubic-bezier(.25,.46,.45,.94);
    will-change: transform, opacity, filter;
}

.blog-hero.show{
    opacity:1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.hero .hero-content h1 {
    color: white;
    font-size: 3.6em;
    text-transform: capitalize;
    text-align: center;
    margin-top: 55px;
}

.blog-hero:hover {
    transform: translateY(-16px);
}

.blog-hero img {
    width: 50%;
    height: 700px;
    border-radius: 20px;
    object-fit: cover;
}

.blog-hero .blog-info h4 {
    font-size: 1.2em;
    font-weight: 300;
    color: rgb(228, 228, 228);
    text-align: left;
    margin-left: 46px;
    margin-bottom: 0px;
}

.blog-hero .blog-info h2 {
    text-align: left;
    font-size: 2.8em;
    font-weight: 600;
    margin-left: 46px;
    line-height: 60px;
    color: white;
}

.blog-hero .blog-info p {
    text-align: left;
    margin-left: 48px;
    font-size: 1.3em;
    color: rgb(228, 228, 228);
    margin-top: 7px;
}

.blog-more {
    margin-top: 130px;
}

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

.blog-more .blog-more-info h2 {
    color: white;
    font-size: 3.8em;
    margin-bottom: 25px;
}

.blog-more .blog-more-info p {
    color: #fffc;
    font-size: 1.1em;
    width: 30%;
    display: flex;
    margin: 0 auto;
    line-height: 25px;
}

.blog-more .blog-all-box {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 90px;
}

.blog-more .blog-all-box .box {
    background-color:#000000;
    padding: 10px;
    width: 30%;
    border-radius: 14px;
    border: 1px solid #ffffff5e;
    transition: ease-in-out 0.3s;
    opacity: 0;
    transform: translateY(40px) scale(0.97);
    filter: blur(3px);
    transition: 0.8s cubic-bezier(.25,.46,.45,.94);
    will-change: transform, opacity, filter;
}

.blog-more .blog-all-box .box.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}


.blog-more .blog-all-box .box:hover {
    transform: translateY(-22px);
}

.blog-more .blog-all-box .box img {
    width: 100%;
    height: 70%;
    border-radius: 14px;
    object-fit: cover;
}

.blog-more .blog-all-box .box .box-info {
    text-align: left;
    margin-top: 20px;
}

.blog-more .blog-all-box .box .box-info h4 {
    font-size: 1.3em;
    font-weight: 300;
    color: rgb(228, 228, 228);
    margin-left: 20px;
    margin-bottom: 20px;
}

.blog-more .blog-all-box .box .box-info h2 {
    color: white;
    font-size: 2em;
    margin-left: 20px;
    font-weight: 600;
}

.blog-more .blog-all-box .box .box-info p {
    color: rgb(228, 228, 228);
    margin-left: 20px;
    margin-top: 20px;
    font-size: 1.3em;

}

.hero .hero-content-blog {
    margin-top: 80px;
}

.hero .hero-content-blog h1 {
    color: white;
    text-align: center;
    text-transform: capitalize;
    font-size: 2.8em;
}

.blog1 {
    margin-top: 170px;
    margin-left: 300px;
}

.blog1 .blog1-info h4 {
    color: rgba(255, 255, 255, 0.719);
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 20px;
}

.blog1 .blog1-info h1 {
    color: white;
    font-size: 3.7em; 
    font-weight: 600;
    width: 55%;
}

.blog1 .blog1-info p {
    color: #fffc;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 1.2em;
}

.blog1 .blog1-info .social-icon  {
    display: flex;
    gap: 27px;
    font-size: 2.4em;
    margin-bottom: 30px;
}

.blog1 .blog1-info img {
    border-radius: 16px;
    width: 55%;
    object-fit: cover;
}

.blog1 .blog1-info .social-icon a {
    color: #696979;
    transition: ease 0.3s;
}

.blog1 .blog1-info .social-icon a:hover {
    color: white;
}

article {
    margin-top: 50px;
}

article h2 {
    color: white;
    margin-left: 300px;
    font-size: 2.6em;
}

article h3 {
    color: #fffc;
    font-size: 1.5em;
    font-weight: 400;
    margin-left: 300px;
    padding: 20px 0;
    width: 60%;
}

article p {
    color: white;
    font-size: 1.2em;
    line-height: 30px;
    font-weight: 300;
    margin-left: 300px;
    padding: 10px 0;
    width:40%;
}

article ul {
    margin-left: 350px;
    color: white;
    font-size: 1.2em;
}

article ul li {
    margin-top: 10px;
}

/* Mobile */

@media (max-width: 767px) {
    header {
        flex-direction: column;
        align-items: center;
        height: 120px;
    }

    .toch .toch-box-info {
        width: 100%;
    }

    .toch .toch-box select,
    .toch .toch-box form input {
        width: 100%;
    }

    .hero .hero-content h1 {
        font-size: 3em;
        line-height: 70px;
        padding: 0 10px;
    }

    .about-us .about-info h2 {
        font-size: 4em;
    }
    
    header .button {
        right: 0;
        padding: 5px 25px 5px 25px;
        font-size: 1.2em;
        bottom: 20px;
    }

    header .nav-link {
        margin-top: 20px;
    }

    header .passion {
        display: none;
    }

    .hero .hero-content h2 {
        font-size: 2.8em;
        padding: 20px;
    }

    .hero .hero-content h4 {
        padding: 0 20px;
        font-size: 1.1em;
    }
    
    .hero .hero-img {
        display: none;
    }
    
    .about-us .about-info h1 {
        font-size: 4em;
    }

    .about-us .about-info .about-box h2 {
        font-size: 3.5em;
    }

    .about-us .about-info .about-box p {
        font-size: 1.2em;
    }

    .why-passion .boxs {
        flex-direction: column;
        align-items: center;
    }

    .about-us .why-passion .box {
        width: 90%;
    }

    .about-us .why-passion .box .box-info h3 {
        margin-bottom: 4px;
    }

    .clint h2 {
        font-size: 3em;
        padding: 0 10px;
    }

    .clint .slide-wapper .swiper-button-next {
        display: none;
    }

    .clint .slide-wapper .swiper-button-prev {
        display: none;
    }

    .clint .continer .card-item p {
        font-size: 1.1em;
    }
    
    .clint .continer .card-item p span {
        font-size: 19px;
    }

    .clint .continer .card-item .clint-name {
        font-size: 17px;
    }

    .toch .toch-box {
        width: 90%;
    }

    .footer .footer-continer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 70px;
    }

    .footer .footer-continer .footer-continer-left p {
        display: none;       
    }

    .footer .footer-continer .footer-continer-left hr {
        display: none;
    }

    .footer .footer-continer .footer-continer-center h3 {
        display: block;
    }

    .footer .footer-continer .footer-continer-right {
        text-align: center;
    }

    .footer .footer-continer .footer-continer-right .social-icon {
        justify-content: center;
    }
    
    .work .work-info h2 {
        font-size: 4em;
    }

    .work .work-info h4 {
        padding: 10px;
    }

    .services .services-hero-img img {
        display: none;
    }

    .services h3 {
        display: none;
    }

    .services .services-hero-img {
        display: none;
    }

    .project .powrpoint h2 {
        font-size: 2.6em;
    }

    .social-media .powerpoint-one h2 {
        font-size: 2.6em;

    }

    .project .project-cards .card .box {
        transform: scale(1.6);
        border-radius: 10px;
    }

    .project .project-cards {
        gap: 190px;
    }

    .project .project-cards .card .box .card-info img {
        transform: scale(1.0);
        border-radius: 7px;
    }

    .project .project-cards .card .box .card-info h3 {
        font-size: 0.7em;
    }

    .social-media .project-cards .card .box1 {
        transform: scale(1.4);
    }

    .social-media .project-cards {
        gap: 200px;
    }

    .social-media .project-cards .card .box1 .card-info h3 {
        font-size: 0.8em;
    }

    .services .services-hero-content h2 {
        font-size: 3em;
        padding: 10px;
    }

    .our-services .our-services-info h1 {
        font-size: 4em;
    }

    .our-services .our-services-boxs .box {
        width: 80%;
    }

    .our-services .our-services-boxs .box .box-content h2 {
        font-size: 2.2em;
    }

    .our-services .our-services-boxs .box .box-content p {
        font-size: 1em;
    }

    .contacttt .contacttt-info h3 {
        font-size: 2em;
    }

    .contacttt .contacttt-info h4 {
        font-size: 1.1em;
        padding: 10px;
    }

    .blog-hero img {
        display: none;
    }

    .blog-hero .blog-info h2 {
        font-size: 2.2em;
    }

    .blog-hero .blog-info p {
        margin-left: 70px;
        font-size: 1.1em;
    }

    .blog-more .blog-more-info h2 {
        font-size: 3.4em;
    }

    .blog-more .blog-more-info p {
        width: 70%;
    }

    .blog-more .blog-all-box {
        flex-direction: column;
        align-items: center;
    }

    .blog-more .blog-all-box .box {
        width: 80%;
    }

    .toch .info h2 {
        font-size: 2.5em;
        padding: 10px;
    }

    .toch .info p {
        font-size: 1.7em;
    }
    
    .work .work-info h3 {
        padding: 0 15px;
    }

    header .nav-link .nav-blog {
        display: none;
    }
}

/* Small Screens */

@media (min-width: 768px) and (max-width: 1200px) {

    header .passion {
        left: 70px;
    }
    

    header .button {
        right: 70px;
    }
    
    .hero .hero-content h2 {
        font-size: 3em;
        padding: 10px;
    }

    .hero .hero-content h4 {
        padding: 10px;
    }

    .hero .hero-img .transparent-box {
        width: 80%;
        
    }

    .about-us .about-info .about-box p {
        font-size: 1.3em;
    }

    .about-us .why-passion .box .box-info p {
        font-size: 1.3em;
    }

    .about-us .why-passion .box {
        width: 80%;
    }

    .why-passion .boxs {
        flex-direction: column;
        align-items: center;
    }

    .clint .slide-wapper .swiper-button-next {
        display: none;
    }

    .clint .slide-wapper .swiper-button-prev {
        display: none;
    }

    .clint .continer .card-item p {
        font-size: 1.1em;
        padding: 0 8px;
    }
    
    .clint .continer .card-item p span {
        font-size: 19px;
    }

    .clint .continer .card-item .clint-name {
        font-size: 17px;
    }

    .toch .toch-box {
        width: 70%;
    }

    .footer .footer-continer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 70px;
    }

    .footer .footer-continer .footer-continer-left p {
        display: none;       
    }


    .footer .footer-continer .footer-continer-center h3 {
        display: block;
    }

    .footer .footer-continer .footer-continer-right {
        text-align: center;
    }

    .footer .footer-continer .footer-continer-right .social-icon {
        justify-content: center;
    }

    .footer .footer-continer .footer-continer-left hr {
        display: none;
    }

    .services .services-hero-content h2 {
        font-size: 3em;
    }

    .our-services .our-services-info h1 {
        font-size: 4em;
    }

    .our-services .our-services-boxs .box {
        width: 44%;
    }

       .blog-more .blog-all-box {
        flex-direction: column;
        align-items: center;
    }

    .blog-more .blog-all-box .box {
        width: 70%;
    }

    .toch .info h2 {
        font-size: 2.5em;
        padding: 10px;
    }

    .toch .info p {
        font-size: 2em;
    }
    
     

    .blog-hero {
        max-width: 90%;
    }

    .blog-hero .blog-info h2 {
        font-size: 2.4em;
    }

    .blog-hero .blog-info p {
        margin-left: 55px;
        font-size: 1.2em;
    }

    .blog-more .blog-more-info p {
        width: 60%;
    }
    
    .blog1 .blog1-info h1 {
        font-size: 3.3em;
        width: 100%;
    }
    
    article p {
        width: 70%;
        font-size: 1.1em;
    }

    article h2 {
        font-size: 2.1em;
    }
    
}

@media (min-width: 1200px) and (max-width: 1670px){

    .blog-more .blog-all-box {
        flex-direction: column;
        align-items: center;
    }

    .blog-more .blog-all-box .box {
        width: 50%;
    }

    .footer .footer-continer {
        gap: 200px;
    }

    .footer .footer-continer .footer-continer-left p {
        font-size: 1.5em;
        width: 120%;
    }
    
}
@media (min-width: 701px) and (max-width: 899px) {
    .pg-tab-arrow {
        display: none;
    }
}
