/* Font Face Definitions */
@font-face {
  font-family: "Raleway-Regular";
  src: url(../fonts/Raleway-Regular.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Raleway-Medium";
  src: url(../fonts/Raleway-Medium.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Raleway-Bold";
  src: url(../fonts/Raleway-Bold.ttf);
  font-display: swap;
}

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
p {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}

/* Base Body Styles */
body {
  font-family: "Raleway-Regular", sans-serif;
  line-height: 1.5;
}

/* Header Section */
.top-header {
  padding: 7px 0;
}
.logo img {
  max-width: 300px;
}
.navigation ul li {
  margin: 0 25px;
}
.navigation ul li a {
  font-size: 17px;
  color: #1b1464;
}
.make-appointment a {
  background: #c2eaf8;
  color: #1b1464;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
}

/* Banner Section */
.banner-sec {
  position: relative;
}
.banner-sec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 25%;
  bottom: 0;
  background-color: #fff8f2;
}
.banner {
  position: relative;
  height: 600px;
}
.banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/round2.png) no-repeat;
  background-size: 100%;
  width: 175px;
  height: 300px;
  opacity: 0.3;
}
.banner::after {
  content: "";
  position: absolute;
  left: 25%;
  bottom: 0;
  background: url(../img/dotted.png) repeat;
  width: 150px;
  height: 130px;
  opacity: 0.4;
}
.banner-content {
  height: 100%;
}
.banner-content .content {
  max-width: 450px;
}
.banner-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100% - 100px);
  margin: 50px 0;
}
.banner-content .content h1 {
  font-size: 43px;
  line-height: 53px;
  font-family: "Raleway-Medium", sans-serif;
}
.banner-content .content p {
  font-size: 17px;
  line-height: 25px;
  padding: 15px 0 25px 0;
}
.banner-content .content a {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px 25px;
  background: #1b1464;
  display: inline-block;
  color: #fff;
  border-radius: 25px;
}
.banner-content .content a:hover {
  background: #176cc9;
}
.know-more {
  position: absolute;
  bottom: 75px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 15px 0;
  z-index: 1;
}
.know-more img {
  max-width: 90px;
  animation: floatUpDown 5s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

.services {
  padding: 100px 0;
}
.services h2 {
  font-family: "Raleway-Bold";
  font-size: 45px;
  color: #1b1464;
  text-align: center;
}
.services p {
  font-size: 17px;
  font-family: "Raleway-Medium";
  color: #1e1a46;
  text-align: center;
}
.services .block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-size: cover !important;
  height: 425px;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 15px;
  margin: 5px;
  overflow: hidden;
}
.services .block:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  border-radius: 15px;
  background: linear-gradient(
    to top,
    rgb(16 13 13 / 75%) 0,
    rgba(0, 0, 0, 0) 100%
  ) !important;
}
.services .content {
  padding: 25px;
  position: absolute;
  top: calc(100% - 175px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
.services .block h3 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 35px;
}
.services .block p {
  font-size: 17px;
  color: #fff;
  margin-bottom: 15px;
}
.services .block a img {
  max-width: 75px;
}

.services .block:hover .content {
  top: 25%;
  bottom: 0;
  right: 0;
  left: 0;
}
.services .block .ic {
  margin-bottom: 15px;
}
.services .block .ic img {
  filter: invert(1);
  max-width: 60px;
}
.home-info-img {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  height: 100%;
}
.home-info h2 {
  font-size: 45px;
  color: #1b1464;
  padding-bottom: 15px;
  font-family: "Raleway-Bold";
}
.home-info p {
  font-size: 17px;
  line-height: 25px;
  color: #555;
  padding-bottom: 15px;
  max-width: 500px;
}
.home-info .content {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 75px;
}
.why-choose {
  padding: 0 0 75px 0;
  background: #e3f0f5;
}
.why-choose .why-logo {
  display: flex;
  justify-content: center;
}
.why-choose .why-logo img {
  max-width: 350px;
  margin: auto;
}
.why-choose h2 {
  font-size: 25px;
  padding: 25px 0 0 0;
  text-align: center;
}

.why-choose .block img {
  max-width: 75px;
}
.why-choose .block {
  background: linear-gradient(
    to top,
    rgb(23 108 201 / 17%) 0,
    rgba(0, 0, 0, 0) 100%
  ) !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
  margin: 7px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.why-choose .block p {
  font-size: 19px;
  color: #555;
  margin-top: 25px;
  font-weight: 600;
}
.why-choose .choose-list {
  max-width: 1100px;
  margin: auto;
}

.testimonial-list {
  padding: 125px 0;
  background: #fafafa;
  position: relative;
}
.testimonial-list:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 100px;
  bottom: 0;
  background: url(../img/dotted.png);
  background-repeat: repeat !important;
  background-size: !important;
  width: 196px;
  height: 140px;
  opacity: 0.4;
}

.testimonial {
  max-width: 900px;
  margin: auto;
}
.testimonial .content {
  font-size: 19px;
  color: #1b1464;
  position: relative;
}
.testimonial .content p {
  position: relative;
  z-index: 1;
  padding: 75px;
}
.testimonial .content:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/quotes.png);
  width: 125px;
  height: 125px;
  background-size: 100% !important;
  background-repeat: no-repeat !important;
  opacity: 0.5;
}
.testimonial .icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}
.testimonial .icon img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}
.home-about {
  background-size: cover !important;
  background-position: center !important;
  background-image: url(../img/connect.jpg);
  min-height: 500px;
  padding: 100px 0;
}
.about-content {
  background: #fff;
  padding: 50px;
}

