/*====================================================
                DEFAULT VALUES:

                Font Family                 : Roboto Condensed
                
                Greenish Blue               : #0C127A       (Buttons, Icons, Links, Lines & Backgrounds)
                Steel Gray                  : #41464b       (Headings)
                light Gray                  : #61666b       (Heading Second)
                Gray                        : #717171       (Paragraphs)
                Gray extra light            : #f5f5f5       (Content Background)
                White                       : #fff          (Text With Black Backgrounds)
                Black                       : #000 

======================================================*/

@import url('https://fonts.googleapis.com/css?family=Hind:400,600');

/* General CSS */

html,
body {
    
    height: 100%;
}

body {
    font-family: 'Dana', sans-serif;
}  
h1{
    font-family: 'Modam';
    font-weight: 700;
}  
h5,h3,h4{
    font-family: 'Modam';
    font-weight: 600;
}


h2, h3, h4, h5 {
  
    color:#41464b;
    text-transform: uppercase;
} 

a {
    color: #0C127A;
}

p {
    font-family: 'Dana', sans-serif;
    color: #64707b;
    font-size: .875rem;
    font-weight: 300;
    line-height: 1.75rem;
}

@media (min-width: 1600px) {
    p {
        font-family: 'Dana', sans-serif;
        color: #64707b;
        font-weight: 300;
    }    
}
 
/*====================================================
                       NAVIGATION
======================================================*/
     
  /*====================================================
                       NAVIGATION
======================================================*/

:root {
    --primary-color: #0C127A;
    --gray-light: #f0f0f0;
    --gray-border: #e0e0e0;
    --text-muted: #666;
    --transition: all 0.3s ease;
    --font-main: "Dana", sans-serif;
}

/*====================================================
=                TOP BAR                            =
====================================================*/
.top-menubar-nav {
    display: none;
}

 .topmenu {
    position: relative;
    z-index: 9999;
    background: var(--gray-light);
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    padding: 6px 10px;
}

/* Social Icons */
.header-socials {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
}

.header-socials img {
    width: 18px;
    height: 18px;
    transition: var(--transition);
}

.header-socials img:hover {
    transform: scale(1.15);
}

/*====================================================
=                TOP CONTACTS                       =
====================================================*/
.topmenu ul {
    margin: 0;
    padding: 0;
}

.top-contacts li {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 12px;
    color: var(--text-muted);
    margin-right: 15px;
}

.top-contacts li a {
    color: inherit;
}

.top-contacts i {
    font-size: 13px;
    margin-right: 4px;
    color: #999;
}

/*====================================================
=                TOP DATA / SOCIAL                  =
====================================================*/
.top-data {
    text-align: right;
}

.top-data li {
    display: inline-block;
    padding: 6px 12px;
    border-right: 1px solid var(--gray-border);
}

.top-data li:first-child {
    border-left: 1px solid var(--gray-border);
}

.top-social {
    width: 26px;
    height: 26px;
    line-height: 22px;
    border-radius: 50%;
    text-align: center;
    background: #fff;
    transition: var(--transition);
}

.top-social.fa-facebook {
    border: 2px solid #4267b2;
    color: #4267b2;
}

.top-social.fa-twitter {
    border: 2px solid #4AB3F4;
    color: #4AB3F4;
}

.top-social.fa-google-plus {
    border: 2px solid #e24343;
    color: #e24343;
}

.top-social:hover {
    color: #fff;
}

.fa-facebook:hover {
    background: #4267b2;
}

.fa-twitter:hover {
    background: #4AB3F4;
}

.fa-google-plus:hover {
    background: #e24343;
}

/*====================================================
=                NAVBAR                             =
====================================================*/
.affix {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0;
    transition: var(--transition);
    background: #fff;
}

.navbar-nav {
    float: right;
}

.navbar-nav>li {
    height: 65px;
    line-height: 65px;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.navbar-nav>li:hover {
   /* background: var(--gray-light);*/
    /*border-bottom-color: var(--primary-color);*/
    color: var(--primary-color);
}

.navbar-nav>li>a {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
    color: #808282 !important;
    margin: 0 12px;
    text-transform: uppercase;
    transition: var(--transition);
}

.navbar-nav>li>a:hover,
.navbar-nav>li>a.active {
    color: var(--primary-color) !important;
}

/*====================================================
=                SEARCH                             =
====================================================*/
.navbar .search {
    font-size: 15px;
    cursor: pointer;
    padding: 28px 10px;
    color: #aaa;
}

.navbar .search:hover {
    color: var(--primary-color);
}

.search-open {
    position: absolute;
    top: 65px;
    right: 0;
    background: #fff;
    padding: 6px;
    display: none;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    z-index: 1001;
}

.search-open input {
    border: 1px solid var(--primary-color);
}

/*====================================================
=                DROPDOWN                           =
====================================================*/
.dropdown-cust {
    min-width: 220px;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    border-radius: 0;
    padding: 0;
}

.dropdown-cust .dropdown-item {
    height: 42px;
    line-height: 42px;
    padding: 0 16px;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-border);
    transition: var(--transition);
}

