
:root{

--text:#4D4D4D;
    --grey:#F8F8F8;
--main-blue:#252A7C;
--second-blue:#2380C9;
--Dusty-Mauve :#9E8C95;
--purple:#717092;
--green:#7DA2A9;
--light-green:#A1B4A2;
--beige:#D9B98B;
  --primary-1: #2583C9;
  --primary-2: #0F2F5A;
  --primary-3: #242C7E;

  --main-gradient: linear-gradient(
    135deg,
    #2583C9 0%,
    #0F2F5A 64%,
    #242C7E 100%
  );
}



a {text-decoration: none; color: inherit;   transition: transform 0.8s ease-in-out;}


body {
    font-family: 'Alexandria', sans-serif;
    margin: 0;
    color: var(--text);
    background-color: #fafafa;
    
  }

  .btn-custom {
  display: inline-block;
  padding: 8px 32px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}


.btn-main {
  background: var(--main-blue);
  color: #fff;
}

.btn-main:hover {
  background: transparent;
  color: var(--main-blue);
  border-color: var(--main-blue);
}



.btn-second {
  background: var(--second-blue);
  color: #fff;
}

.btn-second:hover {
  background: transparent;
  color: var(--second-blue);
  border-color: var(--second-blue);
}




.btn-beige {
  background: var(--beige);
  color: #000;
}

.btn-beige:hover {
  background: transparent;
  color: var(--beige);
  border-color: var(--beige);
}



.btn-outline-main {
  background: transparent;
  color: var(--main-blue);
  border-color: var(--main-blue);
}

.btn-outline-main:hover {
  background: var(--main-blue);
  color: #fff;
}



.btn-outline-second {
  background: transparent;
  color: var(--second-blue);
  border-color: var(--second-blue);
}

.btn-outline-second:hover {
  background: var(--second-blue);
  color: #fff;
}



.btn-outline-beige {
  background: transparent;
  color: var(--beige);
  border-color: var(--beige);
}

.btn-outline-beige:hover {
  background: var(--beige);
  color: #000;
}


.btn-custom:active {
  transform: scale(0.95);
}

  .btn-custom:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-outline-text {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text);
}

.btn-outline-text:hover {
  background: var(--text);
  color: #fff;
}


.btn-outline-text-soft {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(77, 77, 77, 0.4);
}

.btn-outline-text-soft:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}


  .hero-slider {
    height: calc(100vh - 80px);
    width: 100%;
    position: relative;
  }
  
  
  .swiper-slide {
    height: 750px;
    position: relative;
    background-size: cover;
    background-position: center;
  }
  /* HEADER */
  .main-header {
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    backdrop-filter: blur(1px);
  }
  
  .main-header.sticky {
    background: rgba(255,255,255,0.9);
  }
  
  /* LOGO */
  .logo img {
    height: 70px;
  }
  .logo-dark { display: none; }
  
  .main-header.sticky .logo-light { display: none; }
  .main-header.sticky .logo-dark { display: block; }
  
    .main-header.sticky .menu-open .open { 
      background-color: var(--main-blue);
    }


  /* CTA */
  .cta-btn {
    background:var(--second-blue);
    border-radius: 32px;
    width: 140px;
    height: 48px;
    line-height: 32px;
    font-size: 18px;
    text-align: center;
    color: #fff !important;
    margin-right: 8px;
  }
   .cta-btn:hover {
    background:var(--main-blue);

   }
  
  
  .main-header.sticky .ozmenu ul.ozmenu-nav>li a {
    color: var(--text) !important;

  }
    .main-header.sticky .ozmenu ul li.dropdownitem>a:after {
    background-color: var(--text) !important;

  }
    .main-header.sticky .ozmenu ul.ozmenu-nav>li .cta-btn a {
      color: #fff !important;
    }

  /* HERO */
  .hero-slider {
    height: 100vh;
  }
  
  .swiper-slide {
    background-size: cover;
    background-position: center;
  }
  

  /* dots container */
.heroSwiper .swiper-pagination {
  bottom:120px;
}


.heroSwiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #fff;
  border: 2px solid #fff;
  opacity: 1;
  margin: 0 6px !important;
  transition: 0.3s;
}

