/* Minification failed. Returning unminified contents.
(872,69): run-time error CSS1062: Expected semicolon or closing curly-brace, found '/'
 */
@font-face {
  font-family: 'fontello';
  src: url('/assets/fontello/font/fontello.woff2') format('woff2'),
       url('/assets/fontello/font/fontello.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"]:before, [class*=" icon-"]:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: normal;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: 1em;
    margin-right: .2em;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 1em;
    margin-left: .2em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-search:before { content: '\e800'; }  
.icon-mail:before { content: '\e801'; }
.icon-camera:before { content: '\e803'; }
.icon-eye:before { content: '\e806'; } 
.icon-pencil-alt:before { content: '\e809'; }
.icon-clock:before { content: '\e80a'; } 
.icon-search-1:before { content: '\e80c'; }
.icon-calendar-outlilne:before { content: '\e80d'; } 
.icon-link:before { content: '\e80e'; } 
.icon-phone-1:before { content: '\e80f'; } 
.icon-calendar:before { content: '\e811'; }
.icon-reply-1:before { content: '\e814'; } 
.icon-heart:before { content: '\e815'; } 
.icon-location:before { content: '\e81b'; }
.icon-bell:before { content: '\e820'; } 
.icon-users-outline:before { content: '\e821'; }
.icon-heart-1:before { content: '\e823'; } 
.icon-comment:before { content: '\e824'; }
.icon-doc-1:before { content: '\e828'; } 
.icon-heart-2:before { content: '\e829'; } 
.icon-heart-empty-1:before { content: '\e82a'; } 
.icon-heart-broken:before { content: '\f028'; } 
.icon-linkedin:before { content: '\f05c'; } 
.icon-user:before { content: '\f061'; } 
.icon-twitter:before { content: '\f099'; }
.icon-rss:before { content: '\f09e'; } 
.icon-docs:before { content: '\f0c5'; } 
.icon-gplus-squared:before { content: '\f0d4'; } 
.icon-comment-empty:before { content: '\f0e5'; } 
.icon-chat-empty:before { content: '\f0e6'; } 
.icon-reply:before { content: '\f112'; } 
.icon-instagram:before { content: '\f16d'; }
.icon-paper-plane-empty:before { content: '\f1d9'; }
.icon-share:before { content: '\f1e0'; } 
.icon-copyright:before { content: '\f1f9'; }
.icon-whatsapp:before { content: '\f232'; } 
.icon-commenting-o:before { content: '\f27b'; } 
.icon-facebook-squared:before { content: '\f308'; }

@font-face {
    font-family: 'IRANSansWeb';
    src: url("/fonts/IRANSansWeb.woff2") format('woff2'), url("/fonts/IRANSansWeb.woff") format('woff');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IRANSansWeb', Arial, sans-serif;
    direction: rtl;
    text-align: right;
}


.h1-index {
    position: absolute;
    left: -9999px;
    top: -9999px;
}

.header-normal {
    width: 100%;
    background-color: black;
    color: white;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.header-container {
    width: 85%;
    margin: 0 auto;
}

.header-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0px;
    align-items: center;
}

.lang-menu {
    display: flex;
    gap: 10px;
}

.lang-link {
    color: white;
    text-decoration: none;
    font-size: 0.9em;
}

    .lang-link:hover {
        text-decoration: underline;
    }

.social-icons {
    direction: ltr;
    display: flex;
    gap: 10px;
}

    .social-icons a {
        color: white;
        text-decoration: none;
    }

    .social-icons i, .search-icon i, .search-button i, .telegram-button i {
        font-size: 1.2em;
        vertical-align: middle;
    }

.telegram-button i {
    font-size: 1em;
}

.current-date {
    color: white;
    font-size: 0.9em;
    display: none;
}

.logo-row {
    justify-content: center;
    padding: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 2.5em;
    width: auto;
    margin: 10px;
}

.logo-img-sticky {
    height: 1.2em;
    width: auto;
    padding: 0px 5px;
}

.logo {
    font-size: 1.8em;
    font-weight: bold;
}

.nav-row {
    position: relative;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav li a, .sub-menu li a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

    nav li a:hover, .sub-menu li a:hover {
        color: white;
        text-decoration: none;
    }

    nav li a:after, .sub-menu li a:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        bottom: -2px;
        left: 0;
        background-color: white;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    nav li a:hover:after, .sub-menu li a:hover:after {
        transform: scaleX(1);
    }


@media (max-width: 767px) {
    .hide-on-mobile {
        display: none !important;
    }
}

.has-submenu {
    position: relative;
}

.sub-menu {
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #000000;
    padding: 5px;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    min-width: 150px;
    z-index: 9999;
}

.has-submenu:hover .sub-menu {
    display: block;
    max-height: 200px;
}

.sub-menu li {
    margin: 3px 0;
}

.submenu-toggle {
    font-size: 0.9em;
    display: inline-block;
    width: 15px;
    text-align: center;
    margin-left: 2px;
}

.mobile-menu .submenu-toggle {
    margin-left: 0;
    margin-right: 2px;
}

.search-icon {
    font-size: 1.2em;
    cursor: pointer;
    padding: 5px;
}

.search-bar {
    display: none;
    width: 100%;
    padding: 10px;
    background-color: #000000;
    align-items: center;
}

    .search-bar input {
        width: 90%;
        padding: 5px;
        border-radius: 5px;
        border: 1px solid #60a5fa;
    }

.search-button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2em;
    cursor: pointer;
    padding: 5px;
}

.separator {
    border-top: 1px solid #ffffff;
    width: 100%;
}

.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: black;
    color: white;
    padding: 5px 0px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 0.3s ease, transform 0.5s ease-out;
    z-index: 1000;
}

    .header-sticky.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header-sticky .header-row {
        display: flex;
        justify-content: space-between;
        padding: 5px 20px;
        align-items: center;
        flex-direction: row-reverse;
    }

.left-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1px;
}

