*{
   font-family: "Cairo", sans-serif;

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    min-height: 100vh;
}
/* navbar */
.navbar-logo, .navbar{
    padding: 0;
}
    .navbar-custom {
      background: linear-gradient(to left, #004e92, #ff512f); 
      color: white;
      border-bottom: 1px solid white;
    }
    .navbar-custom .nav-link,
    .navbar-custom .navbar-brand {
      color: white !important;
    }
    .btn-cta {
      background-color: #0B54A5;
      color: white;
      border-radius: 16px;
      padding: 6px 15px;
    }
    .btn-whatsapp {
      background-color: #0B54A5;
      color: white;
      border-radius: 16px;
      padding: 6px 12px;
    }
    .nav-item .active-link, .nav-link:hover {
      background-color: white;
      color: #ff512f !important;
      border-radius: 6px;
      padding: 6px 10px;
    }
    .navbar-logo img {
      height: 80px;
    }
    /* hero-section  */
     .hero-section {
      background: url('../images/bg1.jpeg') no-repeat center center / cover;
      color: white;
      padding: 140px 0;
      position: relative;
       overflow: hidden;
        animation: bgZoom 20s ease-in-out infinite alternate;
    }
    @keyframes bgZoom {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 120%;
  }
}
a{
  text-decoration: none;
}
 .hero-overlay {
      background-color: #000000B2;
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .hero-button {
      background-color: #ff512f;
      color: white;
      border: none;
      border-radius: 6px;
      padding: 10px 25px;
      font-size: 1rem;
    }
    .hero-button:hover {
      background-color: #e64926;
    }
    /* categories section  */
     .section-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }
    .view-all-btn {
      background-color: #ffe6e1;
      color: #ff512f;
      border-radius: 6px;
      padding: 6px 12px;
      font-weight: 500;
      font-size: 14px;
      transition: all 0.3s ease;
    }
    .view-all-btn:hover {
      background-color: #ff512f;
      color: white;
    }
    .category-card {
      border: none;
      overflow: hidden;
      transition: transform 0.3s ease;
      border-radius: 10px;
    }
    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 10px #5379a1;
      cursor: pointer;
    }
    .category-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .card-title {
      text-align: center;
      background-color: #0B54A514;
      padding: 10px;
      margin: 0;
      font-weight: 900;
    }
    /* cta section  */
     .cta-section {
      background-color: #0B54A5;
      color: white;
      padding: 70px 0;
      margin-top: 40px;
    }
    .cta-section .highlight {
      color: #ff6b2d;
      font-weight: bold;
    }
    .cta-btn {
      background-color: #ff512f;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      font-weight: 500;
      transition: 0.3s;
    }
    .cta-btn:hover {
      background-color: #e64926;
    }
    .cta-image img {
      max-width: 100%;
      height:auto;
      position: absolute;
       top: -130px;
     left: 0px;
 background: radial-gradient(  #ffffff7c 0%,#ffffff86 0%, #ffffff9e 10%, #ffffff00 70% );
    }
/* about section  */
      .about-section {
      padding: 60px 0;
    }
    .section-heading {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 30px;
    }
    .section-heading::before,
    .section-heading::after {
      content: '';
      flex: 1;
      height: 5px;
      background-color: #0B54A5;
      margin: 0 15px;
      border-radius: 5px;
    }
    .section-heading span {
      background-color: #0B54A529;
      color: #0B54A5;
      padding: 5px 20px;
      border-radius: 6px;
      font-weight: bold;
    }
    .about-text {
      text-align: center;
      font-weight: 700;
      color: #0B54A5;
      line-height: 2;
      font-size: 20px;
    }
    .feature-card {
      border: 2px solid #0B54A5;
      border-radius: 12px;
      padding: 30px 20px;
      background-color: white;
      text-align: center;
      color: #e64926;
      box-shadow: 0px 4px 4px 0px #00000014;

    }
    .feature-card i {
      padding: 10px;
     border: 2px solid #0B54A5;
     border-radius: 6px;
     box-shadow: 0px 4px 4px 0px #0B54A529;
     margin-bottom: 5px;

    }
    .feature-title {
      color: #1e3c72;
      font-weight: 700;
      margin-bottom: 8px;
      font-size: 18px;
    }
    .feature-desc {
      color: #444;
      font-size: 14px;
    }
    /* contact section  */
     .contact-section {
      background: url('/assets/images/contact.png') center center/cover no-repeat;
      padding: 80px 0;
      position: relative;
      color: white;
      margin-block: 50px;
      margin-top: 110px;
    }
    .contact-card {
      background-color: #0056b3;
      border-radius: 12px;
      padding: 30px 20px;
      color: white;
position: absolute;  
width: 45%;
top: -70px;
right: 70px;
cursor: pointer;
  }
    .contact-card h5 {
      background-color: #1e65c1;
      padding: 10px;
      border-radius: 6px;
      text-align: center;
      margin-bottom: 25px;
    }
    .contact-card input,
    .contact-card select {
      border: none;
      border-radius: 6px;
      padding: 10px;
      width: 100%;
    }
    .contact-card input:focus,
    .contact-card select:focus {
      outline: none;
      box-shadow: none;
    }
.form-select{
  margin-left: 5px;
  border-radius: 5px;
}
    .contact-card .btn-send {
      background-color: #ff5722;
      border: none;
      padding: 10px 25px;
      border-radius: 8px;
      color: white;
      font-weight: bold;
      margin-top: 15px;
      width: 100%;
    }

    .contact-text {
      line-height: 2;
      color: white;
    }
/* footer  */
.main-footer {
  background-color: #0056b3;
  margin-top: 165px;
}
.main-footer a{
  text-decoration: underline;
  color: #ffffff;
  font-weight: bold;
}
.footer-title {
  background-color: #1e65c1;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}
.footer-links li,
.contact-info li {
  margin-bottom: 12px;
  font-size: 15px;
}
.icon-dot {
  font-size: 10px;
  vertical-align: middle;
}
/* categories page  */
.breadcrumb-section a, .breadcrumb-path a {
  text-decoration: underline;
}
.section-title {
  font-size: 28px;
  font-weight: bold;
  background: #FFFFFF52;
  display: inline-block;
  padding: 6px 20px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.breadcrumb-path {
  font-size: 16px;
}
.text-orange {
  color: #ff5722;
}
.section-title-blue {
  background-color: #0B54A5;
  padding:7px 10px;
  border-radius: 6px;
  color: white;
}
/* specific-category page  */
.product-card {
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.ribbon-2 {
  --f: 10px; /* control the folded part*/
  --r: 15px; /* control the ribbon shape */
  --t: 10px; /* the top offset */
  position: absolute;
  inset: var(--t) calc(-1*var(--f)) auto auto;
  padding: 0 10px var(--f) calc(10px + var(--r));
  clip-path: 
    polygon(0 0,100% 0,100% calc(100% - var(--f)),calc(100% - var(--f)) 100%,
      calc(100% - var(--f)) calc(100% - var(--f)),0 calc(100% - var(--f)),
      var(--r) calc(50% - var(--f)/2));
  background: #EE5629;
  box-shadow: 0 calc(-1*var(--f)) 0 inset #0005;
  text-align: center;
  color: white;
}
/* requirments page  */
.doc-item {
  background-color: #FAFAFA;
  padding: 10px 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}
.Tabs-Header .nav-tabs {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border-bottom: none;
  background-color: #0B54A514;
}
.Tabs-Header .nav-tabs .nav-item {
  flex: 1;
  text-align: center;
}
.Tabs-Header .nav-tabs .nav-link {
  width: 100%;
 border: 1px solid #0B54A5;
  box-shadow: 0px -1px 0px 0px #FFFFFF00 inset;
  border-radius: 0;
  padding: 10px 0;
  color: #000;
  font-weight: 500;
}
.Tabs-Header .nav-tabs .nav-link.active {
  background-color: #0056a3;
  color: white;
}
.cta-gradient-section {
  background:url(/assets/images/gradiantBG.png)no-repeat center center / cover;}

.cta-box {
  background-color: rgba(255, 255, 255, 0.1); 
}
.apply-btn{
  border-radius: 10px;
  border: none;
}
.apply-btn:hover{
  background-color: #e64926;
  color: white;
}
/* apply-form page  */
.form-card {
  background-color: #0B54A5F5;
   background-image: 
   linear-gradient(rgba(10, 86, 160, 14.95), rgba(10, 86, 203, -0.05)), 
   url('/assets/images/form-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; 
  padding: 30px;
  border-radius: 12px;
  max-width: 900px;
  box-shadow: 4px 4px 4px 0px #0000000A, -4px -4px 4px 0px #0000000A;
}
input::placeholder{
  color: #808080;
  font-size: 15px;
}
.form-title {
  background-color: #1d67b1;
  padding: 10px;
  border-radius: 10px;
}
.btn-orange {
  background-color: #ee5629;
  color: #fff;
  font-weight: bold;
  padding-inline: 100px;
}
.btn-orange:hover {
  background-color: #d94d23;
  color: white;
}
/* about-us page  */
.about-us-section {
  padding: 60px 0;
}

.about-us-section .logo-box {
border: 1px solid #0B54A5;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
 box-shadow: 0px 4px 4px 0px #0B54A53D;

}
.about-us-section .logo-box img {
  max-width:450px;
  height: auto;
}
.about-us-section .about-text {
  color: #0B54A5;
 
  text-align: right;
  padding-block: 50px;
}
.about-us-section .about-text h4{
   line-height: 2;
}
/* contact-us page  */
.contact-box {
  position: relative;
  z-index: 2;
}

.contact-heading {
  background-color:#FFFFFF80;
  color: white;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 6px;
}


.icon-circle {
  width: 50px;
  height: 50px;
  background-color: #FFFFFF80;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
}

.form-section-contact {
  background-image: url('/assets/images/map-bg.png');
  background-size: cover;
  background-position: center;
  position: relative;
height: 500px;
margin-bottom: 350px;
}

.form-section-contact .container {
  position: relative;
  z-index: 2;
}

.form-card-contact {
  max-width: 960px;
 top: 240px;
    right: 190px;
}

.send-btn {
  background-color: #f45325;
  color: white;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 6px;
  border: none;
}
.text-blue{
  color: #0B54A5;
}
.send-btn:hover {
  background-color: #d7471d;
}
.form-section-contact label{
  color: #004e92;
}

.form-section-contact input , .form-section-contact  .form-select{
  border: 1px solid #0B54A5;
}
/* responsive */
    @media (max-width: 1024px) {
     .nav-item{
      margin: 0px !important;
     }
     .hero-section {
    padding: 60px 0;
}
.cta-section {
    background-color: #0B54A5;
    color: white;
    padding: 40px 0;
    margin-top: 40px;
}
.cta-image img {
    top: -80px;
    left: 0px;
}
.contact-card {
    width: 45%;
    top: -42px;
    right: 32px;
}
.about-us-section .about-text h4 {
    line-height: 1.5;
}
.about-us-section .logo-box {
    padding: 10px;
}
.about-us-section .logo-box img {
    max-width: 410px;
}
.about-us-section .about-text {
    padding-block: 5px;
}
.contact-heading {
    padding: 3px 10px;
}
.form-section-contact {
    height: 375px;
    margin-bottom: 330px;
}
.form-card-contact {
    max-width: 910px;
    top: 160px;
    right: 25px;
}
.icon-circle {
    width: 40px;
    height: 40px;
}
.navbar-logo img {
    height: 65px;
}
.h2, h2 {
    font-size: calc(1rem + .9vw);
}
    }
    @media (max-width: 768px) {
      .contact-text {
        text-align: center;
        margin-bottom: 30px;
      }
          .hero-section {
        padding: 15px 0;
    }
    .h3, h3 {
    font-size: calc(0.8rem + .6vw);
}
.h5, h5 {
    font-size: 1rem;
}
    .cta-section {
        padding: 25px 0;
        margin-top: 35px;
    }
        .cta-image img {
        top: -45px;
        left: 0px;
    }
    .contact-card input, .contact-card select {
    padding: 5px;
}
    .contact-card {
        width: 47%;
        top: -51px;
        right: 25px;
    }
        .about-us-section .logo-box img {
        max-width: 320px;
    }
        .about-us-section .about-text h4 {
        line-height: 1.3;
        font-size: 20px;
    }
    .footer-title {
    padding: 5px 8px;
    font-size: 15px;
    margin-bottom: 20px;
}
        .form-section-contact {
        margin-bottom: 50px;
    }
    form-control {
    padding: 0.300rem .70rem !important;
    font-size: 1rem;
}
    .form-card-contact {
        max-width: 645px;
        top: 0px;
        right: 0px;
        position: relative !important;
    }
    }
     @media (max-width: 430px) {
.h2, h2 {
    font-size: calc(1rem + .9vw);
}
.h4, h4 {
    font-size: calc(1rem + .3vw);
}
    .hero-section {
        animation: none;
    }
.hero-button {
    padding: 7px 14px;
    font-size: 0.9rem;
}
.category-card img {
    height: 140px;
}
    .cta-image img {
        display: none;
    }
    .contact-card{
      position: relative;
      width: 100%;
      right: 0;
      top: 0;
      padding: 15px 15px;
    }
    .contact-section {
    padding: 20px 0;
    margin-block: 0px;
}
    .contact-text {
        margin-bottom: 5px;
        margin-top: 12px;
        font-size: 19px;
    }
    .about-text {
    line-height: 2;
    font-size: 16px;
}
.navbar-logo img {
    height: 60px;
}
.container-fluid a{
  margin-right: 0px !important;
}
.Tabs-Header .nav-tabs .nav-link {
    padding: 3px 0;
    font-size: 14px;
}
.doc-item {
    padding: 7px 9px;
    border-radius: 8px;
    gap: 8px;
}
.cta-box {
  padding: 0.8rem !important;
}
    .about-us-section .logo-box img {
        max-width: 250px;
    }
        .about-us-section .about-text h4 {
        line-height: 1.3;
        font-size: 18px;
    }
    .about-us-section {
    padding: 25px 0;
}
    .form-section-contact {
        height: 490px;
        margin-bottom: 680px;
    }
     .form-section-contact img {
      width: 110px !important;
      padding: 0;
      margin: 0;
     }
     .form-card {
    background-image: none;
    padding: 15px;
}
     }
      @media (max-width: 375px) {
            .navbar-logo img {
        height: 50px;
    }
    .section-title {
    font-size: 17px;
    padding: 5px 12px;
    margin-bottom: 0px;
}

      }