.home-about h2 {
  font-family: "Raleway-Bold";
  font-size: 45px;
  color: #1b1464;
  margin-bottom: 15px;
}
.home-about p {
  font-size: 17px;
  line-height: 25px;
  color: #555;
  padding-bottom: 15px;
}
.need {
  padding: 75px 0;
  background: #e0f3fa;
}
.need h3 {
  font-size: 45px;
  color: #222;
  padding-bottom: 15px;
}
.need p {
  font-size: 17px;
  line-height: 25px;
  color: #555;
  padding-bottom: 15px;
}
.need .cta a {
  font-size: 17px;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px 25px;
  background: #1b1464;
  display: inline-block;
  color: #fff;
  border-radius: 25px;
}
.need .cta p {
  padding-bottom: 0;
}
.need .cta img {
  max-width: 21px;
}

.inner-banner {
  height: 400px;
  background-color: #fff8f2;
}
.inner-banner .banner-image-wrapper {
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.about-content-sec {
  padding: 75px 0;
}
.about-content-sec p {
  font-size: 19px;
  line-height: 31px;
  text-align: center;
}
.about-content-sec p span {
  font-family: "Raleway-Bold";
}
.vision {
  background: #effbff;
  position: relative;
}
.vision:after {
  content: "";
  position: absolute;
  left: 47%;
  right: 0;
  top: 0;
  bottom: 0;
  clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
  background: #306cb4;
}
.vision-left {
  text-align: right;
}
.vision .block {
  padding: 100px;
}
.vision h2 {
  font-family: "Raleway-Bold";
  font-size: 35px;
}
.vision p {
  font-size: 19px;
  line-height: 31px;
}
.vision img {
  max-width: 75px;
  padding: 0 0 25px 0;
}
.vision .vision-block {
  position: relative;
  z-index: 9;
}
.vision-right {
  color: #fff;
}
.vision-right img {
  filter: invert(1);
}
.core-value {
  padding: 75px 0;
}
.core-value .block {
  width: 20%;
}
.core-value .block .content {
  background: linear-gradient(
    to top,
    rgb(211 206 206 / 17%) 0,
    rgba(0, 0, 0, 0) 100%
  ) !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 10px;
  min-height: 290px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  text-align: center;
  margin: 5px;
}
.core-value h2 {
  font-size: 45px;
  margin-bottom: 50px;
  font-family: "Raleway-Bold";
  text-align: center;
}
.core-value h3 {
  font-size: 19px;
  padding: 15px 0 10px 0;
  font-family: "Raleway-Bold";
}
.core-value p {
  font-size: 19px;
  line-height: 31px;
}
.core-value img {
  max-width: 60px;
}

.key-industries {
  padding: 75px 0;
  background: #effbff;
}
.key-industries h2 {
  font-size: 45px;
  margin-bottom: 50px;
  font-family: "Raleway-Bold";
  text-align: center;
}
.key-industries .block {
  margin: 10px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;
}
.key-industries .image {
  background-size: cover !important;
  background-position: center !important;
  height: 125px;
}
.key-industries p {
  font-size: 19px;
  color: #fff;
  background: #306cb4;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 25px;
  font-family: "Raleway-Bold";
}

.contact {
  padding: 100px 0 50px 0;
}
.contact .block {
  padding: 50px;
  text-align: center;
  margin: 7px;
  position: relative;
  min-height: 175px;
}
.contact .block::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(../img/cnt-pt.png);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  opacity: 0.15;
}