.right-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.border-separator {
    width: 1px;
    height: 30px;
    background-color: white;
}

.nav-toggle {
    font-size: 1.5em;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background-color: black;
}

    .mobile-menu ul {
        list-style: none;
        padding: 10px;
    }

        .mobile-menu ul li a, .mobile-menu .sub-menu li a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 5px 0;
        }

            .mobile-menu ul li a:hover, .mobile-menu .sub-menu li a:hover {
                color: white;
                text-decoration: none;
            }

    .mobile-menu .sub-menu {
        display: none;
        list-style: none;
        padding: 10px 20px;
        background-color: black;
    }

        .mobile-menu .sub-menu.active {
            display: block;
            max-height: 200px;
        }

        .mobile-menu .has-submenu > a {
    justify-content: flex-end; /* چون راست‌چین هستیم، متن سمت چپ و + سمت راست */
    gap: 10px;
}
main {
    min-height: 1000px;
    background-color: #f0f0f0;
    padding: 20px;
}

footer {
    width: 100%;
    background-color: black;
    color: white;
    border-top: 5px solid #60a5fa;
}

.footer-container {
    width: 90%;
    padding: 0 10px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.footer-row-1 {
    justify-content: center;
}

.site-name {
    font-size: 1.5em;
    font-weight: bold;
}

.footer-row-2 {
    justify-content: space-between;
}

.footer-column {
    width: 22%;
    padding: 0 5px;
}

@media (min-width: 768px) {
    .footer-column {
        border-right: 1px solid white;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 15px 0;
        width: 100%;
    }

    .footer-container {
        flex-direction: column;
        padding: 0 10px;
    }

    .footer-column {
        margin: 10px 0;
        width: 100%;
    }

    .links, .contact {
        flex: 1;
        display: inline-block;
        vertical-align: top;
        width: 50%;
    }

    .social {
        width: 100%;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

        .social-icons a {
            margin: 0 5px;
        }
}

.footer-column:first-child {
    border-left: none;
}

.footer-column h3 {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.0em;
    border-bottom: 1px solid white;
    padding: 5px 5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin: 5px 0;
}

.footer-column a {
    color: white;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    font-size: 0.8em;
}

.footer-column span {
    border-top: 1px solid white;
}

.footer-column a:hover {
    color: white;
}

.footer-column a:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: white;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.footer-column a:hover:after {
    transform: scaleX(1);
}

.telegram-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #60a5fa;
    border: none;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-size: 1em;
    cursor: pointer;
    margin-top: 10px;
}

    .telegram-button:hover {
        background-color: #3b82f6;
    }

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
}