.dropdown-cust .dropdown-item:hover {
    background: var(--gray-light);
}

/*====================================================
=                MOBILE OFFCANVAS                   =
====================================================*/

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 1040;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Offcanvas */
.mobile-offcanvas {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transition: right 0.35s ease;
    box-shadow: -6px 0 25px rgba(0, 0, 0, 0.15);
}

.mobile-offcanvas.active {
    right: 0;
}

/* Header */
.mobile-menu-header {
    position: relative;
    padding: 18px 16px 14px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

/* 🔥 Fix Logo Size */
.mobile-logo {
    max-width: 130px;
    height: auto;
}

/* Close Button */
.close-menu {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f3f3f3;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #333;
    transition: 0.2s;
}

.close-menu:hover {
    background: #e0e0e0;
}

/* Menu Items */
.mobile-menu-nav {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-menu-nav li {
    border-bottom: 1px solid #f2f2f2;
}

.mobile-menu-nav li a {
    display: block;
    padding: 14px 22px;
    font-family: "Dana", sans-serif;
    font-size: 15px;
    color: #333;
    text-align: right;
    transition: background 0.25s, color 0.25s;
}

.mobile-menu-nav li a:hover {
    background: #f7f7f7;
    color: var(--primary-color);
}

/* Footer */
.mobile-menu-footer {
    padding: 14px 18px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #555;
    background: #fafafa;
}

.mobile-menu-footer p {
    margin: 6px 0;
}

/* Desktop Disable */
@media (min-width: 992px) {

    .mobile-offcanvas,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/*====================================================
=                RESPONSIVE                         =
====================================================*/
@media (max-width: 991px) {
    .navbar-nav {
        float: none;
        width: 100%;
        border-top: 1px solid #ddd;
    }

    .navbar-nav>li {
        height: auto;
        line-height: 40px;
        border-bottom: 1px solid #ddd;
    }

    .navbar .search {
        display: none;
    }
}

@media (min-width: 992px) {

    .mobile-offcanvas,
    .mobile-menu-overlay {
        display: none;
    }
}

/*====================================================
                  BUTTON (Generic)
======================================================*/

    .btn-general {
        background-color: transparent;
        text-align: center;
        border-width: 1px;
        border-radius: 0px;
        font-size: 16px;
        padding: 10px 15px;
        font-weight: 400;
        text-transform: uppercase;
    }

    .btn-white {
        border-color: var(--primary-color);
        background-color:  var(--primary-color);
        color: #fff;
    }

    .btn-white:hover,
    .btn-white:focus {
        background-color: transparent;
        color:  var(--primary-color);
        cursor: pointer;
    }

    .btn-green {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    .btn-green:hover,
    .btn-green:focus {
        background-color: #0C127A;
        color: #fff;
        cursor: pointer;
    }
     
/*====================================================
                       HOME
======================================================*/

    .carousel-fade {
        
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-image: url(../img/hero-banner.webp);
    }

    .carousel-fade .carousel-inner .carousel-item {
        -webkit-transition-property: opacity;
        transition-property: opacity;
    }

    .carousel-fade .carousel-control {
        z-index: 2;
    }

    .carousel-fade {
        position: relative;
        height: 75vh;
    }

    .hero {
        position: absolute;
        top: 45%;
        left: 65%;
       /* background: rgba(0, 0, 0, 0.7);
        border: 5px solid #fff;*/
        padding: 40px;
        z-index: 3;
        color: #c0c0c0;
        text-align: right;
        text-transform: uppercase;
        text-shadow: 1px 1px 0 rgba(0, 0, 0, 0);
        -webkit-transform: translate3d(-50%, -50%, 0);
        -moz-transform: translate3d(-50%, -50%, 0);
        -ms-transform: translate3d(-50%, -50%, 0);
        -o-transform: translate3d(-50%, -50%, 0);
        transform: translate3d(-50%, -50%, 0);
    }

    .hero h1 {
         font-family: 'Modam'!important;
        font-weight: 600;
        font-size: 3.5em;
        color: #fff;
        width: 600px;
        margin: 0;
        padding: 0;
        opacity: 1;
        margin-bottom: 30px;
    }

    .hero h1 span a {
        color: #0C127A;
        text-decoration: none;
    }

    .hero h3 {
        font-family: 'Dana';
        font-weight: 600;
        font-size: 1em;
        color: #fff;
        margin-bottom: 15px;
    }

    .hero button {
        color:#fff;
        margin: 10px 0;
        background-color: #4AB3F4;
        font-family: 'Dana';
    }

    .carousel-fade .carousel-inner .carousel-item .hero {
        opacity: 0;
        -webkit-transition: 2s all ease-in-out .1s;
        -moz-transition: 2s all ease-in-out .1s;
        -ms-transition: 2s all ease-in-out .1s;
        -o-transition: 2s all ease-in-out .1s;
        transition: 2s all ease-in-out .1s;
    }

    .carousel-fade .carousel-inner .carousel-item.active .hero {
        opacity: 1;
        -webkit-transition: 2s all ease-in-out .1s;
        -moz-transition: 2s all ease-in-out .1s;
        -ms-transition: 2s all ease-in-out .1s;
        -o-transition: 2s all ease-in-out .1s;
        transition: 2s all ease-in-out .1s;
    }

    .overlay {
        position: absolute;
        width: 100%;
        height: 90%;
        z-index: 2;
        background: rgba(0, 0, 0, 0);
    }

    .carousel-fade .carousel-inner .carousel-item {
        height: 100vh;
    }

    @media (max-width: 767px) {
        .hero h1 {
            font-size: 2.5em;
            color: #fff;
            font-weight: 700;
            width: 400px;
            margin: 0;
            padding: 0;
            opacity: 1;
            margin-bottom: 30px;
        }
        .hero h3 {
            font-size: 1em;
            color: #fff;
            letter-spacing: 2px;
            line-height: 25px;
            margin-bottom: 15px;
        }
    }

    @media (max-width: 575px) {
        .hero {
            position: absolute;
            top: 45%;
            padding: 20px 0px;
        }
        .hero h1 {
            font-size: 1.9em;
            color: #fff;
            font-weight: 700;
            width: 370px;
            margin: 0;
            padding: 0;
            opacity: 1;
            margin-bottom: 30px;
        }
        .hero h3 {
            font-size: .9em;
            color: #fff;
            letter-spacing: 2px;
            line-height: 25px;
            margin-bottom: 15px;
        }
    }

    @media (max-width: 420px) {
        .hero {
            position: absolute;
            top: 45%;
            padding: 20px 0;
            border: 3px solid #fff;
        }
        .hero h1 {
            font-size: 1.7em;
            color: #fff;
            font-weight: 700;
            width: 295px;
            margin: 0;
            padding: 0;
            opacity: 1;
            margin-bottom: 30px;
        }
        .hero h3 {
            font-size: .8em;
            color: #fff;
            letter-spacing: 2px;
            line-height: 25px;
            margin-bottom: 15px;
        }
    }

/*====================================================
               OTHER HOME PAGE
======================================================*/

      .home-p {
        z-index: 1;
        padding: 100px 0;
        position: relative;
      }

      .home-p.breadcrumbs-lg {
        padding: 200px 0;
      } 

      .home-p.pages-head1 {
      
        position: relative;
        overflow: hidden;
        background: linear-gradient(180deg, #0C127A 0%, #1A2AFF 100%);
        padding: 60px 0;
        color: #fff;
         
        
      }

      .home-p.pages-head2 {
        background: url(../img/img/banner-2.jpg) no-repeat;
        background-size: cover;
        background-position: center center;
      } 

      .home-p.pages-head3 {
        background: url(../img/img/banner-3.jpg) no-repeat;
        background-size: cover;
        background-position: center center;
      }  

      .home-p.pages-head4 {
        background: url(../img/img/banner-4.jpg) no-repeat;
        background-size: cover;
        background-position: center center;
      }  

      .home-p:after {
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        content: " ";
        position: absolute;
        background: rgba(0,0,0,0.2);
      }

      .home-p h1 {
        font-family: 'Modam'!important;
        font-weight: 700;
        color: #fff;
        font-size: 40px;
        line-height: 50px;
        text-transform: uppercase;
      }

      .home-p p {
        color: #fff;
        font-weight: 200;
        margin-bottom: 0;
        text-transform: uppercase;
      }

      @media (max-width: 992px) {
        .home-p.breadcrumbs-lg {
          padding: 100px 0;
        }
      }

      @media (max-width: 768px) {
        .home-p,
        .home-p.breadcrumbs-lg {
          padding: 50px 0;
        }

        .home-p h1 {
          font-size: 30px;
          line-height: 40px;
        }

        .home-p p {
          font-size: .875rem;
        }
      }

/*====================================================
               TITLE CONTENT (Generic)
======================================================*/

    .title-bar {
        padding:100px 0 50px 0 ;
    }

    .title-bar h1 {
        font-family:'Modam';
        color: #41464b;
        text-align: center;
        font-weight: 700;
        margin: 20px auto 10px auto;
    }

   .heading-border {
        width: 60px;
        height: 10px;
        background-color: #0C127A;
        margin: 0 auto 20px auto;
    }

    .heading-border-light {
        width: 30px;
        height: 5px;
        background-color: #0C127A;
        margin: 0 0 20px 0;
    }

    .title-bar p {
        color: #717171;
    }

    .title-bar p {
        text-align: center;
        padding-bottom: 40px;
        margin: 0 auto;
        max-width: 700px;
    }

    .title-bar .title-but {
        font-family: 'Dana'!important;
        font-weight: 500;
        margin: 0;
        background-color: transparent;
        text-align: center;
    }

    @media (max-width: 575px) {

        .title-bar {
            padding: 50px 0;
        }

        .title-bar h1 {
            color: #41464b;
            font-size: 30px;
            text-align: center;
            font-weight: 700;
            margin: 20px auto 10px auto;
        }

        .title-bar p {
            text-align: center;
            line-height: 1.5;
            padding-bottom: 40px;
            margin: 0 auto;
            max-width: 700px;
        }
    }

    @media (min-width: 1600px) {
        .title-bar p {
            font-size: .875rem;
        }
    }

    /*new style for articles in index.html*/
  /* wrapper */
.articles-wrapper {
  position: relative;
}

/* اسکرول افقی */
.articles-horizontal-scroll {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 40px 20px;
}

/* مخفی کردن اسکرول بار */
.articles-horizontal-scroll::-webkit-scrollbar {
  display: none;
}
.articles-horizontal-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* کارت */
.article-card {
  flex: 0 0 300px;
  max-width: 300px;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* دکمه‌های فلش */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.scroll-btn i {
  font-size: 22px;
  color: #333;
}

.scroll-btn:hover {
  background: #0C127A;; /* رنگ دلخواه */
}
.scroll-btn:hover i {
  color: #fff;
}

/* موقعیت فلش‌ها */
.scroll-left {
  right: -10px;
}
.scroll-right {
  left: -10px;
}


/* کارت منظم */
.desc-comp-offer-cont {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.thumbnail-blogs {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.thumbnail-blogs img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* 👈 کل فضا پر می‌شود */
  object-position: center;
  display: block;
}

.article-date {
  font-size: 10px;
  color: #888;
  
  font-family: 'Dana';
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}







/*====================================================
               COLOR (Generic)
======================================================*/

    .cl-white {
        color: #fff;
    }

    .cl-atlantis {
        color: #fff;
    }

    .bg-white {
        background: #fff;
    }

    .bg-atlantis {
        background: #0C127A;
    }

    .bg-starship {
        background: #cdd613;
    }

    .bg-matisse {
        background: #0b385d;
    }

    .bg-chathams {
        background: #0aa1b9;
    }

    .bg-gray {
        background: #f0f0f0;
    }

    .bg-light-gray {
        background: #f9f9f9;
    }

    .bg-gradiant {
        background: -moz-linear-gradient(45deg, rgba(34, 155, 242, 1) 0%, rgba(0, 128, 129, 1) 99%, rgba(0, 128, 128, 1) 100%);
        /* ff3.6+ */
        background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(34, 155, 242, 1)), color-stop(99%, rgba(0, 128, 129, 1)), color-stop(100%, rgba(0, 128, 128, 1)));
        /* safari4+,chrome */
        background: -webkit-linear-gradient(45deg, rgba(34, 155, 242, 1) 0%, rgba(0, 128, 129, 1) 99%, rgba(0, 128, 128, 1) 100%);
        /* safari5.1+,chrome10+ */
        background: -o-linear-gradient(45deg, rgba(34, 155, 242, 1) 0%, rgba(0, 128, 129, 1) 99%, rgba(0, 128, 128, 1) 100%);
        /* opera 11.10+ */
    }

/*====================================================
                LOGIN OR REGISTER
======================================================*/

        #login-modal .modal-dialog {
            margin-top: 170px;
            width: 400px;
        }

        #login-modal label {
            color: #888;
            margin-bottom: 0;
        }

        #login-modal input[type=text],
        input[type=password] {
            margin-bottom: 15px;
            border-radius: 0;
        }

        .modal-backdrop.in {
            filter: alpha(opacity=10);
            opacity: .8;
        }

        .modal-content {
            /*background-color: #ececec;*/
            border: 3px solid #0C127A;
            border-radius: 0px;
            outline: 0;
        }

        .modal-header {
            min-height: 16.43px;
            padding: 15px 15px 15px 15px;
            border-bottom: 0px;
        }

        .modal-body {
            position: relative;
            padding: 25px 45px;
        }

        .modal-footer {
            padding: 15px 45px 15px 45px;
            text-align: left;
            width: 100%;
            border-top: 0px;
            -ms-flex-align: center;
            align-items: center;
            -ms-flex-pack: end;
            justify-content: center;
        }

        .modal-footer {
            display: -ms-flexbox;
            display: flex;
            padding: 15px;
            border-top: 1px solid #e9ecef;
        }

        .checkbox {
            margin-bottom: 0px;
        }


        .btn-link {
            padding: 5px 10px 0px 0px;
            color: #95a5a6;
        }

        .btn-link:hover,
        .btn-link:focus {
            color: #2c3e50;
            text-decoration: none;
        }

        @media (max-width: 575px) {
            #login-modal .modal-dialog {
                margin-top: 100px;
                width: 300px;
                margin: 100px auto;
            }
        }

/*====================================================
                        ABOUT
======================================================*/

    .about .about-content-box {
        padding: 80px 20px;
        text-align: center;
    }

    .about-content-box>i {
        color: #fff;
        height: 150px;
        line-height: 150px;
        font-size: 100px;
    }

    .about-content-box>h5 {
        font-family: 'Modam';       
        color: #fff;
        text-transform: none;
        font-weight: normal;
        padding: 20px 0 10px 0;
    }

    .about-content-box>p {
        color: #fff;
    }

    @media (max-width: 767px) {
        .about .container-fluid {
            width: 60%
        }

        .about .container-fluid .col-md-4 {
            margin: 15px 0;
        }
    }

    @media (max-width: 585px) {
        .about .container-fluid {
            width: 80%
        }

        .about .container-fluid .col-md-4 {
            margin: 15px 0;
        }
    }


    @media (max-width: 420px) {
        .about .container-fluid {
            width: 100%
        }

        .about .container-fluid .col-md-4 {
            margin: 0;
        }
    }


/*====================================================
                       STORY
======================================================*/

    #story {
        padding-bottom: 50px;
    }

    .story-desc {
        padding: 0 40px 40px 40px;
    }

    .story-desc>h6{
        color: #0C127A;
        font-weight: 700;
    }
     .story-desc>h3{
        font-family:'Modam';
        font-weight: 700;
    }


    .story-desc>p {
        font-size: .875rem;
        text-align:justify;
        
    }

    .story-descb {
        padding: 10px 10px 30px 10px;
        margin: 60px 0;
        background: #f7f7f7;
        text-align: center;
        -webkit-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }

    .story-descb:hover {
        box-shadow: 2px 2px 6px 1px rgba(158, 158, 158, 0.77);
        border-bottom: 5px solid #0C127A;
        margin-top: 55px;
        cursor: pointer;
    }

    .story-descb>i {
        font-size: 45px;
        height: 60px;
        line-height: 60px;
        color: #999;
    }

    .story-descb h6 {
        font-size: 18px;
        color: #666;
        padding: 25px 0 5px;
    }

    .story-descb p {
        color: #867f7f;
        font-size: .875rem;
    }

    .story-himg img{
        box-shadow: 3px 3px 10px 1px rgba(158, 158, 158, 0.68) !important;
    }

    @media (max-width: 767px) {
        .story-descb {
            padding: 10px 10px 30px 10px;
            margin: 20px 0;
            background: #f7f7f7;
            text-align: center;
            -webkit-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
        }
    }

    @media (max-width: 585px) {
        .story-descb {
            padding: 10px 10px 30px 10px;
            margin: 20px 10%;
            background: #f7f7f7;
            text-align: center;
            -webkit-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
        }
    }

    @media (max-width: 420px) {
        .story-descb {
            padding: 10px 10px 30px 10px;
            margin: 20px 0%;
            background: #f7f7f7;
            text-align: center;
            -webkit-transition: all .5s ease-in-out;
            transition: all .5s ease-in-out;
        }
    }

    @media (min-width: 1600px) {
        .story-desc>p {
            font-size: .875rem;
        }

        .story-descb p {
            color: #867f7f;
            font-size: .875rem;
        }
    }

/*====================================================
                       THOUGHT
======================================================*/

    .bg-parallax {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        /*background-attachment: fixed;*/
    }

    .thought-bg {
        height: 400px;
        background-image: url(../img/thought-bg.jpg);
    }

    .title-bar-thought p {
        color: #fff;
        padding-top: 50px;
    }

    .title-bar-thought h6 {
        text-align: center;
        font-style: italic;
        color: #fff;
    }

    .overlay-thought {
        position: absolute;
        width: 100%;
        height: 400px;
        background: rgba(33, 150, 243, 0.53);
    }

    #thought .title-bar {
        padding: 50px 0;
    }