.contact .block h2 {
  font-size: 30px;
  color: #333;
  text-align: center;
  margin-bottom: 15px;
}
.contact .block p {
  font-size: 17px;
  line-height: 27px;
  color: #444;
  letter-spacing: 1px;
  text-align: center;
}
.contact img {
  max-width: 110px;
  margin-top: -160px;
  margin-bottom: 15px;
}
.contact h4 a {
  font-size: 25px;
  color: #555;
  margin-top: 25px;
}
.contact a {
  font-size: 21px;
  color: #444;
  letter-spacing: 1px;
  margin-top: 25px;
  display: block;
}

.hamburger-menu {
  position: fixed;
  top: 17px;
  right: 25px;
  width: 35px;
  height: 50px;
  display: none;
  z-index: 999999;
}
.hamburger-menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #333;
  border-radius: 10px;
  opacity: 1;
  left: 0;
  transition: 0.25s ease-in-out;
}

.hamburger-menu span:nth-child(1) {
  top: 3px;
}

.hamburger-menu span:nth-child(2),
.hamburger-menu span:nth-child(3) {
  top: 14px;
}

.hamburger-menu span:nth-child(4) {
  top: 25px;
}

.hamburger-menu.open span:nth-child(1) {
  top: 18px;
  width: 0;
  left: 50%;
}

.hamburger-menu.open span:nth-child(2) {
  transform: rotate(45deg);
}

.hamburger-menu.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.hamburger-menu.open span:nth-child(4) {
  top: 18px;
  width: 0;
  left: 50%;
}

.whatsapp {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 5%;
  right: 2%;
  z-index: 9999;
}
.whatsapp a {
  display: flex;
  align-items: center;
  border: 5px solid #ffff;
  border-radius: 50%;
}
.whatsapp img {
  width: 100%;
}

.wave {
  width: 60px;
  height: 60px;
  background: #fff;
  animation: sonarWave 2s linear infinite;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
}
@keyframes sonarWave {
  from {
    opacity: 0.4;
  }
  to {
    transform: scale(3);
    opacity: 0;
  }
}

.service-card {
  background: linear-gradient(145deg, #ffffff, #f3f8ff);
  border: none;
  border-radius: 20px;
  padding: 50px 25px;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}
.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b3f5c, #4e77a5);
  color: #fff;
  font-size: 2.5rem;
  box-shadow: 0 6px 15px rgba(12, 52, 98, 0.3);
}
.service-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #0c3462;
  margin-bottom: 15px;
}
.service-desc {
  font-size: 0.95rem;
  color: #5c6770;
}
.product-sec-detail {
  padding: 75px 0;
  background-color: #fff8f2;
}
.product-sec-detail h2 {
  font-family: "Raleway-Bold";
  font-size: 45px;
  color: #1b1464;
  text-align: center;
}
.product-sec-detail p {
  font-size: 17px;
  font-family: "Raleway-Medium";
  color: #1e1a46;
  text-align: center;
}

.sahar-block {
  padding: 75px 0;
  position: relative;
  background: #4a709e;
  background: 3e537a;
}

.client-tele {
  position: relative;
  overflow: hidden;
  padding: 75px 0 0 0;
}

.sahar-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url(../img/shape-100.png);
  background-size: 80%;
  background-repeat: repeat-x;
  background-position: -100% 100%; /* start fully left bottom */
  animation: moveLeftToRight 20s linear infinite;
  opacity: 0.25;
  pointer-events: none;
}

@keyframes moveLeftToRight {
  0% {
    background-position: -100% 100%;
  }
  100% {
    background-position: 0% 100%;
  }
}

.client-tele h2 {
  font-family: "Raleway-Bold";
  font-size: 50px;
  color: #fadab6;
  text-shadow: 1px 1px 1px #333;
  padding-bottom: 15px;
  text-align: center;
  margin-bottom: 50px;
  z-index: 1;
  position: relative;
}

.client-tele .marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}

.client-tele .marquee-wrapper .marquee-track {
  display: flex;
  gap: 20px;
  animation: marquee 40s linear infinite;
}

.client-tele .marquee-wrapper .marquee-track .client-block {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 160px;
  margin: 5px;
  background: #fff;
  border-radius: 15px;
}

.client-tele .marquee-wrapper .marquee-track .client-block .ic-logo {
  width: 135px;
}