/* active */
.heroSwiper .swiper-pagination-bullet-active {
  background:var(--beige);
   width: 80px;
   height: 15px;
   border-radius: 10px;
   border: var(--beige);
}


  /* OVERLAY */
  .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
  }
  
  /* CONTENT */
  .content {
    position: relative;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .content h1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  /* SIDEBAR */
  .mobile-menu {
    position: fixed;
    left: -100%;
    top: 0;
    width: 260px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    transition: 0.4s;
    padding: 20px;
  }
  
  .mobile-menu.active {
    left: 0;
  }
  
  .close-btn {
    font-size: 22px;
    cursor: pointer;
  }
  
  .menu-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* MOBILE */
  .menu-toggle {
    display: none;
    font-size: 24px;
  }
  
  /* RESPONSIVE */
  @media(max-width:992px){
    .menu { display:none; }
    .menu-toggle { display:block; }
      .cta-btn {border: none; background-color: none; margin-top: 12px; color: #fff;}
      .ozmenu ul.ozmenu-nav>li .cta-btn a {color: #fff; }
      
    .ozmenu-nav {
   overflow: hidden;
  }
  
.ozmenu-nav::-webkit-scrollbar {
  width: 4px;
}

.ozmenu-nav::-webkit-scrollbar-thumb {
  background: var(--second-blue);
  border-radius: 10px;
}
  }





  /* SECTION */
.about-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: -120px;

  }

  .about-section .container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin:0 auto;
        background: var(--primary-2);
    color: #fff;
    text-align: center;
    border-radius: 24px;
    padding: 40px 30px;
  }
   .about-section .container  .btn-main {
    max-width: 200px;
    margin: 0 auto;
    
   }
  /* TOP BACKGROUND */
  .about-top-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: url(../images/hero-divider.png);
    background-size: cover;
    z-index: 0;
  }
  
  /* TITLE */
  .section-title {
    
    margin-bottom: 40px;
  }
  
    .section-title h2 {
      color: var(--main-blue);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  

    .about-section  .section-title h2 {
      color: unset;
      
    }

  .about-section  .section-title h2 { font-size: 36px;
  font-weight: bold;}
  .about-section  .section-title h5 { font-size: 24px;
  font-weight: 500;}
   .about-section  .section-title h3 {font-size: 20px;
  font-weight: bold; margin-top: 12px; line-height:30px;}
  .about-section p {font-size: 14px; text-align: center; line-height: 28px; margin-bottom: 20px;}
  /* LIST */
  .about-list {
    padding: 0;
    list-style: none;
  }
  
  .about-list li {
    margin-bottom: 10px;
    position: relative;
    padding-right: 20px;
  }
  
  .about-list li::before {
    content: "✔";
    position: absolute;
    right: 0;
    color: #764ba2;
  }
  
  /* IMAGE WRAPPER */
  .about-img-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
  }
  
  .about-img-wrapper img {
    width: 100%;
    border-radius: 15px;
    display: block;
  }
  
  /* EXPERIENCE BADGE */
  .experience-badge {
    position: absolute;
    top: 20px;
    left: 150px;
    background:var(--second-blue);
    color: #fff;
        border-radius: 20px;

    padding: 15px 20px;
    border-top-right-radius: 60px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
    max-height: 50px;
  }
  
  .experience-badge h3 {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
  }
  
  /* FLOAT ANIMATION */
  @keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }
  
  /* RESPONSIVE */
  @media(max-width:768px){
    .about-img-wrapper {
      margin-top: 20px;
    }
  
    .experience-badge {
      left: 10px;
      bottom: 10px;
      padding: 10px;
    }
  }

/*project section*/
/* SECTION */
.projects-section {
  padding: 100px 0 0;
}


/* CARD 
.project-card {
   position: relative;
  border-radius: 24px;
  overflow: hidden; 
}
.project-card img {
    width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px; 
}
/* OVERLAY GRADIENT 
.project-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
    rgba(31, 70, 98, 0.5) 30%,
    rgba(31, 70, 98, 1) 100%
  );
}

/* TITLE *
.project-title {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  width: 90%;
  line-height: 22px;
  z-index: 2;

  text-align: center;
}

/* HOVER *
.project-card:hover img {
  transform: scale(1.05);
  transition: 0.4s;
}

/* SWIPER DOTS */