/*====================================================
                       OFFER
======================================================*/

    #comp-offer {
        padding: 100px 0;
    }

    .desc-comp-offer h2,
    .desc-comp-offer>.heading-border-light {
        margin-left: 20px;
        font-family: 'Modam';
        font-weight: 600;
    }

    .desc-comp-offer-cont {
        margin-bottom: 10px;
        box-shadow: 3px 3px 10px 1px rgba(158, 158, 158, 0.68);
        -webkit-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }

    .desc-comp-offer-cont:hover {
        margin-bottom: 10px;
        border-bottom: 5px solid #0C127A;
        margin-top: -5px;
        cursor: pointer;
    }

    .desc-comp-offer .btn-green {
        margin: 15px;
        font-family: 'Dana';
        font-weight: 500;
    }

    .desc-comp-offer .btn-white {
        margin: 15px;
        padding: 10px 18px;
        font-family: 'Dana';
        font-weight: 500;
    }

    .thumbnail-blogs {
        position: relative;
        overflow: hidden;
    }
    .content-blog{
        padding: 10px;
    }

    .caption {
        position: absolute;
        top: 0;
        right: 0;
        background: rgba(33, 150, 243, 0.72);
        width: 100%;
        height: 100%;
        padding: 2%;
        display: none;
        text-align: center;
        color: #fff !important;
        z-index: 2;
    }

    .caption i {
        margin: 30% 4px;
        border: 2px solid #fff;
        cursor: pointer;
        font-size: 25px;
        border-radius: 50%;
        padding: 5px;
        transition: border 0.2s ease, font-size 0.2s ease;
    }

    .desc-comp-offer-cont h3 {
        font-family: 'Dana';
        font-weight: 600;
        padding: 30px 10px 0 10px;
        font-size: 16px;
        text-transform: none;
        line-height: 1.5rem;
    }
    .desc-comp-offer-cont h3:hover {
       color: #0C127A;
    }
    .desc-comp-offer-cont p {
        font-family: 'Dana';
        font-weight: 400;
        padding: 0 10px;
        text-align:justify;
        
    }

    .desc-comp-offer-cont a {
        font-family: 'Dana';
        font-weight: 400;
        color:#0C127A;
        padding: 0px 10px;
    }
    .read-more-icon{
        margin:10px;
    }
     .desc-comp-offer-cont a:hover {
      
        color:#ED1C24;
            
    text-decoration: underline;
        
    }

    @media (min-width: 768px) and (max-width: 991px) {

        #comp-offer {
            margin-left: 10px
        }

        #comp-offer .col-md-3:first-child {
            -ms-flex: 0 0 90%;
            flex: 0 0 90%;
            max-width: 90%!important;
        }

        #comp-offer .col-md-3 {
            -ms-flex: 0 0 33%;
            flex: 0 0 33%;
            max-width: 33%!important;
        }
    }

    @media (max-width: 767px) {
        .desc-comp-offer {
            margin-top: 20px;
        }
    }

    @media (max-width: 575px) {
        #comp-offer .col-sm-6 {
            -ms-flex: 0 0 70%;
            flex: 0 0 70%;
            max-width: 70%!important;
        }

        .desc-comp-offer {
            margin: 20px auto;
        }
    }

    @media (max-width: 420px) {
        #comp-offer .col-sm-6 {
            -ms-flex: 0 0 95%;
            flex: 0 0 95%;
            max-width: 95%!important;
        }
    }

    @media (min-width: 1600px) {
        .desc-comp-offer-cont p {
            padding: 0 10px;
            
        }
    }