.input-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #60a5fa;
    background-color: #fff;
    color: #333;
}

.subscribe-button {
    padding: 10px 15px;
    background-color: #60a5fa;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

    .subscribe-button:hover {
        background-color: #3b82f6;
    }

.error-message {
    display: none;
    color: #ffffff;
    font-size: 0.8em;
    margin-top: 5px;
    text-align: right;
    width: 100%;
}

    .error-message.active {
        display: block;
    }

.footer-row-3 {
    justify-content: center;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .header-normal .search-icon, .header-normal .social-icons, .header-normal .lang-menu {
        display: none;
    }

    .header-normal .current-date {
        display: block;
    }

    .header-sticky .left-group .social-icons {
        display: none;
    }

    .footer-row-2 {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        width: 80%;
        margin-bottom: 20px;
        border-left: none;
    }

        .footer-column:last-child {
            border-bottom: none;
        }
}

.color0, .color2, .color12, .color13, .color14, .color15, .color16, .color17, .color18, .color19, .color20, .color22, .color32, .color33, .color34, .color35, .color36, .color37, .color38,
.color39, .color40, .color42, .color52, .color53, .color54, .color55, .color56, .color57, .color58, .color59, .color60, .color62, .color72, .color73, .color74, .color75, .color76, .color77,
.color78, .color79, .color80, .color82, .color92, .color93, .color94, .color95, .color96, .color97, .color98, .color99 {
    background-color: #ededed;
}

.color1, .color21, .color41, .color61 {
    background-color: #dcdbdc;
}



.color3, .color23, .color43, .color63, .color83 {
    background-color: #efe7d7;
}

.color4, .color24, .color44, .color64, .color84 {
    background-color: #d3f0d2;
}

.color5, .color25, .color45, .color65, .color85 {
    background-color: #f7daef;
}

.color6, .color26, .color46, .color66, .color86 {
    background-color: #cff0df;
}

.color7, .color27, .color47, .color67, .color87 {
    background-color: #f7dce3;
}

.color8, .color28, .color48, .color68, .color88 {
    background-color: #dcefc1;
}

.color9, .color29, .color49, .color69 {
    background-color: #cef9ff;
}

.color10, .color30, .color50, .color70, .color90 {
    background-color: #6f9eca;
}

.color11, .color31, .color51, .color71, .color91 {
    background-color: #f0e1f7;
}

.color89 {
    background-color: #ffffff;
}

.color_layout0, .color_layout8, .color_layout17, .color_layout18, .color_layout19, .color_layout20, .color_layout28, .color_layout37, .color_layout38, .color_layout39, .color_layout40, .color_layout48
.color_layout57, .color_layout58, .color_layout59, .color_layout60, .color_layout68, .color_layout77, .color_layout78, .color_layout79, .color_layout80, .color_layout88, .color_layout97, .color_layout98, .color_layout99 {
    background-image: linear-gradient(210deg, rgba(255, 0, 0, 0), rgba(179, 255, 169, 1));
}

.color_layout1, .color_layout21, .color_layout41, .color_layout61, .color_layout81 {
    background-image: linear-gradient(150deg, rgba(255, 0, 0, 0), rgba(139, 135, 135, 1));
}

.color_layout2, .color_layout22, .color_layout42, .color_layout62, .color_layout82 {
}

.color_layout3, .color_layout23, .color_layout43, .color_layout63, .color_layout83 {
    background-image: linear-gradient(200deg, rgba(255, 0, 0, 0), rgba(38, 255, 75, 1));
}

.color_layout4, .color_layout24, .color_layout44, .color_layout64, .color_layout84 {
    background-image: linear-gradient(200deg, rgba(255, 0, 0, 0), rgba(67, 83, 191, 0.92));
}

.color_layout5, .color_layout25, .color_layout45, .color_layout65, .color_layout85 {
    background-image: linear-gradient(180deg, rgba(255, 0, 0, 0), rgba(251, 58, 218, 0.93));
}

.color_layout6, .color_layout26, .color_layout46, .color_layout66, .color_layout86 {
    background-image: linear-gradient(210deg, rgba(255, 0, 0, 0), rgba(120, 245, 118, 1));
}

.color_layout7, .color_layout27, .color_layout47, .color_layout67, .color_layout7 {
    background-image: linear-gradient(210deg, rgba(255, 0, 0, 0), rgba(235, 139, 139, 1));
}

.color_layout9 {
    background-image: linear-gradient(20deg, rgba(149, 102, 102, 0.18), rgb(235, 235, 235));
}

.color_layout10, .color_layout30, .color_layout50, .color_layout70, .color_layout90 {
    background-image: linear-gradient(210deg, rgba(255, 0, 0, 0), rgba(118, 223, 255, 1));
}

.color_layout11, .color_layout31, .color_layout51, .color_layout71, .color_layout91 {
    background-image: linear-gradient(210deg, rgba(255, 0, 0, 0), rgba(235, 208, 12, 1));
}

.color_layout12, .color_layout32, .color_layout52, .color_layout72, .color_layout92 {
    background-image: linear-gradient(37deg, rgba(255, 0, 0, 0), rgba(219, 219, 219, 1));
}

.color_layout13, .color_layout33, .color_layout53, .color_layout73, .color_layout93 {
    background-image: linear-gradient(11deg, rgba(255, 0, 0, 0), rgba(160, 299, 255, 1));
}

.color_layout14, .color_layout34, .color_layout54, .color_layout74, .color_layout94 {
    background-image: linear-gradient(329deg, rgba(255, 0, 0, 0), rgba(247, 125, 221, 0.64));
}

.color_layout15, .color_layout35, .color_layout55, .color_layout75, .color_layout95 {
    background-image: linear-gradient(357deg, rgba(255, 0, 0, 0), rgba(174, 169, 255, 1));
}

.color_layout16, .color_layout36, .color_layout56, .color_layout76, .color_layout96 {
    background-image: linear-gradient(227deg, rgba(255, 0, 0, 0), rgba(255, 247, 224, 1));
}

.color_layout29 {
    background-image: linear-gradient(15deg, rgba(255, 193, 193, 0.5), rgba(249, 208, 208, 1));
}

.color_layout49 {
    background-image: linear-gradient(0deg, white 0%, rgb(219,197,233) 100%);
}

.color_layout69 {
    background-image: linear-gradient(20deg, rgba(247, 111, 111, 0.15), rgba(245, 200, 221, 1));
}

.color_layout89 {
    background-image: linear-gradient(179deg, rgba(255, 143, 143, 0.18), rgba(243, 164, 164, 0.14));
}

.bg-primary_ShotX {
    background-color: #040404 !important;
}

.content {
    height: 70vh;
}


* {
    margin: 0px;
    padding: 0px;
}

img, picture {
    max-width: 100%;
    display: block;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 500px) {
}

@media (min-width: 501px) {
}

.news-header {
    background-color: transparent;
    height: 65%;
    overflow: hidden;
}

.figure-news-chin {
    margin-bottom: 0px;
}

.news-card h2 {
    margin: 0;
    font-size: 1.5em;
    text-align: center !important;
}

.news-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: justify;
    line-height: 1.5em;
    font-size: 1em;
    margin: 0;
    max-height: 3em;
}