.projects-section .swiper-slide {
  height: auto;
}

.projects-section  .swiper {
  padding-bottom: 40px; 
}

.projects-section  .swiper-wrapper {
  align-items: stretch;
}


.projectsSwiper {
  position: relative;
   padding-bottom: 80px;
}

/* pagination */
.projects-section.swiper-pagination {
  position: absolute;
  top: 24px I !important;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.projects-section .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border: 2px solid #D6D6D6;
  background: transparent;
  opacity: 1;
  margin: 0 5px !important;
}

.projects-section .swiper-pagination {
  position: relative;
  margin-top: 40px;
}

/* active */
.projects-section .swiper-pagination-bullet-active {
  background: var(--main-blue);
}
/* RESPONSIVE */
@media(max-width:992px){
  .projects-section .project-title {
    font-size: 16px;
  }
}





  /* SECTION services */
 .services-section {
  padding: 20px 0 0 0 ;
  background-image: url(../images/serv-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.services-pic{  background-image: url(../images/serv-bg.png);
  padding-bottom: 80px;
  background-repeat: no-repeat;
  background-position:  left top;
  height: 100%;
    background-size: contain;

  min-height: 680px; 
  
}



/* container */
.accordion{
    display:flex;
  direction: rtl;
  height:400px;
  border-radius:40px;
  gap:10px; 

}
.space {height: 180px;}
/* item */
.acc-item{
    flex: 0 0 89px; 
  position:relative;
  transition: all .5s ease;
  cursor:pointer;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  overflow:hidden;
  border-radius:40px;
}

/* colors */
.acc-item:nth-child(1){ background:var(--beige); }
.acc-item:nth-child(2){ background:var(--Dusty-Mauve); }
.acc-item:nth-child(3){ background:var(--green); }
.acc-item:nth-child(4){ background:var(--light-green); }

/* active */
.acc-item.active{
  flex:1;
}

/* ===================== */
/* 🔥 TITLE ( ) */
/* ===================== */
.acc-title{
  width:89px;            
  height:100%;         
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight:bold;
  font-size:22px;
  text-align:center;
  color: #fff;
}

/* ===================== */
/* 🤍 CONTENT ( ) */
/* ===================== */
.acc-content{
  position:absolute;
  top:0;
  right:89px; 
  width:calc(100% - 89px);
  height:100%;
  background:#fff;
  opacity:0;
  padding:40px;
  transition:.4s;
  text-align:right;
  box-sizing:border-box;
   color:var(--text);
        text-align: justify;
line-height: 28px;
}

.acc-item.active .acc-content{
  opacity:1;
}

.acc-content img { 
    width: 100px;
    margin-bottom: 10px;
}

/* ===================== */
/* 📱 RESPONSIVE */
/* ===================== */
@media(max-width:768px){
 .services-pic {background: none;}
  .accordion{
    flex-direction:column;
    height:auto;
    border-radius:20px;
  }

  .acc-item{
    flex-direction:column;
    height:70px;
    
    text-align: center;
  }

  .acc-item.active{
    height:auto;
  }

  .acc-title{
    width:100%;
    height:auto;
    writing-mode: horizontal-tb;
    transform:none;
    justify-content:center;
    padding-top: 15px;
    margin-bottom:0px;
  }

  .acc-content{
    position:static;
    width:100%;
    height:auto;
    opacity:0;
    max-height:0;
    overflow:hidden;
    padding:0 15px;
   
  }

  .acc-item.active .acc-content{
    opacity:1;
    max-height:400px;
    padding:20px;
    margin-top:10px;
  }
}


/*contact section*/
.contact-section {
  position: relative;
  padding: 180px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}



/* LEFT TEXT */
.contact-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-text h2 {
  
  font-size: 48px;
  margin-bottom: 34px;
      font-weight: bold;

}

.contact-text h3 {
  font-size: 36px;
  color: var(--beige);
  margin-bottom: 34px;
  line-height: 1.4;
  font-weight: 600;

}

.contact-text p {
  font-size: 18px;
  line-height: 1.8;
}

/* FORM BOX */

.contact-form {
  border-radius: 48px;
  padding: 32px;
  border: solid 1.5px #2380C9;
  direction: rtl;
}

.contact-form h4 {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}

/* INPUT GROUP */
.contact-form  .input-group {
  position: relative;
  margin-bottom: 20px;
}

/* INPUT STYLE */
.contact-form .input-group input {
  width: 100%;
  padding: 12px 50px 12px 15px; 
  border-radius: 20px;
  border: 1.5px solid #2380C9;
  background: transparent; 
  color: var(--text);
  outline: none;
}

/* ICON RIGHT */
.contact-form  .input-group i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;

}

.contact-form  .input-group input:focus + i,
.contact-form  .input-group:focus-within i {
  background: rgba(37, 131, 201, 0.35);
  box-shadow: 0 0 18px rgba(42, 143, 220, 0.9);
}


/* FULL WIDTH FIELD */
.contact-form .input-group.full {
  width: 100%;
}

/* BUTTON */
.contact-form button {
  width: 100%;
  padding: 12px;
  background: var(--beige);
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
}



.contact-form .input-group i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback)

 {
    margin-left: calc(var(--bs-border-width) * -1);
    border-top-left-radius: 20px !important; 
     border-bottom-left-radius: 20px !important;
}