/*====================================================
                      WHAT WE DO
======================================================*/

 .what-we-do {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0C127A 99%, #1A2AFF 10%);
}

/* لایه SVG با قابلیت opacity */
.what-we-do::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/banner-blue.svg") no-repeat center;
    background-size: cover; /* کل عرض را بپوشاند */
    opacity: 0.1;
    z-index: 1;
}

/* محتوای سکشن روی بک‌گراند قرار می‌گیرد */
.what-we-do > * {
    position: relative;
    z-index: 2;
}



    .what-we-do h3 {
        font-family: 'Modam';
        font-weight: 600;
        padding-top: 20px;
        color: #fff;
        font-weight: 700;
    }

    .what-we-do .heading-border-light {
        background-color: #fff;
    }

    .what-we-do p {
        color: #fff;
        text-align: justify;
    }

    /* service icon*/
.service-header {
    display: flex;
    align-items: center;       /* تراز عمودی وسط */
    justify-content: flex-end; /* چون فارسی‌ست، محتوا به راست چیده شود */
    gap: 10px;  
    padding-bottom: 10px;  
                  
}

.service-header img {
    width: 48px;   /* اندازه دلخواه */
    height: auto;
    transition: transform 0.3s ease; 
}

/* افکت هاور */
.service-header img:hover {
 
  filter: grayscale(0%);
  transform: scale(1.05);
}


    .what-we-desc {
        padding: 20px;
        color: #fff;
    }

    .what-we-desc i {
        float: right;
        font-size: 35px;
        margin-left: 20px;
        height: 95px;
        line-height: 45px;
    }

    .what-we-desc h6 {
        font-family: 'Modam';
        font-weight: 600;
        height: 30px;
        font-size: 18px;
        line-height: 30px;
    }

    .what-we-desc p {
        font-family: 'Dana';
        
    }

    @media (min-width: 992px) and (max-width: 1199px) {
        .what-we-desc i {
            float: left;
            font-size: 35px;
            margin-right: 20px;
            height: 125px;
            line-height: 45px;
        }
    }

    @media (min-width: 768px) and (max-width: 991px) {

        .what-we-do {
            padding: 110px 50px;
        }

        .what-we-do .col-md-4 {
            -ms-flex: 0 0 50%;
            flex: 0 0 50%;
            max-width: 50%!important;
        }
    }

    @media (max-width: 575px) {
        .what-we-do .col-sm-6 {
            -ms-flex: 0 0 80%;
            flex: 0 0 80%;
            max-width: 80%!important;
            margin: auto;
        }
    }

    @media (max-width: 575px) {
        .what-we-do .col-sm-6 {
            -ms-flex: 0 0 95%;
            flex: 0 0 95%;
            max-width: 95%!important;
            margin: auto;
        }
    }

    @media (min-width: 1600px) {
        .what-we-desc p {
            font-size: .875rem;
        }
    }