.news-card time {
    font-size: 0.9em;
    color: #555;
    display: block;
    margin-top: auto;
    text-align: left;
    padding-left: 10px
}

.news-chin .card-link {
    position: absolute;
    z-index: 1;
}

#wrapper .container-fluid {
    max-width: 95%;
    display: block;
}

.news-card {
    width: 300px;
    height: 304px;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    margin: 0px 0px 10px 10px;
    border: 1px solid #ccc;
    background: #fff;
    float: left;
}

#W-NewsCart {
    width: 612px;
    height: 304px;
    box-sizing: border-box;
    border-radius: 10px;
    overflow: hidden;
    margin: 0px 0px 10px 10px;
}

.responsive-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    object-fit: cover;
    /*aspect-ratio: 756 / 504; /* حفظ نسبت تصویر اصلی (سئو + UX) */*/
}

/*.responsive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    overflow: hidden;
}*/

.image {
    width: 100%;
}

    .image img {
        width: 300px;
        height: 157px;
    }

    .image figure {
        margin: 0px
    }

    .image figcaption {
        display: none;
    }

.news-card img:hover {
    filter: brightness(50%);
}

.news-item {
    width: 300px;
    height: 200px;
    text-align: center;
}

    .news-item time {
        font-size: 10px;
        color: black;
        padding-top: 5px;
        color: #797979;
    }

    .news-item i {
        float: left;
        margin-left: 5px;
        color: #797979
    }