/* RESPONSIVE */
@media(max-width:992px){

  .contact-text {
    text-align: center;
    margin-bottom: 40px;
  }

  .contact-text h2 {
    font-size: 32px;
  }

  .contact-text h3 {
    font-size: 24px;
  }

  .contact-form {
    padding: 25px;
  }

  .input-group {
    width: 100%;
  }

  .input-group.col-6 {
    width: 100%;
  }

}




  /* SECTION */
.partners-section {
  padding: 100px 0;
  background: #fff;
}



/* GRID */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

/* LOGO ITEM */
.logo-item {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-radius: 12px;
  transition: 0.3s;
    opacity: 1; 
  transform: none;
}



/* HOVER */
.logo-item:hover img {
  transform: scale(1.1);
}

.logo-item:hover {
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* SHOW ANIMATION */
.logo-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* BUTTON */
.show-more-btn {
  margin-top: 30px;
  padding: 10px 25px;
  border: none;
  background: #764ba2;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  display: none;
}

/* MOBILE */
@media(max-width:768px){

  .logo-item img { max-width: 150px; height: auto;}
 .show-more-btn {
    display: inline-block;
  }
  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hidden-mobile {
    display: none;
  }

  .show-more-btn {
    display: block;
  }
}






/*footer*/
/* FOOTER BACKGROUND */
.main-footer {
  background: url("../images/footer-bg.svg") no-repeat top;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top;
  padding: 180px 0 60px;
  font-weight: 300;
  color: #D6D6D6;
  font-size: 13 px;
}


/* LOGO */
.footer-logo img {
  max-width: 300px;
  margin-bottom: 15px;
}

/* DESCRIPTION */
.footer-desc {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
  text-align: justify;
  direction: rtl;
}

.footer-col:first-child {
  padding-right: 10px;
}

.footer-desc {
  max-width: 90%;
  opacity: 0.9;
}

/* TITLES */
.footer-col h5 {
  margin-bottom: 20px;
  font-weight: 600;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  line-height: 32px;
}

.footer-links li {
  margin-bottom: 10px;
  padding-bottom: 5px;
    border-bottom: dotted 1px rgba(255,255,255,0.2);

}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  padding-right: 5px;
}

/* CONTACT */
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 16px;
}

.contact-item i {
  width: 25px;
  height: 25px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}



.contact-item:first-of-type {
  margin-top: 50px;
}
/* RESPONSIVE */
@media(max-width:768px){


  .footer-row {
    flex-direction: row;
  }

  .footer-col {
    margin-bottom: 30px;
  }

  .footer-col:nth-child(2),
  .footer-col:nth-child(3) {
    width: 50%;
  }

}