.client-tele .marquee-wrapper .marquee-track .client-block .ic-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.68;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px)
    hue-rotate(0deg);
  transition: opacity 0.3s, filter 1.1s;
}

.client-tele .marquee-wrapper .marquee-track .client-block .ic-logo img:hover {
  opacity: 1;
  filter: brightness(100%) contrast(100%) saturate(100%) blur(0px)
    hue-rotate(0deg);
}

.client-tele .marquee-wrapper .marquee-track .client-block .rs img {
  filter: brightness(50%) contrast(50%) saturate(0%) blur(0px) hue-rotate(0deg);
}

.client-tele .clients img {
  transition: all 0.1s ease-in-out;
}

/* Marquee animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.sahar-text {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scrolling-track {
  display: flex;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}

.sahar-text h2 {
  margin: 0 45px;
  font-size: 100px;
  font-weight: 700;
  font-family: "Fredoka", sans-serif;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  border-radius: 12px;
  opacity: 0.05;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.about-us {
  padding: 75px 0;
}
.about-image {
  position: relative;
  background-image: url(../img/about-image.png);
  background-size: cover !important;
  background-position: center !important;
  height: 500px;
  border-radius: 50% 50% 0 0;
  width: 450px;
  margin: auto;
  animation: float 3s ease-in-out infinite;
}

/* Decorative elements moving top to bottom */
.about-image::before,
.about-image::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 160px;
  background: linear-gradient(to bottom, #f99a2c 0%, #4a709e 100%);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  opacity: 0.9;
  animation: moveVertical 2s ease-in-out infinite alternate;
}

.about-image::before {
  bottom: 25px;
  left: -75px;
}

.about-image::after {
  top: 35%;
  right: -72px;
}

/* Keyframes */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes moveVertical {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(30px);
  }
}

.about-us .content {
  padding: 0 50px;
}
.about-us .content h2 {
  font-family: "Raleway-Bold";
  font-size: 50px;
  color: #fadab6;
  text-shadow: 1px 1px 1px #333;
  padding-bottom: 15px;
}
.about-us .content p {
  font-size: 17px;
  color: #fff;
  line-height: 25px;
  padding-bottom: 15px;
}
.about-us .content a {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  padding: 10px 25px;
  background: #ffc37d;
  display: inline-block;
  color: #222;
  box-shadow: 1px 1px 1px #333;
  border-radius: 25px;
}

.project-idea {
  position: relative;
  z-index: 2;
}
.project-idea h3 {
  font-size: 75px;
  line-height: 90px;
  color: #f2f2f2;
  margin-bottom: 50px;
}

.get-a-enquiry .btn {
  display: inline-block;
  color: #ffffff;
  padding: 32px;
  position: relative;
  letter-spacing: 1px;
}
.btn__circle,
.btn__text,
.btn__white-circle {
  position: absolute;
}
.btn__circle {
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 100%;
  width: 100%;
  box-shadow: 0 0 1px 1px #fff;
  transition: 0.3s linear;
}
.btn__white-circle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 56px;
  height: 56px;
  border-radius: 100%;
  background: #ffffff;
  display: flex;
  transition: 0.3s ease-in-out;
}
.btn__white-circle svg {
  width: 24px;
  height: 24px;
  margin: auto;
}
.btn__text {
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  z-index: 2;
  padding: 24px 8px;
  transition: 0.3s linear;
  font-size: 17px;
}
.get-a-enquiry .btn:hover .btn__circle {
  transform: scale(0);
}
.get-a-enquiry .btn:hover .btn__white-circle {
  transform: translate(-50%, -50%) scale(1);
}
.get-a-enquiry .btn:hover .btn__text {
  transform: translate(40px, -50%);
}
footer {
  background-color: #3c567e;
}

.top-footer {
  padding: 75px 0 50px 0;
  border-bottom: 1px solid #6c4410;
}
.f-logo {
  margin-bottom: 15px;
}

