@import url(bootstrap.min.css);
@import url(animate.css);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css);
@import url(swiper-bundle.min.css);
@import url(jquery.fancybox.min.css);
@import url(fonts.css);
/* 
* Custom CSS for Raseen Website
* A pixel-perfect recreation of https://raseen.sa/
*/

/* Reset Styles */
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

a:hover {
  text-decoration: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

a:focus {
  text-decoration: none;
  /* color: inherit; */
}

button,
button:hover {
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

section,
footer {
  /* overflow: hidden; */
  position: relative;
}

p {
  color: #333;
  line-height: 1.8;
}

ul {
  padding: 0;
  margin: 0;
  display: block;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

li {
  display: block;
  list-style: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

iframe {
  width: 100%;
  height: 100%;
}

.padding {
  padding: 0 !important;
}

img {
  max-width: 100%;
}

input,
button,
input:focus,
button:focus,
input:active,
button:active,
button:hover,
textarea:active,
textarea:focus,
select,
select:active,
select:focus {
  outline: none !important;
}

textarea {
  resize: none;
}

main {
  overflow: hidden;
  /* position: relative; */
  /* min-height: 100vh; */
}

.owl-carousel {
  direction: ltr;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
}

/* Root Styles */
:root {
  --primary-color: #222;
  --secondary-color: #222;
  --accent-color: #000000;
  --dark-color: #484949;
  --light-color: #ffffff;
  --gray-color: #bebebe;
  --color-site: #000000;
  --color-site2: #01355a;
  --gradient: linear-gradient(
    50deg,
    var(--secondary-color),
    var(--primary-color) 70%
  );
}

/* General Styles */

body {
  padding: 0;
  margin: 0;
  font-family: "A2 Jannat LT", sans-serif;
  color: var(--dark-color);
  direction: rtl;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

.section-title {
  margin-bottom: 2rem;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title h2:after {
  content: "";
  position: absolute;
  bottom: -25px;
  right:0;
  left: auto;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
}
.section-title h2.page:after {
  right: 0;
  bottom: -25px;
  left: auto;
  transform: none;
}
/* Header Styles - Matching raseen.sa exactly */
.site-header {
  background: transparent;
  
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
}
.site-header.page, .site-header.sticky{
background: var(--light-color);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  min-height: 80px;
}

/* Logo Section */
.logo-section {
  flex-shrink: 0;
}

.site-logo img {
  height: 85px;
  width: auto;
  transition: all 0.3s ease;
}

.site-header.page .site-logo img, .site-header.sticky .site-logo img {
  filter: brightness(0);
}

.site-header.sticky .site-logo img{
  height: 60px;
}
.site-header.sticky .header-content{
  padding: 5px 0;
}


/* Main Navigation */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2rem;
}

.main-menu li {
  position: relative;
}

.main-menu > li > a {
  color: var(--light-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 10px 0;
  transition: color 0.3s ease;
  position: relative;
}

.site-header.sticky .main-menu > li > a, 
.site-header.page .main-menu > li > a,
.main-navigation.active .main-menu > li > a{
color: #333;
}



.main-menu > li > a:hover,
.main-menu > li.current-menu-item > a {
  color: #ccc;
}

.site-header.sticky  .main-menu > li > a:hover,
.site-header.sticky  .main-menu > li.current-menu-item, > a
.site-header.page  .main-menu > li > a:hover,
.site-header.page  .main-menu > li.current-menu-item > a,
.main-navigation.active .main-menu > li.current-menu-item > a{
  color: #000000;
}

.main-menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  height: 2px;
  width: 0;
  background: #ccc;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.site-header.sticky .main-menu > li > a::after,
.site-header.page .main-menu > li > a::after,
.main-navigation.active .main-menu > li > a::after{
background: #000000;
}

.main-menu > li > a:hover::after,
.main-menu > li.current-menu-item > a::after {
  width: 70%;
}

/* Dropdown Menu */
.menu-item-has-children {
  position: relative;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
  margin-top: 10px;
}

.sub-menu li {
  margin: 0;
}

.sub-menu li a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease;
}

.sub-menu li a:hover {
  background: #f8f9fa;
  color: #000000;
  padding-right: 25px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

/* Language Switcher */
.language-switcher .lang-btn {
  background: #f8f9fa;
  color: #333;
  padding: 8px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.language-switcher .lang-btn:hover {
  background: var(--color-site);
  color: #fff;
}

/* Contact Actions */
.contact-actions {
  display: flex;
  gap: 10px;
}

.phone-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.phone-btn {
  background: #007bff;
  color: #fff;
}

.phone-btn:hover {
  background: #0056b3;
  color: #fff;
  transform: translateY(-2px);
}

.whatsapp-btn {
  background: var(--color-site);
  padding: 10px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-btn:hover {
  background: #444;
  color: #fff;
  transform: translateY(-2px);
}

.whatsapp-btnqw::before {
  content: "\f232";
  font-family: "FontAwesome";
  position: absolute;
  font-size: 21px;
  width: 45px;
  height: 100%;
  background: #1aa37f;
  bottom: 0;
  top: 0;
  right: unset !important;
  left: 0px !important;
  text-align: center;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Active mobile menu animation */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero-section {
  background:linear-gradient(rgb(0 0 0 / 33%), rgb(0 0 0 / 80%)), url(../images/2.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  color: var(--light-color);
  padding-top: 80px;
}

.hero-section .main-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--light-color);
}

.hero-section .tagline {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--light-color);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.about-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #01355a73;
  height: 100%;
  opacity: 0;
  transition: 300ms;
}
.about-image.about-image-edit::before {
  content:none;
}

.about-image:hover::before {
  opacity: 1;
  z-index: 1;
}

.about-image img {
  width: 100%;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image .video-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
}

.about-image:hover .video-popup {
  opacity: 1;
}

.about-content p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.profile-btn-wrapper {
  margin-top: 2rem;
}

.profile-btn {
  background-color: var(--color-site);
  color: var(--light-color);
  padding: 10px 40px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 16px;
}

.profile-btn:hover {
  background-color: var(--color-site2);
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: #f9f9f9;
}

.service-card {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  min-height: 250px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  background-color: var(--color-site);
}
.service-card:hover a {
  color: var(--light-color);
}

.service-icon {
  height: 40px;
  width: 40px;
  margin: auto;
  margin-top: 1.5rem;
  position: relative;
}
.service-icon::before {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  left: -24px;
  top: -26px;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
}

.services-section .service-icon::before {
  background-image: url("../images/sap-service.png");
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: invert(1);
}

.service-content h3 {
  font-size: 1.25rem;
}
.service-content h3 a {
  display: block;
  width: 70%;
  margin: 40px auto 0;
  color: #484949;
  font-weight: 600;
}

.more-btn {
  background-color: var(--color-site);
  color: var(--light-color);
  padding: 10px 40px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s ease;
}

.more-btn:hover {
  background-color: var(--color-site2);
  color: var(--light-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
  padding: 5rem 0;
  background-color: var(--light-color);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
  margin-bottom: 1.5rem;
  height: 130px;
  width: 130px;
  margin: auto;
  position: relative;
  display: inline-block;
}
.member-image::before {
  content: "";
  background-image: url(data:image/png;base64,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);
  width: 150px;
  height: 150px;
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 9;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid var(--light-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  filter: grayscale(0.8);
  border-radius: 50%;
}
.member-info {
  margin-block: 25px;
}
.member-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.details-btn {
  background-color: transparent;
  color: var(--color-site2);
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: normal;
  margin-top: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 1.5rem;
}
.details-btn > i {
  color: var(--color-site);
  width: 21px;
  height: 21px;
  border: 1px solid var(--color-site);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-inline-end: 10px;
  font-size: 13px;
  transition: 300ms;
}
.details-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.details-edit-btn {
  background-color: transparent;
  color: var(--color-site2);
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: normal;
  margin-top: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-top: 1.5rem;
}
.details-edit-btn > i {
  color: var(--color-site);
  width: 21px;
  height: 21px;
  border: 1px solid var(--color-site);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  margin-inline-end: 10px;
  font-size: 13px;
  transition: 300ms;
}
.details-edit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Clients Section */
.clients-section {
  padding: 5rem 0 2rem 0;
  background: var(--gradient);
  color: var(--light-color);
}

.clients-section .section-title h2 {
  color: var(--light-color);
}

.clients-section .section-title h2:after {
  background: var(--light-color);
}

.clients-slider {
  padding: 2rem 0;
}

.client-logo {
  text-align: center;
  padding: 1rem;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.client-logo img {
  max-width: 100%;
  max-height: 100px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.3s ease;
  /*! height: 100px; */
}
.client-logo:hover img {
  opacity: 1;
  transform: scale(1.05);
  filter: unset;
}

/* Why Choose Us Section */
.why-us-section {
  padding: 5rem 0;
  background-color: var(--light-color);
  background-color: #f9f9f9;
}

.feature-card {
  text-align: center;
  padding: 2rem 0.5rem;
  border-radius: 7px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid #dce8eb;
  min-height: 330px;
}

.feature-card:hover {
  border-color: #015c73;
  background-color: #fff;
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-icon img {
  height: 80px;
  width: auto;
  filter: invert(1);
}

.feature-title {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 20px;
  color: #484949;
  background-color: transparent;
}

.feature-content p {
  margin-bottom: 0;
  line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

/* Contact Form Styles */
.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--color-site);
    position: relative;
}

.contact-form-wrapper h3:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: var(--color-site);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    height: 50px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    border: 1px solid #dce8eb;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--color-site);
    box-shadow: none;
}

.contact-form textarea.form-control {
    height: auto;
    resize: none;
}

.contact-form .submit-btn {
    background: var(--color-site);
    color: #fff;
    padding: 12px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form .submit-btn:hover {
    background: var(--color-site2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Info Styles */
.contact-info-wrapper {
    background: var(--color-site);
    padding: 3rem;
    border-radius: 10px;
    height: 100%;
    color: #fff;
}

.contact-info-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #fff;
    position: relative;
}

.contact-info-wrapper h3:after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 50px;
    height: 2px;
    background: #fff;
}

.contact-info-list {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    font-size: 1.25rem;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-info-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}
.contact-info-content p.tel{
  direction: ltr;
}

.contact-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-social .social-links {
    display: flex;
    gap: 10px;
}

.contact-social .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-social .social-links a:hover {
    background: #fff;
    color: var(--color-site);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        margin-top: 2rem;
    }
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 1.25rem;
  margin-left: 1rem;
}

.contact-info-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-info-content p {
  margin-bottom: 0;
}

.contact-form .form-control {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  margin-bottom: 1.5rem;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.submit-btn {
  background-color: var(--primary-color);
  color: var(--light-color);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Works Section */
.works-section {
    padding: 5rem 0;
    
}
.works-section .section-title {
    margin-bottom: 2rem;
}

.works-section .section-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.works-section .section-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
    margin: 30px auto 0;
    max-width: 70%;
}

/* Work Tabs Styling */
.work-tabs {
    justify-content: center;
    border: none;
    margin-bottom: 2rem;
    gap: 15px;
}

.work-tabs .nav-item {
    margin: 0;
}

.work-tabs .nav-link {
    background-color: #444;
    border: none;
    color: var(--light-color);
    padding: 10px 40px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.work-tabs .nav-link:hover {
    background-color: var(--color-site);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.work-tabs .nav-link.active {
    background-color: var(--color-site);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Tab Content Animation */
.tab-content {
    margin-top: 2rem;
}

.tab-pane {
    transition: all 0.3s ease-in-out;
}

.tab-pane.fade {
    opacity: 0;
    transform: translateY(10px);
}

.tab-pane.show {
    opacity: 1;
    transform: translateY(0);
}

.work-box {
    background-color: #fff;
    padding: 1rem;
    border: 1px solid #dce8eb;
    transition: all 0.3s ease;
    border-radius: 7px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}
.work-box:hover {
  border-color: #015c73;
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.work-box img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px;
}

.work-box h3 {
    font-size: 18px;
    margin: 25px 0 10px 0;
}

.work-box p {
    font-size: 14px;
    color: #666;
}

.works-slider {
    padding: 2rem 0;
}

.swiper-slide {
	/***
    width: 25%;
    margin-right: 20px;
	***/
}

.swiper-slide:last-child {
    margin-right: 0;
}

/* Help Section */
.help-section {
    padding: 4rem 0;
    background-color: var(--light-color);
    color: var(--primary-color);
}

.help-section .help-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

.help-section .contact-btn {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 40px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

.help-section .contact-btn:hover {
    background-color: #444;
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
    .help-section .help-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }
}

/* Map Section */
.map-section {
  height: 350px;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  background: var(--gradient);
  color: var(--light-color);
  padding: 3rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer p {
  color: var(--light-color);
}
.footer p.tel span {
  direction: ltr;
  display: inline-block;
}

.footer-logo img {
  max-height: 80px;
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  color: var(--light-color);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: var(--light-color);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  opacity: 1;
  padding-right: 5px;
}

.social-links {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--light-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.995rem;
  opacity: 0.8;
  margin-top: 2rem;
}

/* WhatsApp Fixed Button */
.whatsapp-fixed {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
}

.whatsapp-fixed a {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-color);
  font-size: 1.75rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.whatsapp-fixed a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Modal Styles */
.modal-content {
  border-radius: 10px;
  overflow: hidden;
  border: none;
}

.modal-header {
}

.modal-header .btn-close {
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) auto
    calc(-0.5 * var(--bs-modal-header-padding-y))
    calc(-0.5 * var(--bs-modal-header-padding-x));
}

.modal-title {
  color: var(--color-site);
}

.modal-body {
  padding: 2rem;
}

.close {
  color: var(--light-color);
  opacity: 1;
}

.modal-body .team-member {
  margin-bottom: 0;
  padding: 0;
  box-shadow: none;
}
.modal-body .team-member .member-info h3 {
  margin-top: 2.5rem;
  color: #7a7a7a;
  font-size: 1rem;
}
/* Start Breadcrumb-h */

.breadcrumb-h {
    color: #fff;
    background: var(--color-site);
    min-height: 235px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding-top: 120px;
	background:linear-gradient(rgb(0 0 0 / 33%), rgb(0 0 0 / 80%)), url(../images/2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-h .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--main-color);
    mix-blend-mode: hue;
}

.breadcrumb-h .overlay-img {
    /* background: var(--main-color); */
}

.breadcrumb-h .overlay-img img {
    opacity: .8;
}
.text-bread {
    text-align: center;
}

.text-bread h1 {
  font-size: 2rem;
  color: var(--light-color);
  margin: 0;
}

.text-bread ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.text-bread ul li a,
.text-bread ul li span {
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
}

.text-bread ul li a::after {
    content: "|";
    margin: 0 3px;
}
/* End Breadcrumb-h */

/* Start partner */
.partner-section {
  background: #f4f4f4;
  padding-block-start: 20px;
  padding-block-end: 30px;
}

.partner-section .item {
  background: #013e60;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-block: 30px 0;
  min-height: 200px;
}
.partner-section .partner-icon {
  display: block;
  height: 99px;
  width: 190px;
}

.partner-section .partner-icon img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  filter: brightness(0)invert(1);
  transition: 300ms;
}

.partner-section .partner-icon:hover img {
  filter: unset
}
/* Start single */
.single-page-section{
  padding: 1.5rem;
}
.single-image{
  max-width: 800px;
  aspect-ratio: 3 / 2;
  margin-inline: auto;
  margin-block-end: 32px;
}
.single-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-info{

}
.single-info h3{
  margin: 2.5rem 0;
  color: #7a7a7a;
}
.single-info p {

}
/* pagination */
.page-link {
  color:#000;
}
.active>.page-link, .page-link.active , .page-link:hover {
  color:#fff;
  background-color:#000;
  border-color:#000;
}
.page-link:focus {
  color:#444;
  box-shadow:0 0 0 0.25rem rgba(68, 68, 68, 0.25);
}
.page-item:first-child .page-link {
  border-top-left-radius:0;
  border-bottom-left-radius:0;
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius:var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
  border-top-right-radius:0;
  border-bottom-right-radius:0;
  border-top-left-radius:var(--bs-pagination-border-radius);
  border-bottom-left-radius:var(--bs-pagination-border-radius); 
}