/* Common styles for all pages, navbar and footer */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

:root {
  --primary-color: #472340;
  --secondary-color: #29273f;
  --accent-color: #8a3c60;
  --light-gray: #f2f2f2;
  --dark-gray: #333;
  --white: #fff;
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --radius: 5px;
  --nav-bg: #fff;
  --nav-active: #8a3c60;
  --nav-hover: #472340;
}

/* General Page Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: 'Cairo', sans-serif;
  /* direction: rtl; */
  background-color: var(--light-gray);
  color: var(--dark-gray);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-title {
  background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
  padding: 100px 20px;
  color: var(--white);
  text-align: center;
}

.page-title h1 {
  font-size: 36px;
  margin: 0;
}

/* Header & Navigation Styles */
header {
  display: flex;
  margin: 30px 0px 0px;
  padding: 0px 35px;
  width: 100%;
  height: 150px;
  position: relative;
  z-index: 1000;
}

.contact-info-section {
  background-color: #6e1b36;
  color: white;
  display: flex;
  align-items: center;
  border-radius: 10px 0px 0px 10px;
  padding: 15px 20px;
  width: 25%;
  min-width: 250px;
  justify-content: center;
}

.contact-info-section .nav-link {
  color: white;
}

.aux-ico-box {
  margin-left: 15px;
}

.aux-ico-large {
  font-size: 24px;
}

.aux-ico-shape-circle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Headset icon fallback using Font Awesome */
.auxicon-headset-sound-streamline:before {
  content: "\f590"; /* Font Awesome headset icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.contact-text {
  display: flex;
  flex-direction: column;
}

.nav-container {
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  border-radius: 0px 10px 10px 0px;
  align-items: center;
  padding: 0 20px;
  flex: 1;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  padding: 5px 0;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  /* gap: 30px; */
}

nav ul li a {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: bold;
  padding: 25px 0;
  display: block;
  position: relative;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: var(--nav-hover);
}

nav ul li a.active {
  color: var(--nav-active);
}

nav ul li a.active::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--nav-active);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--dark-gray);
  /* color: #ffffff; */
}

/* Footer Styles */
footer {
  background: linear-gradient(to left, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 60px; /* Add more space above footer */
}

footer .column {
  flex: 1;
  min-width: 200px;
  margin: 10px 0;
  padding: 0 15px;
}

footer h3 {
  margin-top: 0;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  padding-bottom: 10px;
  font-size: 1.2rem;
  position: relative;
}

footer h3:after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

footer a {
  color: var(--white);
  text-decoration: none;
  display: block;
  margin: 10px 0;
  transition: all 0.3s ease;
  padding: 5px 0;
  position: relative;
}

footer a:before {
  content: '•';
  margin-left: 8px;
  color: var(--accent-color);
}

footer a:hover {
  opacity: 0.8;
  padding-right: 5px;
}

footer a i {
  width: 20px;
  text-align: center;
  margin-left: 5px;
}

footer img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

footer .copyright {
  flex-basis: 100%;
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* Social Links */
footer .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

footer .social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

/* Button Styles */
.btn {
  display: inline-block;
  /* padding: 10px 25px; */
  background: var(--accent-color);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--white);
}

/* Form Styles */
.form-control {
  margin-bottom: 20px;
}

.form-control label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-control input,
.form-control select,
.form-control textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.form-control input:focus,
.form-control select:focus,
.form-control textarea:focus {
  border-color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    margin: 10px 0 0;
    padding: 0 15px;
  }
  
  .contact-info-section {
    width: 100%;
    min-width: 100%;
    justify-content: center;
  }
  
  .mobile-menu-toggle {
    display: block;
    /* position: absolute;
    left: 20px;
    top: 20px; */
  }
  
  .nav-container nav ul {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    gap: 0;
    z-index: 1000;
  }
  
  nav ul.active {
    display: flex;
  }
  
  nav ul li a {
    padding: 15px 20px;
  }
  
  nav ul li a.active::after {
    display: none;
  }
  
  footer {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 50px;
  }
  
  .contact-text {
    font-size: 14px;
  }
  
  .nav-container {
    padding: 10px;
  }
  
  footer .column {
    flex: 100%;
    margin: 15px 0;
  }
}

@media(min-width: 768px) {
  header {
    padding: 20px 106px;
  }
} 

.tab-content{
  min-height: 400px;
}

.tab-content .info {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
}

.tab-content .list-unstyled {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.ltr {
    direction: ltr !important;
}

.rtl {
    direction: rtl !important;
}