* {
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}
:root {
  --primary: #4f17a8; /* purple  */
  --accent: #05c0e1; /* cyan    */
  --orange: #ff610f; /* orange  */
  --bg-dark: #1b1134;
  --white: #ffffff;
}
body {
  font-family: "Aeonik", Arial, sans-serif;
  background-color: #f8f5f0;
  /* color: white; */
  margin: 0;
  padding: 0;
}
.w-full {
  width: 100%;
}
/* Start Navbar */
.navbar {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
}
.logo {
  width: 150px;
}
/* End Navbar */
/*  */
.menu-mobile {
  display: none;
  height: 100vb;
  background-color: white;
}
@media (min-width: 1025px) {
  .menu-mobile {
    display: block;
  }
}
.menu-mobile ul {
  padding: 0;
}
@media (max-width: 1024px) {
  .menu-mobile {
    border-top: 1px solid #ccc;
  }
}
.tab-menu-mobile li {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #ccc;
  margin: 5px 0;
  cursor: pointer;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .menu-mobile ul li {
    margin-top: -5px;
  }
}
.title-menu-mobile {
  color: #200f3b;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}
.menu-mobile svg {
  color: #200f3b;
}
/*  */
/* Start Navbar-two styling */
.custom-navbar {
  display: flex;
  background-color: #f2edf8;
  align-items: center;
}

.custom-nav-menu {
  margin: 0 15px;
  display: flex;
}

.custom-nav-item {
  position: relative;
  padding: 15px;
  text-align: center;
  border-radius: 3px;
}
@media (max-width: 1024px) {
  .custom-nav-menu {
    display: none;
  }
}
.custom-nav-link {
  color: #200f3b;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

.custom-nav-item:hover {
  background-color: #4f17a8;
}
.custom-nav-item:hover .custom-nav-link {
  color: white;
}
/* End Navbar-two styling */
/* Start Landing */
.landing {
  background-image: url(../imgs/homepage-hero-desktop.webp);
  background-size: cover;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  border-top: 4px solid #4f17a8;
  margin-bottom: 50px;
  align-items: center;
  color: white;
}
.landing .image {
  display: grid;
  grid-column: span 6;
}
@media (max-width: 1024px) {
  .landing .image {
    grid-column: span 5;
  }
}
.landing img {
  max-width: 100%;
  height: auto;
  margin: 10px 0 35px 0;
}
.landing-content {
  grid-column: 7/ 11;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .landing-content {
    grid-column: 1 / -1;
    margin-top: 20px;
    margin-left: 20px;
  }
}
.landing-content h1 {
  font-weight: 500;
  font-size: 4.5rem;
  line-height: 4.5rem;
  color: white;
  margin-bottom: 16px;
}
.rtb-content p {
  font-size: 1.5rem;
  line-height: 1.875rem;
  color: white;
  margin-bottom: 30px;
}
.landing a {
  background-color: white;
  color: #200f3b;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
  transition: background-color 0.5s;
}
.landing a:hover {
  background-color: #796f8a;
}

.landing-content h1 {
  font-size: 2rem;
  line-height: 2.5rem;
}

.rtb-content p {
  font-size: 1.25rem;
  line-height: 1.5rem;
}
/* End Landing */
/* Start Become */
.become {
  background-color: #f8f5f0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .become {
    text-align: left;
  }
}
.become-content {
  background-color: #f8f5f0;
  grid-column: 3 / 11;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.become .left {
  margin-top: 2.5re;
  grid-column: span 2;
}

.become .left h1 {
  font-weight: 600;
  font-size: 3.625rem;
  color: #200f3b;
}

.become .right {
  grid-column: 4 / 7;
  margin-top: 50px;
  color: #6b607c;
}

.become-content .right p {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.875rem;
  color: #615674;
}

.a-become {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid #333;
  background-color: #fff;
  color: #615674;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.5s;
}

.a-become:hover {
  background-color: #c1b9cd;
}

@media (max-width: 1024px) {
  .become {
    display: flex;
    flex-direction: column;
  }
  .become-content {
    display: flex;
    flex-direction: column;
  }

  .become .left,
  .become .right {
    margin: 0;
    padding: 1.25rem;
  }

  .become .left h1 {
    font-size: 2.5rem;
  }

  .become-content .right p {
    font-size: 1.2rem;
  }
}

/* End Become */
/* Start certifications */
.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  padding: 20px;
  max-width: 81.25rem;
  margin: auto;
}

.box {
  border-radius: 15px;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
}
/* Start hover on box */
.box:hover img {
  transform: scale(1.1);
  transition: 0.6s;
}
.box-1:hover button {
  background-color: #00799f;
  color: white;
}
.box-2:hover button {
  background-color: #4f17a9;
  color: white;
}
.box-3:hover button {
  background-color: #5d5171;
  color: white;
}
/* End hover on box */

.box .head-of {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.box .head-of .tag {
  padding: 5px 15px;
  border: 2px solid white;
  border-radius: 25px;
  font-size: 0.9em;
  font-weight: 600;
}
.box-3 .head-of .tag {
  padding: 5px 15px;
  border: 1px solid #200f3b;
  border-radius: 25px;
  font-size: 0.9em;
  font-weight: 600;
}

.box .head-of img {
  width: 8rem;
}
.box-1 h3 {
  color: #05c0e1;
}
.box-2 h3 {
  color: #b565ff;
}

.box h3 {
  font-size: 1.5rem;
  font-weight: 800;
}

.box h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

.box > p:first-of-type {
  margin: 10px 0 5px;
  font-size: 0.875rem;
  font-weight: 800;
}

.box > p:last-of-type {
  margin-bottom: 1.563rem;
}
.box a {
  transition: 1s background ease;
}

.box button {
  align-self: flex-start;
  padding: 10px 20px;
  background-color: white;
  color: #200f3b;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Box-specific styles */
.box-1 {
  background: linear-gradient(to bottom, #04101f, #033448);
}

.box-2 {
  background: linear-gradient(to bottom, #14062a, #2b0d59);
}

.box-3 {
  background: linear-gradient(to bottom, #ffffff, #ffecd7);
  color: #200f3b;
}

.box-3 button {
  background-color: #200f3b;
  color: white;
}

.box-3 button:hover {
  background-color: #5d5171;
}
/* End certifications */
/* Start Tabs */
.big-tabs {
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  background-color: #f8f5f0;
}
.section-tabs {
  grid-column: 3 / 11;
}
.tabs-head h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #200f3b;
  text-align: center;
}
.tabs-head p {
  font-size: 20px;
  line-height: 1.6;
  color: #5a4b81;
  text-align: center;
  font-weight: 600;
}
/* End Tabs */
/* Start Tab ul */
.tabs-tab {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 1024px) {
  .tabs-tab {
    display: none;
  }
}
.tabs {
  grid-column: 3 / 12;
  display: flex;
}
.tabs-tab li {
  padding: 20px;
  background-color: transparent;
  border-left: 1px solid rgba(0, 0, 0, 0.103);
  cursor: pointer;
  transition: 0.3s;
  margin-left: 2px;
  font-weight: bold;
  color: #878785;
  width: calc(75% / 4);
}
.tabs-tab li.active {
  background: linear-gradient(to bottom, #f8f5f0, #ffffff);
  border-left: 2px solid #1f0e34;
  color: #200f3b;
}
/* End Tab ul */
/* Start Tab ul in Mobile */
.tabs-tab-mobile {
  margin: 50px 0;
  display: none;
}
@media (max-width: 1024px) {
  .tabs-tab-mobile {
    display: block;
  }
}
.tabs-tab-mobile ul {
  padding: 0;
}
.tabs-tab-mobile li {
  display: flex;
  align-items: center;
  padding: 25px;
  border-bottom: 1px solid #ccc;
  margin: 5px 0;
  cursor: pointer;
  justify-content: space-between;
}
.tabs-tab-mobile li.active {
  display: flex;
  align-items: center;
  padding: 25px;
  margin: 5px 0;
  cursor: pointer;
  justify-content: space-between;
}
.tabs-tab-mobile li svg {
  color: #200f3b;
}
.title-tab-mobile {
  font-weight: 600;
  color: #200f3b;
  font-size: 1.125rem;
}
.tab-menu-mobile li i {
  color: #200f3b;
}
/* End Tab ul in Mobile */
/* Start Tabs Content */
.tabs-content {
  background: linear-gradient(to bottom, white, #f8f5f0);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .tabs-content {
    display: none;
  }
}
.tabs-content > div:not(:first-child) {
  display: none;
}
.tabs-content .practical,
.tabs-content .essential,
.tabs-content .agile {
  margin-top: 50px;
  grid-column: 3 / 11;
  display: flex;
  gap: 10px;
}
.tabs-content .left-tab-content {
  background-image: url(../images/homepage-hero-desktop.webp);
  background-size: cover;
  background-position: center;
  border: 1px solid #200f3b;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: fit-content;
  justify-content: space-between;
  max-width: 900px;
  min-height: 400px;
}
.tabs-content .top-content {
  display: flex;
  flex-direction: column;
  border: 1px solid #200f3b;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header-right-tab {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #1f0e34;
  color: #1f0e34;
  border-radius: 15px;
  padding: 5px 10px;
  font-size: 12px;
  margin-bottom: 20px;
  width: 85px;
  text-align: center;
}
.title-right-tab {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1f0e34;
}
.text-right-tab {
  font-size: 16px;
  line-height: 1.5;
  color: #200f3b;
  margin-bottom: 15px;
}
.button-right-tab {
  display: inline-block;
  padding: 14px 20px;
  background-color: #1f0e34;
  color: #fff;
  border-radius: 20px;
  font-size: 15px;
  width: 115px;
  margin-bottom: 30px;
}
.button-right-tab:hover {
  background-color: #5d5171;
}
.header-tab {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #1f0e34;
  color: #200f3b;
  border-radius: 15px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  width: 90px;
  text-align: center;
}
@media (max-width: 1024px) {
  .header-tab {
    margin: 0;
  }
}
.head-of .img {
  width: 15rem;
}
@media (max-width: 1024px) {
  .head-of .img {
    margin: 0;
  }
}
.title-tab {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1f0e34;
}
.text-tab {
  font-size: 16px;
  line-height: 1.5;
  color: #200f3b;
  margin-bottom: 15px;
}
.button-tab {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1f0e34;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  width: 142px;
  transition: 1s background ease;
}
.button-tab:hover {
  background-color: #5d5171;
}
.a-right-content {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  margin-left: 20px;
}
.bottom-content span:first-child {
  margin-left: 20px;
  margin-top: 30px;
  font-size: 1.25rem;
}
.a-right-content a {
  font-size: 1.563rem;
}
.a-right-content a:hover {
  text-decoration: underline;
}
.a-right-content svg {
  color: #200f3b;
}
.bottom-content span:last-child {
  font-size: 40px;
  font-weight: 700;
  color: #1f0e34;
}
hr {
  color: rgba(0, 0, 0, 0.103);
  margin-top: 20px;
}
/* End Tabs Content */
/* Start CSS For Tabs Content Mobile */
.practicalm,
.essentialm,
.agilem {
  padding: 25px;
  display: block;
  margin-top: -5px;
}
.left-tab-content {
  background-image: url(../images/pdp-cards_desktop-lg_specialization.png);
  background-size: cover;
  background-position: center;
  border: 1px solid #200f3b;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 372px;
  min-height: 480px;
}
@media (max-width: 1024px) {
  .left-tab-content {
    display: grid;
    gap: 20px;
  }
}
.tabs-tab-mobile li.active {
  background-color: white;
  border: none;
  margin-top: -5px;
}
.tabs-tab-mobile li.active svg.plus {
  display: none;
}
.mins {
  display: none;
}
.tabs-tab-mobile li.active svg.mins {
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.tabs-tab-mobile li.active svg.mins.rotate {
  transform: rotate(180deg);
}
.practicalm,
.essentialm,
.agilem {
  display: none;
}
.tabs-tab-mobile li.active + .practicalm,
.tabs-tab-mobile li.active + .essentialm,
.tabs-tab-mobile li.active + .agilem {
  display: block;
  background: linear-gradient(to bottom, #ffffff, #f7f7f7);
}
/* Start Section Members */
.big-members {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  color: white;
}
@media (max-width: 1024px) {
  .big-members {
    display: grid;
  }
}
.containers-content {
  grid-column: 2 / 12;
  background-image: url("../imgs/members.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  display: grid;
  padding: 100px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 30px;
}
@media (max-width: 1024px) {
  .containers-content {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    background-image: url(../imgs/membership_pill_mobile_18770a2ddae9111d75c6.png);
    background-size: cover;
    background-position: center;
  }
  .mem-right {
    margin: auto;
  }
}
.mem-right {
  text-align: center;
}

.mem-right .services-list li {
  padding: 10px;
  font-size: 1rem;
  font-weight: bolder;
  text-align: left;
}
.mem-head {
  display: flex;
  align-items: center;
}
.mem-left .mem-head svg {
  margin-right: 7px;
  margin-top: 5px;
}

.mem-left h2 {
  font-size: 1.125em;
  margin-bottom: 10px;
}
.mem-left p,
.mem-right p {
  font-size: 1.188em;
}
.mem-left a {
  display: flex;
  align-items: center;
  background: white;
  color: #6a2c91;
  border: none;
  border-radius: 30px;
  padding: 15px 20px;
  width: 163px;
  margin-top: 10px;
  transition: background-color 0.5s;
}
.mem-left a:hover {
  background: linear-gradient(to right, #a76bcf, #f5b6b6);
}
.mem-left a:focus {
  background: linear-gradient(to right, #a76bcf, #f5b6b6);
}
.mem-a svg {
  margin-right: 7px;
  width: 24px;
  height: 24px;
}

.mem-a span {
  background: linear-gradient(to right, #ff0000, #0000ff);
  -webkit-background-clip: text;
  color: transparent;
}
/* End Section Members */
/* Start community Section */
.big-community {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media (max-width: 1024px) {
  .big-community {
    display: flex;
    flex-direction: column;
    margin-left: 50px;
  }
}
.community {
  grid-template-columns: 1fr 1fr;
  grid-column: 3 / 11;
  display: grid;
  gap: 60px;
}
@media (max-width: 1024px) {
  .community {
    display: flex;
    flex-direction: column;
    gap: 0px;
  }
}
.community h1 {
  font-size: 4.25rem;
  color: #200f3b;
}
@media (max-width: 1024px) {
  .community h1 {
    font-size: 2.5rem;
  }
}
.community p {
  font-size: 1.875rem;
  color: #615674;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .community p {
    font-size: 1.25rem;
  }
}
/* Start Chapters */
.chapters {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin-bottom: 50px;
  color: white;
}
@media (max-width: 1024px) {
  .chapters {
    display: block;
  }
}
@media (max-width: 1024px) {
  .chapters-content {
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: auto;
  }
}
.chapters-content {
  grid-column: 3 / 11;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15%;
  background-image: url(../imgs/chapter-promo-background.webp);
  background-size: cover;
  background-position: center;
  padding: 50px 50px 0 50px;
  border-radius: 25px;
  align-items: center;
}
@media (max-width: 1024px) {
  .chapters-content {
    display: flex;
    flex-direction: column;
  }
}
.left-chapters h1 {
  font-size: 2.813rem;
}
.chapters-content .right-chapters p {
  font-size: 1.25rem;
}
.chapters-content .right-chapters a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  border: 2px solid #333;
  background-color: #fff;
  color: #615674;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  width: 195px;
  justify-content: space-between;
  margin-bottom: 30px;
  transition: background-color 0.5s;
}
.chapters-content .right-chapters a:hover {
  background-color: #c1b9cd;
}
/* End Chapters */
/* Start About Section */
.big-about {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  background-color: #f8f5f0;
}
.about {
  grid-column: 3 / 11;
}
@media (max-width: 1024px) {
  .about {
    grid-column: span 12;
  }
}

.about .section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-areas: "spana spana . pa pa pa pa . . imga imga imga";
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .about .section {
    display: flex;
    flex-direction: column;
    margin: 0 30px;
    margin-bottom: 35px;
  }
}
.about .section:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.about .section span {
  font-size: 1.875rem;
  color: #200f3b;
  font-weight: 600;
  margin-top: 20px;
  grid-area: spana;
}

.about .section p {
  color: #200f3b;
  line-height: 1.6;
  font-size: 20px;
  grid-area: pa;
}
.section img {
  border-radius: 10px;
  grid-area: imga;
}
@media (max-width: 1024px) {
  .section img {
    order: -1;
  }
}
.about .section .learn-more {
  display: flex;
  margin-top: 15px;
  color: #200f3b;
  align-items: center;
  font-weight: 600;
}
.learn-more svg {
  margin-top: -4px;
}
.about .section .learn-more:hover {
  text-decoration: underline;
}
.a-center {
  text-align: right;
  margin-top: -25px;
  width: 33%;
}
.a-center a {
  grid-column: span 12;
}
.big-tiltes {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  color: red;
  background-color: #e8e5dd;
}
.tiltes-content {
  grid-column: 3 / 11;
  display: grid;
  text-align: center;
}
.tiltes-content h1 {
  font-size: 3.75rem;
  color: #200f3b;
}
@media (max-width: 1024px) {
  .tiltes-content h1 {
    font-size: 2.375rem;
  }
}
.tiltes-content p {
  font-size: 3.75rem;
  font-weight: 600;
  margin-top: 0;
  color: #200f3b;
}
@media (max-width: 1024px) {
  .tiltes-content p {
    font-size: 2.375rem;
  }
}
.tiltes-content a {
  display: inline-block;
  padding: 23px 30px;
  background-color: #231942;
  color: #ffffff;
  font-size: 1.563rem;
  font-weight: bold;
  border-radius: 50px;
  text-align: center;
  margin: auto;
  width: 250px;
  font-weight: 700;
  margin-bottom: 50px;
  transition: background-color 0.5s;
}
.tiltes-content a:hover {
  background-color: #796f8a;
}
/* End About Section */
.site-footer{
  background:var(--bg-dark,#1B1134);
  color:#fff;
  padding:3rem 1rem 1rem;
  text-align:center;
  font-size:.95rem;
}
.footer-grid{
  display:grid;
  gap:2rem;
  max-width:1180px;
  margin:0 auto 2rem;
}
@media(min-width:768px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
    text-align:left;
  }
}
.footer-col h4{
  color:var(--accent,#05C0E1);
  margin-bottom:.75rem;
  font-size:1.125rem;
}
.footer-col ul{
  list-style:none;
  padding:0; margin:0;
}
.footer-col li{
  margin-bottom:.5rem;
}
.footer-col a{
  color:rgba(255,255,255,.85);
  text-decoration:none;
  transition:.3s;
}
.footer-col a:hover{
  color:var(--orange,#FF610F);
}

/* socials icons */
.socials{
  margin-top:.5rem;
  display:flex;
  gap:.75rem;
}
.socials a{
  width:38px; height:38px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.3);
  border-radius:50%;
  color:#fff;
  transition:.3s;
}
.socials a:hover{
  background:var(--orange,#FF610F);
  border-color:transparent;
  transform:translateY(-3px);
}

/* bottom row */
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.2);
  padding-top:1rem;
  display:flex;
  flex-direction:column;
  gap:.5rem;
  align-items:center;
}
@media(min-width:600px){
  .footer-bottom{
    flex-direction:row;
    justify-content:space-between;
  }
}
.designer a{
  color:var(--accent,#05C0E1);
  text-decoration:none;
}
.designer a:hover{
  color:var(--orange,#FF610F);
  text-decoration:underline;
}

/* ===== Responsive and Interaction Enhancements (2025‑07‑02) ===== */

/* Navbar menu icons visibility */
.navbar .menu-icon,
.navbar .x-icon {
  display: none;
}

@media (max-width: 1024px) {
  .navbar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .div-logo {
    text-align: center;
  }
  .navbar .menu-icon {
    font-size: 26px;
    color: #4f17a8;
    cursor: pointer;
  }
  .navbar .x-icon {
    font-size: 26px;
    color: #4f17a8;
    cursor: pointer;
  }
  .custom-nav-menu {
    display: none;
  }
}

/* Mobile side drawer */
.menu-mobile.open {
  right: 0;
}

/* Hover interactions */
.custom-nav-item,
.a-become,
.button-tab,
.box button {
  transition: transform 0.25s ease, background-color 0.25s ease,
    color 0.25s ease;
}
.custom-nav-item:hover,
.a-become:hover,
.button-tab:hover,
.box button:hover {
  transform: translateY(-3px) scale(1.03);
}

/* Services list bullet animation */
.services-list li {
  position: relative;
  transition: color 0.25s ease;
}
.services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #05c0e1;
  border-radius: 50%;
  transform: translate(-150%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.services-list li:hover {
  color: #05c0e1;
}
.services-list li:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* Testimonial / box hover shadow */
.box {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

/* Menu icon rotation */
.menu-icon.animate {
  transform: rotate(90deg);
  transition: transform 0.35s ease;
}
.x-icon {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.x-icon.show {
  opacity: 1;
  pointer-events: auto;
}

/* Adaptive heading sizing */
h1 {
  font-size: clamp(2rem, 5vw+1rem, 4.5rem);
}

/* Landing section background position */
.landing {
  background-position: center top;
  min-height: 60vh;
}

/* Generic responsive images */
.section img,
img.responsive {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

/* Start Contact Us */
/* ====== Colour Palette (matches site) ====== */


/* ==== Layout ==== */
.contact-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 6rem 1.25rem 4rem;
  overflow: hidden;
}

.container {
  max-width: 1180px;
  margin-inline: auto;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}
.section-title span {
  color: var(--orange);
}

.contact-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ==== Info Panel ==== */
.contact-info .tagline {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.45;
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.contact-info li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.contact-info i {
  color: var(--orange);
}
.contact-info i:hover {
  color: white;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}
.contact-info a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* socials */
.socials {
  display: flex;
  gap: 0.75rem;
}
.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: 0.3s;
}
.socials a:hover {
  transform: translateY(-4px) scale(1.1);
  background: var(--orange);
  border-color: transparent;
  color: white;
}

/* ==== Form ==== */
.contact-form .field {
  position: relative;
  margin-bottom: 1.5rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 1rem 0.75rem;
  font: inherit;
  color: var(--white);
  transition: border-color 0.25s, background 0.25s;
}
.contact-form label {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.65); /* أبيض خفيف */
  pointer-events: none;
  transition: all 0.25s;
  background: transparent;
}

/* Floating label on focus or not-empty */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--orange);
}
.contact-form input:focus + label,
.contact-form textarea:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: 0;
  transform: translateY(-50%) scale(0.85);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 0 0.25rem;
  border-radius: 4px;
  color: var(--orange); /* لون برتقالي متناسق */
}

/* Submit Button */
.btn-gradient {
  --grad: linear-gradient(135deg, var(--orange), var(--accent));
  padding: 0.85rem 2.5rem;
  font-weight: 600;
  border: none;
  border-radius: 40px;
  color: var(--white);
  background: var(--grad);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.btn-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  filter: blur(12px);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-gradient:hover {
  transform: translateY(-4px);
}
.btn-gradient:hover::before {
  opacity: 0.65;
}

/* ==== Decorative Wave ==== */
.wave {
  position: absolute;
  inset: auto 0 100% 0;
  height: 120px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320" preserveAspectRatio="none"><path fill="%23ffffff22" d="M0,32L48,48C96,64,192,96,288,117.3C384,139,480,149,576,160C672,171,768,181,864,160C960,139,1056,85,1152,64C1248,43,1344,53,1392,58.7L1440,64L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>')
    no-repeat top center / cover;
  transform: rotate(180deg) translateY(-1px);
}

/* ==== Reveal-on-scroll (simple) ==== */
[data-anim] {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease-out;
}
[data-anim].show {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
/* End Contact Us */

.menu-icon.show, .x-icon.show { display: block; }
.menu-mobile.open { display: block; }
.menu-mobile { display: none; }
.menu-mobile {
  position: absolute;
  top: 86px;
  right: 100%;
  width: 100%;
  height: 100vh;
  background: white;
  transform: translateX(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  opacity: 1;
  z-index: 999;
}

.menu-mobile.open {
  transform: translateX(0);
  opacity: 1;
}

.menu-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-mobile li {
  margin: 20px 0;
}

.menu-mobile a {
  display: block;
  padding: 12px;
  font-size: 1.25rem;
  color: #200f3b;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.menu-mobile a:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  transform: translateX(8px);
}

/* أيقونة القائمة */
.menu-toggle-icon {
  font-size: 28px;
  color: var(--primary);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle-icon.rotate {
  transform: rotate(90deg);
}
.menu-icon, .x-icon {
  font-size: 28px;
  color: var(--primary);
  cursor: pointer;
  display: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-icon.show, .x-icon.show {
  display: block;
}

.menu-mobile {
  position: absolute;
  top: 86px;
  right: 100%;
  width: 100%;
  height: 100vh;
  background: white;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  z-index: 999;
}

.menu-mobile.open {
  transform: translateX(0);
}

.menu-mobile a:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  transform: translateX(8px);
}