.show-date {
    margin-top: -10px;
    height: 10%;
}

#icon {
    display: flex;
    height: 16px;
    float: right;
}

.source-name {
    width: 200px;
    height: 16px;
    float: right;
    font-size: 12px;
    text-align: right;
    padding: 0 2px 0 0;
    color: black;
}

.news {
    height: 92px;
    display: inline-block;
}

    .news h2 {
        font-size: 1rem;
        color: black !important;
        text-align: right;
        padding: 2px 5px;
    }

    .news p {
        font-size: 11px;
        color: rgba(63, 68, 63, 0.60);
        padding: 0px 5px
    }




#Footer {
    text-align: center;
    width: 300px;
}

.footer {
    width: 132px;
    height: 25px;
    display: inline-block;
}

.card {
    transition: box-shadow .3s;
    width: 300px;
    height: 500px;
    margin: 50px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    float: left;
}

    .card:hover {
        box-shadow: 0 0 11px rgba(33, 33, 33, .2);
    }


.box {
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #fff;
    float: left;
}

    .box:hover {
        box-shadow: -5px 5px 11px rgba(33, 33, 33, .2);
    }

.smallicon {
    width: 16px !important;
    height: 16px !important;
}

.gn-slider {
    width: 612px;
    height: 304px;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    margin: 0px 0px 10px 10px;
}

.gn-slider__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

    .gn-slider__wrapper:before {
        content: "";
        position: absolute;
        height: 80%;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0));
        opacity: 0.8;
    }

.gn-slider__wrapper--img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.gn-slider__wrapper__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 30px 5px 30px;
    color: white;
}

    .gn-slider__wrapper__content h2 {
        font-family: IRANSansWeb, Arial !important;
    }

.gn-slider__wrapper__content--title {
    font-size: 1.7em;
    margin-top: 10px;
    margin-bottom: 10px;
}

.gn-slider__wrapper__content__details {
    display: flex;
    flex-direction: row;
    float: left;
    margin-left: 15px;
}

.gn-slider__wrapper__content__details--texts {
    margin-left: 5px;
}

    .gn-slider__wrapper__content__details--texts span {
        text-transform: uppercase;
        font-size: 0.8em;
        line-height: 2;
    }

    .gn-slider__wrapper__content__details--texts p {
        font-size: 12px;
    }

.gn-slider__footer {
    width: 100%;
    height: 80px;
    background-color: white;
    padding: 1em;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
}

.gn-slider__footer__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 33.3333%;
}

    .gn-slider__footer__item img {
        margin-right: 0.5em;
    }

.tag {
    text-transform: uppercase;
    padding: 0.2rem 0.4rem;
    background-color: white;
    font-size: 0.9rem;
    color: black;
}