/*====================================================
                   SERVICE-HOME
======================================================*/

    #service-h {
        padding: 120px 0 50px;
    }

    .service-h-desc {
        padding: 50px 10px 90px 60px;
    }

    .service-h-desc>h6 {
        color: #0C127A;
        font-weight: 700;
    }

    .service-himg {
        background: #F0F0F0;
        height: 475px;
        margin-top: 30px;
        width: 70%;
    }

    .service-himg iframe {
        height: 370px;
        width: 130%;
        margin: 50px -60px 70px 65px;
        box-shadow: 3px 3px 8px 1px #505050;
        border: 1px solid #0C127A;
    }

    .service-h-tab {
        position: relative;
        margin: 20px 0;
    }

    .service-h-tab .nav-tabs>a {
        border-radius: 0;
        width: 190px;
        text-align: center;
        height: 55px;
        line-height: 40px;
        border: 1px solid #ddd;
    }

    .service-h-tab .nav-tabs>a.active {
        color: #fff;
        border: 1px solid #0C127A;
        background: #0C127A;
    }

    .service-h-tab .tab-content .tab-pane {
        padding: 20px 20px 0px 10px;
    }

    @media (min-width: 768px) and (max-width: 1199px) {
        .service-himg {
            background: #fff;
            height: 475px;
            margin: auto;
        }

        #service-h .col-md-6 {
            -ms-flex: 0 0 100%;
            flex: 0 0 100%;
            max-width: 100%!important;
        }

        .service-himg iframe {
            height: 370px;
            width: 100%;
            margin: 50px auto 70px auto;
            box-shadow: 3px 3px 8px 1px #505050;
            border: 1px solid #0C127A;
        }
    }

    @media (min-width: 768px) and (max-width: 991px) {

        .service-himg iframe {
            height: 370px;
            width: 100%;
            box-shadow: 3px 3px 8px 1px #505050;
            border: 1px solid #0C127A;
        }
    }

    @media (max-width: 767px) {

        #service-h {
            padding: 30px 0 0px;
        }

        .service-himg {
            background: #fff;
            height: 315px;
            width: 100%;
        }
        .service-himg iframe {
            height: 270px;
            width: 100%;
            margin: 50px auto 70px auto;
            box-shadow: 3px 3px 8px 1px #505050;
            border: 1px solid #0C127A;
        }

        .service-h-tab .nav-tabs>a {
            border-radius: 0;
            width: 100%;
            text-align: center;
            height: 55px;
            line-height: 40px;
            border: 1px solid #ddd;
        }
    }

    @media (max-width: 420px) {
        .service-himg iframe {
            height: 200px;
            width: 100%;
            margin: 50px auto 70px auto;
            box-shadow: 3px 3px 8px 1px #505050;
            border: 1px solid #0C127A;
        }

        .service-h-desc {
            padding: 50px 10px 90px 10px;
        }
    }