.f-logo img {
  max-width: 90%;
}
.top-footer p {
  font-size: 13px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: #fff;
}
.top-footer a {
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  color: #fff;
}
.footer-p {
  font-size: 15px !important;
}
.top-footer .info {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.top-footer .info .ic {
  padding-right: 15px;
}

footer h2 {
  font-size: 19px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}
.f-nav li {
  margin-bottom: 5px;
}
.f-nav li a {
  font-size: 14px;
  color: #fff;
}
.info .ic img {
  filter: invert(1);
}

footer .map {
  margin-top: 10px;
  display: block;
}
footer .map img {
  max-width: 150px;
}
.footer-bottom {
  padding: 25px 0;
}
.footer-bottom p,
.footer-bottom h3,
.footer-bottom a {
  color: #fff;

  font-size: 14px;
}
.f-links .world {
  background: #8e1b1d;
  padding: 10px 25px;
  font-size: 17px;
  color: #f68b24;
  margin: 15px 0;
  display: inline-block;
}
.f-social li a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  background: #fadab6;
  border-radius: 50%;
}
.f-social li img {
  filter: invert(0.2);
  max-width: 17px;
}
footer .ic img {
  max-width: 17px;
}
.sahara-project {
  background-color: #000;
  padding: 50px 0;
  background: url(../img/cnt.png);
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.fade-carousel {
  height: 100%;
  padding: 50px 0;
}
.fade-carousel .item {
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fade-carousel .owl-dots .owl-dot {
  background-color: #dcdcdc; /* Inactive color */
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 5px;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 2px #dcdcdc, inset 0 0 0 2px white;
}

/* Hover: simulate border using box-shadow */
.fade-carousel .owl-dots .owl-dot:hover {
  box-shadow: 0 0 0 2px #0c3462, inset 0 0 0 2px white;
}

/* Active dot: orange fill with dark blue border and inner gap */
.fade-carousel .owl-dots .owl-dot.active {
  background-color: #ed8b23;
  box-shadow: 0 0 0 2px #0c3462, inset 0 0 0 2px white;
}
.fade-carousel.owl-theme .owl-dots .owl-dot span {
  display: none;
}

.phrase-wrapper {
  text-align: center;
}

.phrase-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #fadab6;
  font-size: 2.5rem;
  gap: 0.3rem;
}

.scrolling-wrapper {
  height: 3rem;
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.scrolling-word {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease-in-out;
}

.scrolling-word span {
  height: 3rem;
  line-height: 3rem;
  color: #d3e6fb;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .phrase-line {
    font-size: 1.8rem;
  }
  .scrolling-word span {
    height: 2.5rem;
    line-height: 2.5rem;
  }
  .scrolling-wrapper {
    height: 2.5rem;
  }
}

@media (max-width: 480px) {
  .phrase-line {
    font-size: 1.4rem;
  }
  .scrolling-word span {
    height: 2rem;
    line-height: 2rem;
  }
  .scrolling-wrapper {
    height: 2rem;
  }
}
.inner-banner .banner-content {
  position: relative;
}
.inner-banner .banner-content::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  transform: translate(50%, -50%); /* Center on top-right corner */
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-bottom: 25px solid #cbcbcb; /* Triangle pointing up */
  transform: rotate(270deg);
}
.brand {
  padding: 75px 0;
  text-align: center;
}
.brand h2 {
  font-family: "Raleway-Bold";
  font-size: 40px;
  text-align: center;
  margin-bottom: 25px;
}

.brand-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.brand-img .moving-wrapper {
  display: flex;
  width: calc(100%); /* For two images side by side */
  animation: scrollLeftRight 75s linear infinite;
}

.brand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

@keyframes scrollLeftRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

.project-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.project-image {
  width: 100%;
  height: 275px;
  object-fit: cover;
  display: block;
}

.project-body {
  padding: 20px;
  text-align: center;
}

.project-body h5 {
  font-weight: 600;
  color: #343a40;
}

.project-body p {
  color: #6c757d;
  font-size: 0.95rem;
}

.btn-custom {
  background-color: #0d6efd;
  color: #fff;
  border: none;
  width: 100%;
  transition: background-color 0.2s;
}

.btn-custom:hover {
  background-color: #0b5ed7;
}
.project-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 15px;
}
.project-btn img {
  max-width: 50px;
}
.sahar-product-sec {
  background-color: #f1f1f1;
}
.product-sec {
  padding: 75px 0;
}
.product-sec h3 {
  font-size: 21px;
  color: #1b1464;
  text-align: center;
  padding: 15px 0;
}

.product-sec .block {
  margin: 10px;
}

.download-btn {
  text-align: center;
  padding: 10px 25px;
  background: #fadab6;
  display: block;
  color: #000;
  box-shadow: 1px 1px 1px #333;
  border-radius: 25px;
  margin: 10px 0;
  max-width: 230px;
}
.pdf-buttons a {
  color: #000;
}

.download-btn:hover {
  background-color: #fadfc1;
  transform: translateY(-2px);
}

.download-btn i {
  margin-right: 8px;
  font-size: 19px;
  color: #222;
  transition: color 0.3s ease;
}