.source {
    text-align: right;
    font-size: 12px;
    color: whites;
    margin-right: 3px;
    padding-top: 3px;
}

.source-icon {
    width: 16px;
    height: 16px;
    float: right;
}

.source-source {
    width: 200px;
    height: 16px;
    float: right;
    padding: 0px 5px 0px 5px;
    font-size: 16px
}

.clear {
    clear: both;
}

@media screen and (max-width: 652px) {
    .gn-slider {
        width: 300px;
        height: 304px;
        background-color: white;
        border-radius: 15px;
        overflow: hidden;
        margin: 0px 0px 10px 10px;
    }
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    justify-content: center;
}

.col-md-1, .col-md-3, .col-md-8 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

.d-flex {
    display: flex !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.d-none {
    display: none !important;
}

@media (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

    .input-group > .form-control {
        position: relative;
        flex: 1 1 auto;
        width: 1%;
        min-width: 0;
        margin-bottom: 0;
    }

    .input-group > .btn {
        position: relative;
        flex: 0 0 auto;
    }

.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .form-control:focus {
        color: #495057;
        background-color: #fff;
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

.btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #0069d9;
        border-color: #0062cc;
    }

@media (min-width: 769px) {
    .row.equal-height-row {
        margin: 30px 0;
    }
}

.d-block {
    display: block !important;
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
}

section {
    justify-content: center;
    align-items: center;
    min-height: 20vh;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}




        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            padding: 20px;
        }

        .about-container {
            max-width: 1000px;
            margin: 40px auto;
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            border: 1px solid #eef1f5;
        }

        /* Header */
        .about-header {
            background: linear-gradient(135deg, #1a2980 0%, #26d0ce 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            position: relative;
        }

        .about-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .about-header .tagline {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* Main Content */
        .about-content {
            padding: 50px 40px;
        }

        .section {
            margin-bottom: 45px;
        }

        .section h2 {
            color: #1a2980;
            font-size: 1.8rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #26d0ce;
            display: inline-block;
            font-weight: 700;
        }

        .section p {
            margin-bottom: 18px;
            font-size: 1.1rem;
            color: #444;
            text-align: justify;
        }

        .highlight {
            background-color: #f0f9ff;
            border-right: 4px solid #26d0ce;
            padding: 25px;
            border-radius: 0 12px 12px 0;
            margin: 25px 0;
        }

        .highlight ul {
            list-style-type: none;
            padding-right: 10px;
        }

        .highlight li {
            margin-bottom: 15px;
            padding-right: 25px;
            position: relative;
            font-size: 1.05rem;
        }

        .highlight li:before {
            content: "✓";
            position: absolute;
            right: 0;
            color: #26d0ce;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .link-button {
            display: inline-block;
            background: linear-gradient(to left, #1a2980, #26d0ce);
            color: white;
            padding: 14px 32px;
            margin: 10px 15px 10px 0;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(26, 41, 128, 0.2);
            border: none;
            cursor: pointer;
        }

        .link-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(26, 41, 128, 0.3);
        }

        .link-button.secondary {
            background: linear-gradient(to left, #6a11cb 0%, #2575fc 100%);
        }

        .cta-section {
            text-align: center;
            background-color: #f8fafc;
            padding: 30px;
            border-radius: 12px;
            margin-top: 40px;
            border: 1px dashed #c5d7f2;
        }

        .cta-section p {
            font-size: 1.3rem;
            color: #1a2980;
            margin-bottom: 25px;
            font-weight: 600;
        }

        /* Footer */
        .about-footer {
            text-align: center;
            padding: 25px;
            color: #666;
            font-size: 0.95rem;
            border-top: 1px solid #eee;
            background-color: #fdfdfd;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .about-header {
                padding: 40px 20px;
            }
            
            .about-header h1 {
                font-size: 2.2rem;
            }
            
            .about-content {
                padding: 30px 20px;
            }
            
            .link-button {
                display: block;
                margin: 15px 0;
                text-align: center;
            }
            
            .section h2 {
                font-size: 1.6rem;
            }
        }