/*====================================================
                       CLIENT
======================================================*/

    #client {
        padding-bottom: 100px;
        background: #f0f0f0;
    }


/*====================================================
                   CONTACT-HOME
======================================================*/

    .contact-h-bg {
        background-image: url(../img/A1.webp);
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
        filter: grayscale(60%);
         transition: 0.3s;
    
    }
    .cl-white{
        font-family: 'Dana';
    }
    .cl-sub-title{
        font-family:'Dana';
        color:#fff;

    }

    .contact-h-cont {
        margin: 60px 0;
        padding: 50px;
        background: #0c117a8a;
    }

    .contact-h-cont input.form-control,
    .contact-h-cont textarea.form-control {
        border-radius: 0px;
    }

    .contact-h-cont button {
        font-family: 'Dana';
        background: #fff;
        color: #0C127A;
        margin-top: 10px;
        text-align: center;
    }

    .contact-h-cont button:hover {
        background: #ED1C24;
        color: #fff;
    }



/*====================================================
                    FOOTER
======================================================*/
    .footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0C127A 0%, #1A2AFF 100%);
    padding: 60px 0;
     color: #fff;
 /* background-color: #2d2d2d;*/
  
}
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/banner-blue.svg") no-repeat center;
    background-size: cover; 
    opacity: 0.1;
    z-index: 1;
}