/*pages*/
/*about*/
.page-header {
  position: relative;
  height: 48vh;
  background: url("../images/hero3.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 60px;
  z-index: -1;

}

/* DARK OVERLAY */
.page-header .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
    
}

/* CONTENT */
.header-content {
  position: relative;
  z-index: 2;
}

.header-content h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  
}

/* WAVE */
.wave-page-content {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
}

.wave img {
  width: 100%;
  display: block;
}

/* SECTION */
.about-page-section {
  padding: 120px 0;
  background: var(--grey);
}

/* TEXT */
.about-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--main-blue);
  margin-bottom: 20px;
}

.about-page-desc {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-section  .section-title  {color: #fff;}
 .section-title{
  font-size: 36px;
  font-weight: 700;
  color: var(--main-blue);
  margin-bottom: 20px;
}

  .section-desc{
  font-size: 18px;
  color: var(--text);
  margin-bottom: 15px;
  line-height: 1.8;
}

/* IMAGE */
.image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  border-radius: 24px;
  transition: 0.5s;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

/* EXPERIENCE BOX */
.exp-box {
  position: absolute;
  bottom: 20px;
  left: 20px;

  background: var(--main-gradient);
  color: #fff;

  padding: 20px 30px;
  border-radius: 16px;

  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.exp-box h3 {
  font-size: 28px;
  margin: 0;
}

.exp-box span {
  font-size: 14px;
}

/* BUTTON spacing */
.about-content .btn-custom {
  margin-top: 15px;
}

/* ANIMATION */
.about-page-content {
  animation: fadeRight 1s ease;
}

.about-image {
  animation: fadeLeft 1s ease;
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media(max-width:992px){
  .about-section {
    text-align: center;
  }

  .exp-box {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-image {
    margin-top: 30px;
  }
}


.stats-premium {
  padding: 120px 0;
}

/* CARD */
.stat-card {
  padding: 30px 10px;
  transition: 0.4s;
  perspective: 1000px;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.03);
}

/* CIRCLE */
.circle {
  position: relative;
  width: 120px;
  height: 120px;
  margin: auto;
}

.circle svg {
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}

.circle circle {
  fill: none;
  stroke: rgba(255,255,255,0.15);
  stroke-width: 10;
  cx: 60;
  cy: 60;
  r: 50;
}

.circle .progress {
  stroke: var(--beige);
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  transition: 1.5s ease;
}

/* ICON */
.circle .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 26px;
  animation: floatIcon 3s infinite ease-in-out;
}

/* COUNTER */
.counter {
  font-size: 40px;
  font-weight: bold;
  margin-top: 15px;
}

.stat-card p {
  opacity: 0.9;
}

/* float */
@keyframes floatIcon {
  0% { transform: translate(-50%,-50%) translateY(0); }
  50% { transform: translate(-50%,-50%) translateY(-6px); }
  100% { transform: translate(-50%,-50%) translateY(0); }
}

.strategy-section {
  padding: 120px 0;
  background: #fff;
}

/* GRID */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}

/* CARD */
.strategy-card {
  padding: 25px;
  border-radius: 20px;
  color: #fff;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;

  height: 100%;
  min-height: 260px;

  transition: 0.4s;
}

/* ICON */
.strategy-card i {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TITLE */
.strategy-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

/* TEXT */
.strategy-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* HOVER */
.strategy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* COLORS */
.c1 { background: var(--Dusty-Mauve); }
.c2 { background: var(--green); }
.c3 { background: var(--light-green); }
.c4 { background: var(--beige); }
.c5 { background: #717092; }

/* ICON COLOR SAME AS CARD */
.c1 i { color: #fff; }
.c2 i { color: #fff; }
.c3 i { color: #fff; }
.c4 i { color: #fff; }
.c5 i { color: #fff; }

/* RESPONSIVE */
@media(max-width:992px){
  .strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:576px){
  .strategy-grid {
    grid-template-columns: 1fr;
  }
}


/*contat*/
.contact-page {
  padding: 100px 0;
}

/* INFO */
.contact-info h2 {
  font-size: 36px;
  color: var(--main-blue);
  margin-bottom: 15px;
}

.contact-info p {
  color: var(--text);
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-item i {
  width: 40px;
  height: 40px;
  background: var(--main-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}




/* FORM */
.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h4 {
  margin-bottom: 20px;
}

/* INPUT */
 .input-group {
  position: relative;
}

.contact-form .input-group i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--second-blue);
}

.contact-form .input-group input,
.contact-form .input-group textarea {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

/* BUTTON */
 .btn-main {
  margin-top: 15px;
  background: var(--second-blue);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  border: none;
  transition: 0.3s;
  
}

 .btn-main:hover {
  background: var(--main-blue);
    color: #fff;

}



/* SECTION */
.map-section {
  padding: 60px 0;
}

/* BOX */
.map-box {
  width: 100%;
  border: 2px solid var(--grey);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* MAP */
.map-box iframe {
  width: 100%;
  height: 300px; 
  border: 0;
  display: block;
}





/*service one*/
.pr-section {
  padding: 100px 0;
}

/* TITLE */
.section-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.section-desc {
  max-width: 600px;
  margin: auto;
  margin-bottom: 40px;
  color: var(--text);
}

/* GRID */
.pr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 20px;
}

/* CARD */
.pr-card {
  background: #fff;
  border-radius: 20px;
  padding: 12px;
  display: flex;
width: 100%;
  align-items: center;
  gap: 15px;
  justify-content: flex-start; 
  text-align: right; 
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  min-height: 80px; 
  transition: 0.3s;
}

/* ICON */
/* CIRCLE */
.pr-card  .icon-box{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* IMAGE */
.icon-box img{
  width: 48px;
  height: 48px;
}

/* TEXT */
.pr-card p {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

/* HOVER */
.pr-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}


@media(max-width:768px){
  .pr-grid {
    grid-template-columns: 1fr; 
  }
}



.pr-card:nth-child(1) .icon-box{
  background: var(--main-blue);
}

.pr-card:nth-child(2) .icon-box{
  background: var(--second-blue);
}

.pr-card:nth-child(3) .icon-box{
  background: var(--beige);
}

.pr-card:nth-child(4) .icon-box{
  background: var(--Dusty-Mauve);
}

.pr-card:nth-child(5) .icon-box{
  background: var(--green);
}

.pr-card:nth-child(6) .icon-box{
  background: var(--light-green);
}

.pr-card:nth-child(7) .icon-box{
  background: var(--main-blue);
}

.pr-card:nth-child(8) .icon-box{
  background: var(--second-blue);
}

.pr-card:nth-child(9) .icon-box{
  background: var(--beige);
}





/*event service*/
.events-section {
  padding: 100px 0;
  background: #fff;
}


.section-desc {
  max-width: 650px;
  margin: 15px auto 50px;
  color: var(--text);
}

/* GRID */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 25px;
}

/* CARD */
.event-card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 20px;
  text-align: center;
  border: 4px solid transparent;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.event-card img { 
  max-width: 100px ;
}

/* TITLE */
.event-card h4 {
  font-size: 20px;
  margin: 0;
  margin-top: 8px;
}

/* HOVER */
.event-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* 1 */
.event-card:nth-child(1) {
  border-color: var(--purple);
}


/* 2 */
.event-card:nth-child(2) {
  border-color: var(--beige);
}

/* 3 */
.event-card:nth-child(3) {
  border-color: var(--beige);
}


/* 4 */
.event-card:nth-child(4) {
  border-color: var(--Dusty-Mauve);
}


/* 5 */
.event-card:nth-child(5) {
  border-color: var(--green);
}


/* 6 */
.event-card:nth-child(6) {
  border-color: var(--light-green);
}






/* Tablet */
@media(max-width: 992px){
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media(max-width: 576px){
  .events-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .event-card {
    padding: 30px 15px;
  }
}


/*projects*/
/* SECTION */
.portfolio-page {
  padding: 100px 0;
  background: #fff;
}

/* TITLE */
.portfolio-head h2 {
  font-size: 42px;
  margin-bottom: 15px;
  color: var(--main-blue);
}

.portfolio-head {
  margin-bottom: 60px;
}

.portfolio-head p {
  max-width: 700px;
  margin: auto;
  color: var(--text);
  line-height: 1.9;
}

/* FILTER */
.portfolio-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;

  margin: 50px 0;
}

.portfolio-filter button {
  border: 1px solid #ddd;
  background: #fff;

  padding: 12px 24px;

  border-radius: 40px;

  transition: 0.3s;
}

.portfolio-filter button.active,
.portfolio-filter button:hover {
  background: var(--main-gradient);
  color: #fff;
  border-color: transparent;
}


/* ITEM */
.portfolio-item {
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  break-inside: avoid;
}

/* IMAGE */
.portfolio-item img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* SHORT */
.h-small img {
  height: 220px;
}

/* MEDIUM */
.h-medium img {
  height: 320px;
}

/* TALL */
.h-tall img {
  height: 450px;
}

/* EXTRA TALL */
.h-xlarge img {
  height: 550px;
}

/* OVERLAY */
.portfolio-overlay {
  position: absolute;
  inset: 0;

  background:
  linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.1)
  );

  display: flex;
  flex-direction: column;

  justify-content: flex-end;

  padding: 30px;

  opacity: 0;

  transition: 0.4s;
}

/* TITLE */
.portfolio-overlay h4 {
  color: #fff;
  font-size: 22px;

  transform: translateY(20px);

  transition: 0.4s;
}

/* ARROW */
.portfolio-overlay span {
  width: 55px;
  height: 55px;

  border-radius: 50%;

  background: rgba(255,255,255,0.15);

  backdrop-filter: blur(8px);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  margin-top: 15px;

  transform: translateY(20px);

  transition: 0.5s;
}

/* HOVER */
.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover h4,
.portfolio-item:hover span {
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:768px){

  .portfolio-grid {
    columns: 1;
  }

  .portfolio-head h2 {
    font-size: 32px;
  }

}

.portfolio-item{
  background:#000;
}

.portfolio-item img{
  opacity:.95;
}

/*media-services*/
.media-services {
  padding: 100px 0;
}

/* GRID */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 20px;
}

/* CARD */
.media-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 15px;
  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 140px;
}

/* IMAGE */
.media-card img {
  max-width: 100px;
  border-radius: 50%;
  padding: 6px;
  border: 4px solid transparent;
  transition: 0.3s;
  margin-bottom: 8px;
}
/* 1 */
.media-card:nth-child(1) img{
  border-color: var(--purple);
}

/* 2 */
.media-card:nth-child(2) img{
  border-color: var(--second-blue);
}

/* 3 */
.media-card:nth-child(3) img{
  border-color: var(--beige);
}

/* 4 */
.media-card:nth-child(4) img{
  border-color: var(--Dusty-Mauve);
}

/* 5 */
.media-card:nth-child(5) img{
  border-color: var(--green);
}

/* 6 */
.media-card:nth-child(6) img{
  border-color: var(--light-green);
}

/* 7 */
.media-card:nth-child(7) img{
  border-color: var(--main-blue);
}

/* 8 */
.media-card:nth-child(8) img{
  border-color: var(--second-blue);
}

/* 9 */
.media-card:nth-child(9) img{
  border-color: var(--beige);
}
/* TEXT */
.media-card p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
}

/* HOVER */
.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}


/* Tablet */
@media(max-width: 992px){
  .media-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media(max-width: 576px){
  .media-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
}



/*single project*/
/* SECTION */
.single-project{
  padding:100px 0;
}

/* HEADER */
.project-header{
  text-align:center;
  margin-bottom:60px;
}

.project-header h1{
  font-size:40px;
  color:var(--main-blue);
}

.project-desc{
  max-width:700px;
  margin:20px auto;
  color:var(--text);
}

.project-info{
  display:flex;
  justify-content:center;
  gap:20px;
}

/* MASONRY */
.project-gallery{
  columns:3 300px;
  column-gap:20px;
}

.gallery-item{
  margin-bottom:20px;
  break-inside:avoid;
  overflow:hidden;
  cursor:pointer;
  position:relative;
}

.gallery-item img,
.gallery-item video{
  width:100%;
  display:block;
  object-fit:cover;
}

/* HEIGHTS */
.tall img{ height:400px; }
.wide img{ height:250px; }

/* CAPTION (hidden) */
.caption{
  display:none;
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.95);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.lightbox.active{
  display:flex;
}

.lightbox .close{
  position:absolute;
  top:20px;
  right:25px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
  z-index:10001; 
}

.lightbox img,
.lightbox video{
  max-width:80%;
  max-height:80%;
}



.prev,.next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:40px;
  color:#fff;
  cursor:pointer;
}

.prev{ left:30px; }
.next{ right:30px; }

/* CAPTION BOX */
.lightbox-caption{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);
  color:#fff;
  background:rgba(0,0,0,0.5);
  padding:10px 20px;
  border-radius:20px;
}

.lightbox img,
.lightbox video{
  max-width:80%;
  max-height:80%;
}

.lightbox img,
.lightbox video{
  width: auto;
  height: auto;

  max-width: 90vw;
  max-height: 85vh;

  object-fit: contain;
  border-radius: 16px;
}

.lightbox::before{
  pointer-events:none;
}
.close:hover{
  transform: rotate(90deg);
  transition: 0.3s;
}




.project-card {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
    margin-bottom: 20px;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-img {
    position: relative;
}

.project-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.project-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #483D7D;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.project-content {
    padding: 15px;
}

.project-title {
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
    height: 70px; 
    overflow: hidden;
}

.read-more {
    display: inline-block;
    margin-top: 16px;
    color: #483D7D;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}


.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icons  .icon {
   color: #fff;
  background: rgba(255,255,255,0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.social-icons  .icon:hover {
  opacity: 0.7;
}





.company-identity{
    padding:100px 0;
 
}

.identity-cards{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-bottom:80px;

}

.identity-card{

    background:var(--grey);
    padding:40px 35px;
    border-radius:24px;
    text-align:center;
    transition:.4s;
    border:1px solid transparent;

}

.identity-card:hover{

    transform:translateY(-8px);
    border-color:var(--second-blue);
    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.card-icon{

    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:linear-gradient(135deg,var(--main-blue),var(--second-blue));

    color:#fff;
    font-size:30px;

}

.card-title{

    color:var(--main-blue);
    margin-bottom:18px;
    font-size:30px;
    font-weight:700;

}

.card-description{

    color:var(--text);
    line-height:2;
    font-size:16px;

}

.values-list{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:25px;

}

.value-item{

    background:#fff;
    color:var(--main-blue);

    padding:10px 20px;

    border-radius:30px;

    font-weight:600;

    transition:.3s;

}

.value-item:hover{

    background:var(--second-blue);
    color:#fff;

}

/* ================= Goals ================= */

.goals-section{

    text-align:center;

}


.goals-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;

}

.goal-card{

    background:#fff;

    padding:25px;

    display:flex;
    align-items:center;
    gap:20px;

    border-radius:20px;

    border-right:5px solid var(--second-blue);

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

}

.goal-card:hover{

    transform:translateY(-6px);

}

.goal-icon{

    width:55px;
    height:55px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:var(--main-blue);

    color:#fff;

    font-size:20px;

    flex-shrink:0;

}

.goal-card p{

    color:var(--text);
    font-size:18px;
    line-height:1.8;
    text-align:right;

}

/* ============ Responsive ============ */

@media(max-width:991px){

.identity-cards{

    grid-template-columns:1fr;

}

.goals-grid{

    grid-template-columns:1fr;

}

}

@media(max-width:576px){

.company-identity{

    padding:70px 0;

}

.identity-card{

    padding:30px 22px;

}

.card-title{

    font-size:24px;

}

.section-title{

    font-size:30px;

}

.goal-card{

    padding:18px;
    gap:15px;

}

.goal-card p{

    font-size:16px;

}

.card-icon{

    width:70px;
    height:70px;
    font-size:26px;

}

.goal-icon{

    width:45px;
    height:45px;
    font-size:18px;

}

}