/* Reset and base styles */

/* @font-face {
    font-family: 'Retrokia Caps';
    src: url('fonts/RetrokiaCaps.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'VIP Hala Bold';
    src: url('fonts/VIPHalaBold.ttf') format('truetype');
    font-weight: bold;
} */
.title {
    font-family: 'Retrokia Caps', sans-serif;
}

.titlear {
    font-family: 'VIP Hala Bold', sans-serif;
}

.heading {
    font-family: 'Hind Murai', sans-serif; /* medium or regular based on weight */
    font-weight: 500; /* medium */
}
.bodytext {
    font-family: 'Hind Murai', sans-serif; /* medium or regular based on weight */
    font-weight: 500; /* medium */
}

.bodytextar {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 400; /* regular */
}

.headingar {
    font-family: 'Noto Sans Arabic', sans-serif;
    font-weight: 500; /* medium */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}
body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header Navigation */
header {
    background-color: #5f89d3; /* Primary */
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}
header .logo {
    font-size: 24px;
    font-weight: bold;
}
nav ul {
    display: flex;
    list-style: none;
}
nav ul li {
    /* margin: 0 15px; */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    transition: background 0.3s ease;
}
nav ul li:hover > a {
    background-color: transparent; /* Slightly darker blue */
}

/* Dropdown */
.dropdown {
    display: none;
    position: absolute; 
    min-width: 180px;
    top: auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border-radius: 4px;
    z-index: 10;
}
.dropdown a {
    color: #333;
    display: block;
    padding: 10px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s ease;
}
.dropdown a:hover {
    /* background-color: #f0f0f0; */
}
nav ul li:hover .dropdown {
    display: block;
}
.sticky .dropdown{
    background: #fff;
}
/* Main Container */
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}
.section {
    background: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.section h2 {
    display: flex;
    align-items: center;
    font-size: 26px;
    margin-bottom: 15px;
    color: #5f89d3; /* Primary */
}
.section h2 img {
    width: 28px;
    margin-right: 10px;
}
.section p {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Arabic Text Styling */
.arabic {
    direction: rtl;
    font-family: "Tahoma", sans-serif;
    font-size: 15px;
    margin-top: 15px;
    background: #f4faff;
    padding: 15px;
    border-left: 4px solid #5f89d3;
    border-radius: 5px;
}

/* Buttons */
.button {
    display: inline-block;
    background: #5f89d3;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}
.button:hover {
    background: #5f89d3;
}

/* Footer */
footer {
    background-color: #5f89d3;
    color: #fff;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        /* background: #5f89d3; */
        position: absolute;
        top: 60px;
        /* left: -999px; */
        width: 100%;
        transition: all 0.3s ease;
    }
    nav ul.active {
        left: 0;
    }
    nav ul li {
        margin: 10px 0;
    }
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #4979D1;
    color: white;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background-color: #4979D1;
}
header .logo {
    font-size: 28px;
    font-weight: bold;
    color: #e8c547;
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}
nav ul li {
    position: relative;
}
nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}
.language-toggle {
    background: transparent;
    border: 1px solid #e8c547;
    color: #e8c547;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-left: 15px;
}
.container {
    text-align: center;
    padding: 50px;
}
.container h1 {
    color: #e8c547;
    font-size: 40px;
    margin-bottom: 30px;
}
.content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}
.section {
    width: 45%;
    text-align: left;
}
.section h2 {
    color: #e8c547;
    font-size: 28px;
    margin-bottom: 15px;
}
.divider {
    width: 2px;
    background-color: #e8c547;
}
footer {
    text-align: center;
    padding: 20px;
    color: white;
    font-size: 14px;
}
/* Arabic text styles */
.arabic {
    direction: rtl;
    font-family: 'Arial', sans-serif;
    display: none;
}
.contact-container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #e8c547;
}

.contact-container h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-container h2 {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 20px;
}