/* محتوای سکشن روی بک‌گراند قرار می‌گیرد */
.footer > * {
    position: relative;
    z-index: 2;
}

.footer-logo {
  width: 160px;
}

.footer-desc {
    font-family: 'Dana';
    color:#fff;
  line-height: 1.8;
  opacity: 0.85;
  font-size: 14px;
  text-align:justify;
}

.heading-footer h2 {
     font-family: 'Dana';
    color:#fff;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  font-family: 'Dana';
  color:#fff; 
  margin-bottom: 10px;
  list-style: none;
}

.footer-links li i {
  margin-left: 6px;
  color: #fff;
}

.footer-links a {
  font-family: 'Dana';
  color: #fff;
  transition: 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  padding-right: 4px;
  color: #fff;
}

/* راه‌های ارتباطی */
.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  font-family: 'Dana';
  color:#fff; 
  margin-bottom: 10px;
  list-style: none;
}

.contact-list li i {
   
  margin-left: 8px;
  color: #fff;
  font-size: 18px;
}
.contact-list a {
 transition: 0.2s;
 
}
.contact-list a:hover {
    color: #fff;
  padding-right: 4px;
 
}
/* آیکن‌های شبکه‌های اجتماعی */
.social-icons {
  margin-top: 20px;
  padding: 0;
}

.social-icons li {
  display: inline-block;
  margin-left: 12px;
}

.social-icons li a i {
  font-size: 20px;
  transition: 0.3s;
  color: #fff;
}

.social-icons li a:hover i {
  color: #ed1c24;
}

/* کپی رایت */
#footer-bottom {
  padding: 15px 0;
  background: #0c127a;
  text-align: center;
}

.footer-copy {
  margin: 0;
  color: #ccc;
  font-size: 14px;
}


.icon-s1 {
    width: 150px !important;
    height: 150px !important;
}
  



/*logo-scroll*/
/* بخش اصلی */
.logo-strip {
  overflow: hidden;
  width: 100%;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  direction: ltr;
background: #fff;
  margin-top: 20px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 10% 90%, transparent);
 mask-image: linear-gradient(90deg, transparent, #000 10% 90%, transparent);
}
  
/* خط حرکت لوگوها */
.logo-track {

  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  animation: scroll 30s linear infinite;
  width: max-content;
}

/* جهت برعکس */
.logo-track.reverse {
  animation-direction: reverse;
}

/* لوگو */
.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(60%);
  transition: 0.3s;
}

/* افکت هاور */
.logo img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* انیمیشن */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* واکنش‌گرا */
@media (max-width: 992px) {
  .logo img {
    height: 60px;
  }
}
@media (max-width: 768px) {
  .logo-track {
    gap: 30px;
    animation-duration: 22s;
  }
  .logo img {
    height: 50px;
  }
}
@media (max-width: 480px) {
  .logo-track {
    gap: 20px;
    animation-duration: 18s;
  }
  .logo img {
    height: 40px;
  }
}

/*استایل breadcrumbs*/
.breadcrumb-rtl {
    direction: rtl;
    justify-content: flex-start;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumb-item {
    font-family: 'Dana';
    display: flex;
    align-items: center;
}

/* جداکننده */
/* فقط بین آیتم‌ها جداکننده بگذار */
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    margin: 0 8px;
    color: rgba(255,255,255,.8);
}


/* حذف جداکننده آخر */
.breadcrumb-item:last-child::before {
   /* display: none;*/
}

.breadcrumb a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}
.news_breadcrumb{
    margin-bottom: 20px;
}
.news_breadcrumb .breadcrumb-item a {
	color: #9a9a9a;
}

.news_breadcrumb .breadcrumb-item.active {
	color: #717171;
	font-weight: 500;
}