.icon {
    width: 40px;
    height: 40px;
    margin: 15px auto;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

input, textarea {
    width: 350px;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    background-color: #fff8f1;
    color: #333;
}

textarea {
    height: 120px;
    resize: none;
    border-radius: 20px;
}

/* Contact List Styling */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.contact-item {
    /* background: #fff; */
    /* border-radius: 10px; */
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease; */
    /* border: 1px solid #eee; */
}

.contact-item:hover {
    /* transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); */
}

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    background: #f8f9fa;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f89d3;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .info-icon {
    background: #5f89d3;
    color: #fff;
    transform: scale(1.1);
}

.info-content {
    flex: 1;
}

.info-content .title {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content .text,
.info-content a.text {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-content a.text:hover {
    color: #5f89d3;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-list {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 5px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Loading state */
.contact-list .spinner-border {
    width: 2rem;
    height: 2rem;
    color: #5f89d3;
    margin-bottom: 10px;
}

.contact-list .text-center {
    text-align: center;
    color: #666;
    font-size: 16px;
}

.contact-list .text-danger {
    color: #dc3545;
}

.contact-list .small {
    font-size: 14px;
    color: #999;
}

button, .btn {
    background-color: #e8c547;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    cursor: pointer;
}

button:hover , .btn:hover {
    background-color: #e8c547;
}
.btn img {
 max-width: 120px;
}

.navbar-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
  
  .sticky {
    position: fixed;
    z-index: 99;
    background-color: #fff;
    -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s; }
    .sticky .navbar {
      padding: 10px 0; }
  
  .navbar {
    padding: 0;
    border-radius: 5px;
    position: relative;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    padding: 35px 0; }
  
  .navbar-brand {
    padding: 0; }
    .navbar-brand img {
      max-width: 150px; }
  
  .navbar-toggler {
    padding: 0; }
    .navbar-toggler .toggler-icon {
      width: 30px;
      height: 2px;
      background-color: #222;
      display: block;
      margin: 5px 0;
      position: relative;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
    .navbar-toggler.active .toggler-icon:nth-of-type(1) {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      top: 7px; }
    .navbar-toggler.active .toggler-icon:nth-of-type(2) {
      opacity: 0; }
    .navbar-toggler.active .toggler-icon:nth-of-type(3) {
      -webkit-transform: rotate(135deg);
      -moz-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
      -o-transform: rotate(135deg);
      transform: rotate(135deg);
      top: -7px; }
  
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    .navbar-collapse {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      
      background-color: #fff;
      z-index: 9;
      -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
      padding: 5px 12px; } }
  
  @media (max-width: 767px) {
    .navbar-collapse {
      position: absolute;
      top: 100%;
      left: 0;
      height: 60vh;
      width: 100%;
      background-color: #fff;
      z-index: 9;
      -webkit-box-shadow: 0px 15px 20px 0px rgba(56, 66, 77, 0.1);
      -moz-box-shadow: 0px 15px 20px 0px rgba(56, 66, 77, 0.1);
      box-shadow: 0px 15px 20px 0px rgba(56, 66, 77, 0.1);
      padding: 5px 12px; } }
      .navbar-nav{
        white-space: nowrap;
      }
    .navbar-nav .nav-item a {
      font-size: 16px;
      font-weight: 600;
      /* color: #38424D; */
      color: #fff;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s;
      position: relative; }
      .sticky .navbar-nav .nav-item a {
      color: #38424D;
    }
    .navbar-nav .nav-item.active > a, .navbar-nav .nav-item:hover > a {
      color: #e8c547; }
    .navbar-nav .nav-item:hover .sub-menu {
      top: 100%;
      opacity: 1;
      visibility: visible; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .navbar-nav .nav-item:hover .sub-menu {
          top: 0; } }
      @media (max-width: 767px) {
        .navbar-nav .nav-item:hover .sub-menu {
          top: 0; } }
    .navbar-nav .nav-item .sub-menu {
      max-width: 200px;
      background-color: #fff;
      -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
      box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
      position: absolute;
      top: 110%;
      left: 0;
      opacity: 0;
      visibility: hidden;
      -webkit-transition: all 0.3s ease-out 0s;
      -moz-transition: all 0.3s ease-out 0s;
      -ms-transition: all 0.3s ease-out 0s;
      -o-transition: all 0.3s ease-out 0s;
      transition: all 0.3s ease-out 0s; }
      @media only screen and (min-width: 768px) and (max-width: 991px) {
        .navbar-nav .nav-item .sub-menu {
          position: relative;
          width: 100%;
          top: 0;
          display: none;
          opacity: 1;
          visibility: visible; } }
      @media (max-width: 767px) {
        .navbar-nav .nav-item .sub-menu {
          position: relative;
          width: 100%;
          top: 0;
          display: none;
          opacity: 1;
          visibility: visible; } }
      .navbar-nav .nav-item .sub-menu li {
        display: block; }
        .navbar-nav .nav-item .sub-menu li a {
          display: block;
          padding: 8px 20px;
          color: #222; }
          .navbar-nav .nav-item .sub-menu li a.active, .navbar-nav .nav-item .sub-menu li a:hover {
            padding-left: 25px;
            color: #5F89D3; }
  
  .navbar-nav .sub-nav-toggler {
    display: none; }
    @media only screen and (min-width: 768px) and (max-width: 991px) {
      .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px; } }
    @media (max-width: 767px) {
      .navbar-nav .sub-nav-toggler {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        background: none;
        color: #222;
        font-size: 18px;
        border: 0;
        width: 30px;
        height: 30px; } }
    .navbar-nav .sub-nav-toggler span {
      width: 8px;
      height: 8px;
      border-left: 1px solid #222;
      border-bottom: 1px solid #222;
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
      position: relative;
      top: -5px; }


      .about-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
    .about-content h2{
        color: #e8c547;
        font-size: 48px;
        font-weight: 800;
        text-transform: uppercase;
    }
    .about-content-grid{
        display: grid;
        grid-template-columns: 1fr 1px 1fr;
        gap: 20px;
        margin: 20px 0px;
    }
    .vertical-line{
        border: 1px solid #e8c547;
        height: 100%;
        display: flex;  
        margin: 30px 0px;
    }
@media screen and (max-width: 768px){
    .about-content-grid{
        grid-template-columns: 1fr;
    }
    .vertical-line{
        display: none;
    }
    
.about-content h1{
    font-size: 22px;
}
.about-content h2{
    font-size: 30px;
}
.about-content p{
    font-size: 14px;
}
}

.img1{
    width: 80vw;
}
.img2{
    width: 30vw;
}
@media screen and (max-width: 768px){
    .img1{
        width: 100vw;
    }
    .img2{
        width: 100vw;
    }
}
.pricing-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.pricing-text{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    gap: 20px;
}
.pricing-content h2{
    color: #e8c547;
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
}
.pricing-content-grid{
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    width: 100%;
    gap: 20px;
    /* margin: 20px 0px; */
}
.pricing-content h3{
    font-size: 42px;
}
.pricing-content p{
    font-size: 14px;
}
.pricing-text p:nth-of-type(1){
    font-size: 40px;
}
.pricing-text p:nth-of-type(1) span{
    font-size: 20px;
}
@media screen and (max-width: 768px){
    .pricing-content-grid{
        grid-template-columns: 1fr;
    }
    .pricing-text p:nth-of-type(1) span{
        font-size: 16px;
    }
.pricing-content h2{
    font-size: 30px;
}
.pricing-content h3{
    font-size: 32px;
}
.pricing-content p{
    font-size: 14px;
}
}
.footer-contact .contact-list{
    display: grid;
    background-color: #fff;
    border-radius: 10px;
    grid-template-columns: repeat(2, 1fr);
    place-content: center;
    place-items: center;
    margin: 10px 40px;
    max-width: 700px;
    padding: 20px;
    gap: 20px;
}

@media screen and (max-width: 992px){
.footer-contact .contact-list{
       display: flex;
       flex-direction: column;
}
    
}

.copyright a{
    color: #e8c547;
}