@charset "utf-8";
/* ----------------------------------

Style.css | Version:1.0

    Table of contents
    01. Google Font
    02. PreLoader
    03. Reset
    04. Typography
    05. Background Colors
    06. Navigation
    07. Hero Img Settings
    08. Counter
    09. Portfolio
    10. Skills
    11. Testimonials
    12. Contact Form
    13. Footers
    14. Icons
    15. Buttons
    16. Scroll to top
    17. Paddings and Margin
    18. Blog
    19. Custom Settings

---------------------------------- */

/* -------------------------------
   01 - Google Fonts
------------------------------- */
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Ubuntu:300,400,500,700);

/* -------------------------------
   02 - Pre Loader
------------------------------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 9999;
}

.preloader img {
    width: 50px;
    height: 50px;
    margin: auto;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

/* -------------------------------
   03 - Reset
------------------------------- */
/* section {
   padding: 140px 0px;
} */

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    color: #292929;
}

ul,
ol,
dl {
    list-style-position: outside;
}
body.custom-background {
    background-color: #ffffff;
}
body {
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.03em;
    line-height: 24px;
    color: #6d6c6c;
    font-family: "Open Sans", sans-serif;
}

img {
    -webkit-backface-visibility: hidden;
    max-width: 100%;
    height: auto;
}

ul {
    margin: 0px;
}

input,
select {
    border: 1px solid #e8e8e8;
    padding: 9px 16px;
    width: 100%;
    resize: none;
    letter-spacing: 1px;
    font-size: 11px;
    max-width: 100%;

}

textarea {
    border: 1px solid #e2e2e2;
    letter-spacing: 1.2px;
    font-size: 11px;
    height: 160px;
    resize: none;
    padding: 9px 16px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

input[type="text"],
textarea {
    border-radius: 0;
    -webkit-appearance: none;
}

input:focus,
textarea:focus {
    outline: none;
    border: 1px solid #c8c8c8;
    border: 1px solid #989898;
    background-color: #fbfafa;
}

select::-ms-expand {
    display: none;
}

* {
    transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
}

::selection {
    background: #000;
    color: #fff;
}

::-moz-selection {
    background: #000;
    color: #fff;
}

::-webkit-input-placeholder {
    color: #9e9d9d;
    text-overflow: ellipsis;
}

::-moz-placeholder {
    color: #9e9d9d !important;
    text-overflow: ellipsis;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #9e9d9d !important;
    text-overflow: ellipsis;
    opacity: 1;
}

:-moz-placeholder {
    color: #9e9d9d !important;
    text-overflow: ellipsis;
    opacity: 1;
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    background: rgba(210, 210, 210, 0.8);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(210, 210, 210, 0.4);
}

.animated {
    -moz-transition-duration: 0s !important;
}

@media screen\0 {
    input {
        /* ie7, ie9, ie10, ie11+ only */
        padding-bottom: 18px;
    }
}

.center-col {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* -------------------------------
   04 - Typography
------------------------------- */
/* Section Heading */
.section-heading {
    text-transform: uppercase;
    font-size: 27px;
    letter-spacing: 2px;
    line-height: 25px;
    color: #000;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
}

/* Different text sizes */
.text-upper {
    text-transform: uppercase;
}

.small-text {
    font-size: 9px !important;
    line-height: 14px !important;
}

.md-text {
    font-size: 16px !important;
    line-height: 21px !important;
    letter-spacing: 1.7px;
}

.light-text {
    font-size: 15px;
    line-height: 23px;
    font-weight: lighter;
    letter-spacing: 1.7px;
}

.lg-text {
    font-size: 21px;
    line-height: 31px;
}

/* Headings */
h1 {
    font-size: 47px;
    line-height: 44px;
    letter-spacing: 1.9px;
}

h2 {
    line-height: 44px;
    letter-spacing: inherit;
}

h3 {
    font-size: 33px;
    line-height: 39px;
    letter-spacing: 1.5px;
}

h4 {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 1px;
}

h5 {
    font-size: 21px;
    line-height: 24px;
    letter-spacing: 1.9px;
}

h6 {
    font-size: 19px;
    line-height: 24px;
    letter-spacing: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;

    margin: 0px;
    padding: 0px;
}

/* Text color */
.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

.text-gray {
    color: #898888;
}

.text-light-gray {
    color: #4c4c4c;
}

/* Letter spacing */
.zero-letter-space {
    letter-spacing: 0px !important;
}

.letter-space1 {
    letter-spacing: 1px;
}

.letter-space2 {
    letter-spacing: 2px;
}

/* Font weight */
.font-w6 {
    font-weight: 600;
}

.font-w7 {
    font-weight: 700;
}

.font-w5 {
    font-weight: 500;
}

/* Alternate font */
.ub-font {
    font-family: "Ubuntu", sans-serif;
}

/* -------------------------------
   05 - Background colors
------------------------------- */
.white-background {
    background: #fff !important;
}

.black-background {
    background: #000 !important;
}

.light-gray-background {
    background: #fbfafa !important;
}

.gray-background {
    background: #6d6d6d !important;
}

.gray-bg-1 {
    background: #e8e8e8 !important;
}

/* -------------------------------
   06 - Navigation
------------------------------- */
.navbar {
    top: 0;
    display: inline-table;
    position: fixed;
    z-index: 10;
    border-radius: 0;
    width: 100%;
    border: none;
}

.nav li {
    margin: 16px 21px;
}

nav .container {
    height: 77px;
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

nav.shrink .container {
    height: 62px;
}

.navbar-nav a:focus {
    background: transparent !important;
    color: #fff !important;
}

.navbar-nav a:hover {
    background: transparent !important;
    color: #cccbcb !important;
}

.side-container {
    padding-left: 239px;
}

.navbar-brand img {
    z-index: 2;
    position: relative;
    max-width: 70%;
    padding: 0px;
    top: -5px;
}

nav.shrink {
    border: none !important;
    background: rgba(0, 0, 0, 1);
}

.navbar li.active a {
    border-bottom: none;
}

.side-navigation {
    width: 13%;
    height: 100%;
    box-shadow: 2px 0px 10px #0004;
}

.side-navigation .navbar-header {
    background: none;
}

nav.side-navigation .container {
    padding: 70px 45px;
    vertical-align: top;
}

.side-navigation .navbar-nav li {
    padding: 14px 0px;
}

.side-navigation .navbar-nav li a {
    font-family: Heebo, sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 8px;
    color: #404040 !important;
    border-bottom: none;
    letter-spacing: -0.015em;
    padding: 13px 20px;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    word-wrap: break-word;
}

.side-navigation .navbar-nav li:last-child {
    border-bottom: none;
}

.side-navigation .navbar-nav li a:hover,
.side-navigation .navbar-nav li.active a {
    /* padding: 0px 0px 0px 15px !important; */
    color: #f4b373 !important;
    fill: #f4b373;
}

.navbar-nav a {
    padding: 0px !important;

    color: #fff !important;
}
ul.navbar-nav.mb-0 {
    text-align: center;
}

.navbar .navbar-brand {
    /* margin-bottom: 11%;
   padding-top: 20%; */
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0px;
    margin-bottom: 20px;
}

.navbar .navbar-toggler {
    font-size: 22px;
    background-color: rgba(0, 0, 0, .05);
    color: #404040;
    border-radius: 20%;
    border: none;
    padding: .25em;
    outline: none !important;
    box-shadow: none;
    /* -webkit-border-radius: 20%;
   -moz-border-radius: 20%;
   -ms-border-radius: 20%;
   -o-border-radius: 20%; */
}
/* -------------------------------
   07 - Hero image settings
------------------------------- */
.mid-text-settings {
    text-align: center;
    height: 100%;
    width: 100%;
    display: table;
}

.mid-text {
    display: table-cell;
    vertical-align: middle;
}

.mid-text span {
    text-align: center !important;
}

.text-settings {
    right: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
}

.hero-img {
    left: 0;
    right: 0;
    position: absolute;
}

.hero-img span {
    display: table;
    z-index: 999;
}

.hero-img .text-settings {
    z-index: inherit !important;
}

.setting-parallax {
    background-size: cover !important;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
    position: relative;
    background-position: center center;
    transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-timing-function: ease-in;
    -moz-transition-timing-function: ease-in;
    -webkit-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
}

.img-text {
    letter-spacing: 1px !important;
    color: #fff !important;
    position: relative !important;
    z-index: 5;
    font-size: 28px !important;
    line-height: 34px !important;
    font-family: "Ubuntu", sans-serif !important;
}

.freelancer-name {
    font-family: "Ubuntu", sans-serif !important;
    font-size: 50px !important;
    text-transform: uppercase;
    position: relative !important;
    z-index: 5;
    line-height: 50px !important;
    color: #fff;
    letter-spacing: 4px;
    font-weight: 600 !important;
}

.freelancer-title {
    text-transform: uppercase;
    position: relative !important;
    font-weight: lighter;
    color: #d4d2d2;
    margin-top: 1.5% !important;
    z-index: 5;
    letter-spacing: 5px;
}

/* -------------------------------
   08 - Counter
------------------------------- */
.count-settings .counting-num {
    font-size: 37px;
}

.counting-typo {
    line-height: 30px;
    font-size: 33px;
}

.counting-title {
    font-size: 12px !important;
    line-height: 22px !important;
    display: inline-block !important;
    color: #000;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    display: block !important;
    font-family: "Ubuntu", sans-serif !important;
    margin: 1.5% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.career {
    font-family: "Montserrat", sans-serif !important;
    text-transform: uppercase !important;
    color: #4c4c4c;
    position: relative !important;
    z-index: 5;
    top: -5px !important;
    display: block !important;
}

.work {
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 6% !important;
    color: #000;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    display: block !important;
}

.year {
    font-weight: 500 !important;
    color: #000;
    font-size: 29px !important;
    line-height: 35px !important;
    text-transform: uppercase;
    font-family: "Ubuntu", sans-serif !important;
}

/* -------------------------------
   09 - Portfolio
------------------------------- */
.grid {
    margin: 0px auto;
}

.grid img {
    width: 100%;
}

.portfolio-nav li a {
    line-height: 15px;
    margin: 0px;
}

.portfolio-wd .grid li {
    width: 33.333%;
    float: left;
}

ul.filter-portfolio {
    border-bottom: none;
}

.filter-portfolio li {
    top: 1px;
    display: inline-block;
    float: inherit;
    position: relative;
    margin: 0px 14px !important;
}

.filter-portfolio li:first-child {
    margin-left: 0px !important;
}

.filter-portfolio li:last-child {
    margin-right: 0px !important;
}

.filter-portfolio li a {
    color: #9b9b9b;
    border-radius: 0px;
    border: none !important;
    padding: 6px 14px;
}

.filter-portfolio li a:hover,
.filter-portfolio li:active,
.filter-portfolio li.active a {
    border-radius: 5%;
    border-bottom: none;
    color: #fff !important;
    background-color: #787878 !important;
}

.grid li {
    transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
}

.portfolio-item {
    opacity: 1;
    overflow: hidden;
    transition: all 0.3s ease 0s;
}

.portfolio-item a {
    display: block;
    z-index: 2;
    position: relative;
}

.md-masonry-grid .img-portfolio ul {
    margin-left: -22px;
}

.md-masonry-grid .grid li {
    padding: 0px 0px 20px 20px;
}

.masonry-grid .grid figure {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

.masonry-grid .grid figcaption {
    height: calc(100% - 60px);
    width: calc(100% - 60px);
    text-align: center;
    opacity: 0px;
    position: absolute;
    top: 30px;
    left: 30px;
}

.masonry-grid .grid figcaption h3 {
    font-size: 17px;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
    width: 100%;
    top: 50%;
    padding: 0px 14px;
    margin: 0px;
    line-height: 24px;
}

.img-portfolio {
    clear: both;
    float: left;
    width: 100%;
}

.img-portfolio figure {
    position: relative;
    margin: 0px;
}

.img-portfolio ul {
    padding: 0px;
    list-style: none;
}

.img-portfolio figure img {
    width: 100%;
    cursor: pointer;
    opacity: 1;
    display: block;
}

.img-portfolio figcaption h3 {
    text-transform: uppercase;
    padding: 0px;
    margin: 0px 0px 9px;
}

.grid li {
    margin: 0px;
    float: left;
    box-sizing: border-box;
}

.grid figure:hover img {
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    cursor: url("../images/icon-zoom.png"), pointer;
    opacity: 0.13;
}

.grid figure:hover figcaption {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    opacity: 1;
}

/* -------------------------------
   10 - Skills
------------------------------- */
.skills-bg {
    background-color: #a5a5a5 !important;
}

.skill-name {
    font-size: 11px;
    font-weight: 400;
    margin: 5px 0px 14px;
    text-transform: uppercase;
    letter-spacing: 2.6px;
}

.skill-name strong {
    font-weight: 400;
    color: #000;
}

.skills-bar .progress {
    background-color: #dedede;
    box-shadow: none;
    height: 15px;
    border-radius: 0;
    margin-bottom: 0px;
    overflow: visible;
}

.skills-bar .progress-bar {
    position: relative;
    overflow: visible;
}

.skills-bar .progress-bar span {
    color: #000;
    font-size: 11px;
    position: absolute;
    right: 0;
    text-align: right;
    top: 21px;
}

.skills-bar .skill-name {
    margin: 6px 0px 19px;
}

/* -------------------------------
   11 - Testimonials
------------------------------- */
.testimonial-bg {
    background: #4f4f4f !important;
}

.testimonial p {
    font-size: 12px;
    line-height: 21px;
    margin: 20px 0px 19px;
    letter-spacing: 1px;
}

.testimonial img {
    margin-top: 10px;
    border-radius: 50%;
    max-width: 120px;
    box-shadow: 0 0 0 3px #989898;
}

.testimonial span {
    color: #fff;
}

.fix-background {
    background-position: center center;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    overflow: hidden;
}

.person {
    margin-left: 0 !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    margin-right: 0px !important;
}

.opacity-seven {
    opacity: 0.7;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.opacity-five {
    opacity: 0.5;
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* -------------------------------
   12 - Contact Form
------------------------------- */
.contact-form {
    font-size: 13px !important;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 11px 23px;
}

.contact-form:focus {
    border: 1px solid rgba(0, 0, 0, 0.3) !important;
}

#alert {
    border: none;
    clear: both;
    background-color: #003d63;
    text-align: center;
    margin: 0 13px 23px;
    padding-top: 17px;
    padding-bottom: 18px;
    color: #fff;
}

/* -------------------------------
   13 - Footer
------------------------------- */
footer {
    clear: both;
}

.footer-icons .fa {
    font-size: 14px;
    height: 30px !important;
    vertical-align: middle;
    width: 30px;
    color: #fff;
    background: none;
    display: table-cell;
    text-align: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    line-height: 1;
}

.footer-icons .fa-facebook {
    background-color: #b1b1b1;
    border-radius: 50%;
}

.footer-icons .fa-facebook:hover {
    background-color: #395694;
    border-radius: 0px;
}

.footer-icons .fa-twitter {
    background-color: #b1b1b1;
    border-radius: 50%;
}

.footer-icons .fa-twitter:hover {
    background-color: #00a8e8;
    border-radius: 0px;
}

.footer-icons .fa-linkedin {
    background-color: #b1b1b1;
    border-radius: 50%;
}

.footer-icons .fa-linkedin:hover {
    background-color: #0077b0;
    border-radius: 0px;
}

.footer-icons .fa-google-plus {
    background-color: #b1b1b1;
    border-radius: 50%;
}

.footer-icons .fa-google-plus:hover {
    background-color: #da4937;
    border-radius: 0px;
}

/* -------------------------------
   14 - Icons
------------------------------- */
i {
    color: #919090;
    margin: 0px 3px;
}

.icon-sm {
    font-size: 33px;
}

/* -------------------------------
   15 - Buttons
------------------------------- */
.btn i {
    margin-right: 7px;
}

.button {
    margin-bottom: 0px;
    margin-top: 0px;
}

.btn.sm-btn {
    font-size: 13px;
    padding: 10px 27px;
}

.black-btn:hover,
.black-btn:focus {
    color: #000;
    border: 1px solid #000;
    background-color: transparent;
}

.dark-btn:hover,
.dark-btn:focus {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
    border-radius: 0px;
}

.black-btn {
    font-size: 13px;
    border: 1px solid #000;
    display: inline-block;
    padding: 5px 18px 7px;
    color: #fff;
    background-color: #000;
}

.dark-btn {
    color: #fff;
    border: 1px solid #a4a3a3;
    border-radius: 10px;
    display: inline-block;
    padding: 5px 18px 7px;
    width: auto;
    background-color: #a4a3a3;
}

.btn {
    border-radius: 0px;
    margin-right: 20px;
    border: 1px solid transparent;
    display: inline-block;
    font-weight: 600;
    letter-spacing: 1px;
    width: auto;
    text-transform: uppercase;
}

/* -------------------------------
   16 - Scroll Top to Header
------------------------------- */
.topScroll {
    display: none;
    font-weight: bold;
    height: auto;
    border-radius: 50%;
    padding: 0;
    position: fixed;
    right: 30px;
    text-align: center;
    text-decoration: none;
    top: 91%;
    width: auto;
    background-color: rgba(127, 129, 124, 0.4);
    z-index: 555;
}

.topScroll i {
    font-size: 17px;
    margin: 0px 6px;
    color: #fff;
}

.topScroll:hover {
    background-color: #000;
}

.topScroll:hover i {
    position: relative;
}

/* -------------------------------
   17 - Padding and Margins
------------------------------- */
/* Paddings */
.zero-padding {
    padding: 0px !important;
}

.padding-120 {
    padding: 120px 0 !important;
}

.padding-1 {
    padding: 1%;
}

.zero-padding-top {
    padding-top: 0px !important;
}

.zero-padding-btm {
    padding-bottom: 0px !important;
}

.zero-padding-left {
    padding-left: 0px !important;
}

.padding-nine {
    padding: 5%;
}

.padding-btm {
    padding-bottom: 4% !important;
}

.pb-120 {
    padding-bottom: 120px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.zero-lr-padding {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.zero-tb-padding {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
}

/* Margins */
.margin-top-3 {
    margin-top: 3% !important;
    margin-bottom: 0px !important;
}

.margin-top-8 {
    margin-top: 8% !important;
    margin-bottom: 0px !important;
}

.margin-top-5 {
    margin-top: 5% !important;
    margin-bottom: 0px !important;
}

.margin-btm-3 {
    padding-bottom: 6% !important;
}

.margin-six-all {
    margin: 6% !important;
}

.margin-five-all {
    margin: 5%;
}

.margin-eight-all {
    margin: 8%;
}

.margin-top-six {
    margin-top: 6% !important;
}

.margin-top-three {
    margin-top: 3%;
}

.margin-three-all {
    margin: 3%;
}

.margin-eleven-all {
    margin: 11%;
}

.margin-seven-all {
    margin: 7%;
}

.margin-two-all {
    margin: 2%;
}

.zero-margin {
    margin: 0px;
}

.zero-margin-bottom {
    margin-bottom: 0px !important;
}

.zero-margin-top {
    margin-top: 0px !important;
}

.auto-lr-margin {
    margin-right: auto !important;
    margin-left: auto !important;
}

.zero-lr-margin {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

/* ----------------------------------
   18 - Blog Section
---------------------------------- */

.blog-page {
    padding: 60px 0px 0px 0px !important;
}

.blog-page-heading {
    padding-bottom: 70px !important;
    text-transform: uppercase;
    font-size: 35px;
    letter-spacing: 2px;
    line-height: 36px;
    color: #000;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
}

#blog {
    padding: 120px 0;
}

.creator-details {
    letter-spacing: 1px;
    color: #7e7e7e;
    font-size: 11px;
}

.blog-pst p {
    padding-top: 11px;
    margin: 0px;
}

.blog-pst-img img {
    max-width: 101%;
}

.blog-pst:hover img {
    -ms-transform: scale(1.03, 1.03);
    -webkit-transform: scale(1.03, 1.03);
    transform: scale(1.03, 1.03);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

.blog-pst img {
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    opacity: 1;
}

.blog-pst-img {
    width: auto;
    overflow: hidden;
}

.post-img-margin {
    margin-top: 5% !important;
    margin-bottom: 5% !important;
}

.post-title {
    font-size: 16px;
    letter-spacing: 1.7px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-top: 40px;
    color: #000;
}

#blog .btn-small {
    line-height: unset !important;
}

.blg-comment .btn-small {
    line-height: unset !important;
    margin: 30px 20px 30px 0;
}

/* categories */
.categ li:first-child {
    padding: 0px 0px 6px 0px;
}

.categ li {
    padding: 6px 0px 6px 0px;
}

.categ li a {
    color: #656464;
}

.categ li a:hover {
    color: #000;
}

/* page pagination */
.pagination {
    text-align: center;
    margin-top: 50px;
    width: 100%;
}

.pagination i {
    color: #a4a4a4;
    font-size: 20px;
}

.pagination i:hover {
    color: #000;
}

.pagination a {
    font-size: 16px;
    margin: 0px 16px 0px 16px;
    color: #a0a0a0;
}

.pagination a:hover {
    color: #000;
}

.pagination a.active {
    font-weight: 600;
    color: #0b0b0b;
    border-bottom: 1px solid #000;
}

/* avtar image*/
.avtar-pic {
    float: left;
    margin: 12px 33px 0px 0px;
    max-width: 100px;
}

.avtar-pic img {
    border-radius: 50%;
}

/* tags */
.tags a {
    text-transform: uppercase;
    padding: 0px 11px;
    margin: 0px 6px 11px 0px;
    line-height: 26px;
    font-size: 10px;
    display: inline-block;
    border: 1px solid #e8e8e8;
    color: #6a6868;
}

.tags a:hover {
    color: #fff;
    border: 1px solid #e8e8e8;
    background-color: #000;
}

/* comment, heart like, share */
.comments,
.share,
.heart-like {
    letter-spacing: 1.7px;
    font-size: 11px;
    margin-right: 26px;
    text-transform: uppercase;
}

.comments i,
.share i,
.heart-like i {
    margin-right: 6px;
    font-size: 12px;
}

/* widgets */
.widgets input {
    margin-bottom: 0px;
    padding: 11px 30px 11px 20px;
}

.heading-widget {
    font-size: 17px;
    margin-bottom: 6%;
    font-weight: 700;
}

.widgets .search-mg {
    top: 18px;
    right: 20px;
}

.widgets {
    margin-bottom: 26px;
}

/* search */
.search-mg {
    border: none;
    color: #8c8b8b;
    right: 0;
    z-index: 998;
    cursor: pointer;
    top: 23px;
    position: absolute;
}

.search-mg:hover {
    color: #000;
}

/* social buttons */
.social-big:hover .fa {
    color: #fff;
}

.social-btn .fa-facebook {
    background-color: #3b5998;
}

.social-btn .fa-twitter {
    background-color: #01a8e7;
}

.social-btn .fa-instagram {
    background-color: #4c83ae;
}

.purchase-btn:hover {
    right: -15px;
    opacity: 1;
}

.social-btn {
    padding: 0 !important;
    margin: 30px 20px 30px 0;
}

.social-btn .fa-linkedin {
    background-color: #0088d0;
}

.social-big:hover .fa-twitter {
    background-color: #0093ca;
}

.social-big:hover .fa-instagram {
    background-color: #315e82;
}

.social-big:hover .fa-linkedin {
    background-color: #0088d0;
}

.social-big:hover .fa-facebook {
    background-color: #213e78;
}

.social-btn .fa {
    color: #fff;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    font-size: 13px;
    background: none;
    height: 25px !important;
    width: 25px;
    line-height: 1;
}

.social-big .fa {
    background-color: #969696;
    font-size: 22px;
    color: #fff;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 50px;
    height: 50px !important;
    line-height: 1;
    border-radius: 50%;
}

/* blog text */
.blg-comment {
    padding-top: 6%;
}

.post-text p {
    line-height: 27px;
    font-size: 13px;
    margin-bottom: 46px;
}

.blg-deatil {
    color: #939191;
    text-transform: uppercase;
    padding-top: 31px;
    font-size: 11px;
}

.blg-deatil strong {
    letter-spacing: 1px;
    font-weight: 600;
}

.blg-deatil a {
    color: #939191;
}

.blg-deatil a:hover {
    color: #000;
}

.blg-comments > .blg-comments {
    margin-left: 44px;
}

.blg-comments {
    font-size: 14px;
    margin: 30px 0px;
    line-height: 29px;
}

/* -------------------------------
   19 - Custom Settings
------------------------------- */
/* about me */
.bio li {
    padding: 8px 0px;
}

ul.bio {
    margin-left: 26px;
    list-style: inside disc;
}

ul.bio-icon {
    list-style: none;
}

/* display block */
.display-block {
    display: block !important;
}

/* overflow */
.overflow-hidden {
    overflow: hidden !important;
}

/* Position */
.relative {
    position: relative !important;
    z-index: 5;
}

/* positioning */
.position-relative {
    z-index: 5;
    position: relative !important;
}

.purchase-btn {
    background: url("../images/buy.png") no-repeat 14px center #000;
    z-index: 10;
    right: -147px;
    top: 147px;
    opacity: 0.5;
    position: fixed;
}
.purchase-btn:hover {
    right: -15px;
    opacity: 1;
}
.purchase-btn:hover span {
    opacity: 1;
}
.purchase-btn:hover span:hover span {
    opacity: 1;
}
.purchase-btn span {
    opacity: 0;
    top: 0;
    color: #fff;
    padding: 0px 52px;
    position: relative;
}
.purchase-btn a {
    padding: 15px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    display: block;
}

/* For Webkit Browsers only */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
}
/* varsha */
/* Reset */
.nav-search-form {
    width: 100%;
}

.search-box {
    display: flex;
    width: 100%;
}

.search-box input,
.search-box button {
    height: 33px; /* same height */
    padding: 0 6px;
    font-size: 14px;
    border: 1px solid #F4B373;
    outline: none;
    -webkit-font-smoothing: antialiased;
    word-break: break-word;
    word-wrap: break-word;
    letter-spacing: -0.015em;
}

.search-box input {
    flex: 1;
    border-right: none;
    color: #7A7A7A;
    transition: color .2s;
}

.search-box button {
    background-color: #F4B373;
    color: white;
    border-left: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box button i {
    color: #fff;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

/* Sidebar Navigation */
.side-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 13%;
    height: 100vh;
    background-color: #fff;
    z-index: 1050;
    border-right: 1px solid #ddd;
    padding: 20px;
}

/* Main Content */


.main-content {
        margin-left: 0%;
        width: calc(100%);
        box-sizing: border-box;
    }
@media (min-width: 1139px) {
    .main-content {
        margin-left: 13%;
        width: calc(100% - 13%);
        box-sizing: border-box;
    }
}
/* Slider */
/* ===== Desktop Styles (Unchanged for Training Section) ===== */
.training-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.training-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.training-left,
.training-right {
    width: 50%;
    box-sizing: border-box;
}

.training-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.training-right {
    background-color: #f4b373;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.training-right h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.training-right p {
    color: #404040;
    font-family: "Heebo", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
}

.training-right a.btn {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: transparent;
    border: 1px solid #fff;
    width: 246px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    padding: 10px;
}

/* ===== Swiper Slider Base Styles ===== */
.simple-image-slider {
    width: 100%;
    overflow: hidden;
}

.simple-image-slider .swiper-wrapper {
    display: flex;
}

.simple-image-slider .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: auto;
}

.simple-image-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===== Tablet (Up to 1024px) ===== */
@media (max-width: 1024px) {
    /* Training Section */
    .training-container {
        flex-direction: column;
    }

    .training-left,
    .training-right {
        width: 100%;
    }

    .training-left img {
        height: auto;
        max-height: 400px; /* Optional for tablet */
    }
}

/* ===== Mobile (Up to 767px) ===== */
@media (max-width: 767px) {
    /* Training Section */
    .training-right {
        padding: 20px;
        text-align: center;
    }

    .training-right h3 {
        font-size: 22px;
    }

    .training-right p {
        font-size: 15px;
    }

    .training-right a.btn {
        padding: 12px 24px;
        width: auto;
        display: inline-block;
    }

    /* Swiper Images for Mobile */
    .simple-image-slider .swiper-slide img {
        object-fit: contain; /* Prevent crop on small screens */
        max-height: 350px; /* Optional height limit */
    }
}

/* Contact Section */
/* ===== Desktop Contact Section ===== */
.contact-section {
    background-color: #eda45f;
    padding: 100px 20px;
    color: #333;
    text-align: center;
}

.contact-container {
    max-width: 900px;
    margin: auto;
}

.contact-container h2 {
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-container h2 .aurifer {
    color: white; /* Aurifer white */
   
    font-family: "Philosopher", Sans-serif;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 40px;
}

.contact-container p {
    font-size: 24px;
    margin-bottom: 40px;
}

.contact-container form {
    display: grid;
    grid-template-columns: repeat(2, 300px); /* har column ki fixed width */
    justify-content: center; /* center align */
    gap: 20px;
}

.contact-container input,
.contact-container textarea,
.contact-container button {
    padding: 15px;
    background-color: #f8d1ac;
    border: none;
    font-size: 18px;
    width: 100%; /* column ke andar full width */
    max-width: 300px; /* optional safety */
    box-sizing: border-box;
}

.contact-container input {
    height: 50px; /* fixed smaller height for inputs */
}

.contact-container textarea {
    resize: none;
    height: 80px; /* same as inputs */
}

.contact-container textarea.section-height {
    height: 150px; /* bigger height only for textarea */
}

button.contact-button {
    background: transparent;
    border: 1px solid;
    height: 65px;
    margin-top: -119px;
    cursor: pointer;
}

button.contact-button:hover {
    background-color: #e89e50;
    color: white;
}

/* ===== Responsive Rules ===== */

/* Tablets */
@media (max-width: 1024px) {
    .contact-container form {
        grid-template-columns: 1fr 1fr; /* still 2 columns, but flexible */
        justify-content: center;
    }

    .contact-container input,
    .contact-container textarea,
    .contact-container button {
        max-width: 100%;
    }

    button.contact-button {
        margin-top: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-container form {
        grid-template-columns: 1fr; /* single column */
        justify-content: center;
    }

    .contact-container input,
    .contact-container textarea,
    .contact-container button {
        max-width: 100%;
    }

    button.contact-button {
        margin-top: 0;
        width: 100%;
    }
}

/* Very Small Screens */
@media (max-width: 500px) {
    .contact-container h2 {
        font-size: 28px;
    }

    .contact-container p {
        font-size: 18px;
    }
}

/* Responsive */
@media (max-width: 767px) {
    .side-navigation {
        position: relative;
        width: 100%;
        height: auto;
        border-right: none;
    }

    .main-content {
        margin-left: 0;
        padding: 20px;
        max-width: 100%;
    }

    .social-icons a {
        transition: color 0.3s ease;
    }

    .social-icons a:hover {
        color: #f4b373;
    }

    @media (max-width: 767px) {
        /* Sidebar becomes top nav */
        .side-navigation {
            position: relative;
            width: 100%;
            height: auto;
            border-right: none;
            padding: 0px;
        }

        /* Main content fills full width */
        .main-content {
            margin-left: 0;
            width: 100%;
            padding: 20px;
            box-sizing: border-box;
        }

        /* Slider height reduced */
        .swiper-container,
        .swiper-slide img {
            height: 300px;
        }

        /* Training section stacks */

        /* Contact section */
        .contact-container h2 {
            font-size: 28px;
        }

        .contact-container p {
            font-size: 18px;
        }

        .contact-container form {
            flex-direction: column;
            gap: 15px;
        }

        .contact-container input,
        .contact-container textarea,
        .contact-container button {
            flex: 1 1 100%;
            font-size: 16px;
        }

        /* Footer section */
        .footer-content {
            margin-left: 0;
            width: 100%;
            padding: 40px 20px;
        }

        .footer-section .row > div {
            margin-bottom: 30px;
            text-align: center;
        }

        .social-icons {
            justify-content: center;
        }

        .social-icons a {
            font-size: 24px;
        }

        /* Newsletter form */
        .footer-section form {
            flex-direction: column;
            gap: 10px;
        }

        .footer-section input,
        .footer-section button {
            width: 100%;
            font-size: 16px;
        }
    }
}
section.training-section {
    padding-top: 50px;
    padding-bottom: 50px;
}
/* video section */
.video-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video-box {
    flex: 1 1 45%;
    max-width: 560px;
    aspect-ratio: 16 / 9;
    position: relative;
}

.video-box iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0;
    top: 0;
    left: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .video-box {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* taem section */

.team-row {
    display: flex;
    flex-wrap: wrap;
}

.team-col {
    padding: 15px;
}

@media (min-width: 992px) {
    .team-col {
        width: 20%; /* 5 columns on desktop */
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .team-col {
        width: 33.3333%; /* 3 columns on tablet */
    }
}

@media (max-width: 767px) and (min-width: 576px) {
    .team-col {
        width: 50%; /* 2 columns on mobile landscape */
    }
}

@media (max-width: 575px) {
    .team-col {
        width: 100%; /* 1 column on small mobile */
    }
}

.team-member {
    background: transparent;
    text-align: center;
    /* border: 1px solid #ddd; */
    padding: 15px;
    height: 100%;
}

.team-member img {
    width: 100%;
    height: 220px;
    max-height: 226px;
    object-fit: cover;
}

.name-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.name-row h5 {
    margin: 0;
    font-size: 14px;
}

.linkedin-icon {
    color: #0077b5;
    font-size: 14px;
}

.btn.btn-sm {
    font-family: "Heebo", Sans-serif;
    font-size: 13px;
    font-weight: 300;
    text-transform: capitalize;
    fill: #404040;
    color: #404040;
    background-color: #61ce7000;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #404040;
    border-radius: 5px 5px 5px 5px;
    padding: 8px 20px 8px 20px;
}

.btn.btn-sm:hover {
    background: #e08a2e;
}

/* line */
.advisers-section {
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #333;
}

/* Base line style */
.divider-line {
    height: 2px;
    background-color: #000;
    margin: 6px auto;
    position: relative;
    width: 100%;
    max-width: 100%;
}

/* Top line with orange accent */
.top-line .center-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #f4b373;
}

/* Bottom line is solid black */
.bottom-line {
    background-color: #000;
}

/* Orange accent in center */
.decorated-line .center-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #f4b373;
}

/* Plain black line */
/* team */

/* intro-section */

/* CSS */
.intro-section {

    text-align: center;
}

.intro-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-section p {
    color: #404040;
    font-family: "Philosopher", Sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 46px;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.intro-section .highlight {
    color: #f6a04d; /* Orange like in the screenshot */
}

@media (max-width: 768px) {
    .intro-section p {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .intro-section p {
        font-size: 25px;
        line-height: 1.5em;
    }
    .intro-section p.subheading{
        padding: 0px 0px;
    }
}
.news-title {
    text-align: center;
    font-size: 42px;
    font-weight: 300;
    color: #f4b373;
    margin-bottom: 5px;
    font-family: "Philosopher", Sans-serif;
}

.news-divider {
    display: flex;
    align-items: center;
    width: 100%;
}

.news-divider::before,
.news-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid black;
}

.news-divider span {
    background-color: #e0963f;
    height: 4px;
    width: 235px; /* length of the orange center */
}
/* who we seve section */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}

.advisors-section {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    text-align: center;
    line-height: 1.6;
}

.advisors-section p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.highlight {
    color: #e63946; /* red text for 'tax advisors' */
    /* font-weight: bold; */
}

/* Mobile-friendly adjustments */
@media (max-width: 600px) {
    .advisors-section {
        padding: 15px;
    }
    .advisors-section p {
        font-size: 1em;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: "Heebo", sans-serif;
    background-color: #ffffff;
}

/* Gray background for the section */
.services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px 20px;
}

/* Light gray boxes with no border */
.service-box {
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 30px 30px 30px 40px;
    max-width: 400px;
    flex: 1 1 300px;
    box-sizing: border-box;
    border: none;
    box-shadow: none;
}

.service-box h3 {
    color: #000000;
    font-family: "Philosopher", sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 46px;
    text-align: center;
    margin-bottom: 25px;
}

.service-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-box ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

.service-box ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    background-color: #f5a45d;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
}

/* Responsive behavior */
@media (max-width: 992px) {
    .services-section {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        max-width: 90%;
    }
}

.articles-grid {
    margin: 20px;

    display: grid;
    grid-template-columns: 1fr; /* Mobile: single column */
    gap: 20px;
}

/* Tablet */
@media (min-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr 1fr; /* 2 columns */
    }
}

/* Desktop: 4 columns (Image, Text, Image, Text) */
@media (min-width: 1024px) {
    .articles-grid {
        grid-template-columns: 200px 1fr 200px 1fr;
        align-items: start;
    }
}
@media (max-width: 992px) {
    .services-section {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* Tablet */
    }
}

@media (max-width: 600px) {
    .services-section {
        grid-template-columns: 1fr; /* Mobile */
    }
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.article-content h3 {
    color: #404040;
    font-family: "Heebo", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    box-shadow: none;
    text-decoration: none;
    box-sizing: border-box;
    font-feature-settings: "lnum";
    font-variant-numeric: lining-nums;
    font-weight: 400;
    letter-spacing: -0.0415625em;
    line-height: 1.25;
    margin: 3.5rem 0 2rem;
    margin: 0;
    padding: 0;
    text-align: inherit;

    text-transform: initial;
}

.article-content .author {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}

.article-content p {
    font-family: "Heebo", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    margin: 0;
    line-height: 1.5em;
    font-size: 14px;
    color: #777;
    box-sizing: border-box;
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    unicode-bidi: isolate;
}

.read-more {
    display: inline-block;
    background: #e0963f;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.read-more:hover {
    background: #000;
}

/* service blade */
.section-title {
    text-align: center;
    margin: 40px 0;
}

.section-title h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: normal;
    color: #f4a460; /* title color */
}

/* Black lines touching text */
.section-title h2::before,
.section-title h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #000;
}

.section-title h2::before {
    margin-right: 10px;
}
.section-title h2::after {
    margin-left: 10px;
}

/* Highlight bar under text */
.section-title h2 span {
    position: relative;
}
.section-title h2 span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f4a460;
}
/* // service baner */
.services-banner {
    text-align: center;
    margin: 0 auto;
    padding: 0;
}

.services-banner img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* service section card */
.services-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "Heebo", sans-serif;

}

.service-box {
    flex: 1 1 250px;
    max-width: 320px;

    padding: 30px 20px;
    box-sizing: border-box;
    text-align: left;
    background-color: #efefef;
    margin: 0; /* No gap between cards */
    border-right: none; /* Remove right border between cards */
}

.icon {
    text-align: center;
    margin-bottom: 15px;
}
.service-card .icon {
    display: flex;
    justify-content: start;
    padding-bottom: 14px;
}

.icon-img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) sepia(100%) hue-rotate(30deg) saturate(500%) brightness(1.2);
    opacity: 0.8;
}

h3.global-section {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 8px;
}

/*.underline {*/
/*    width: 30px;*/
/*    height: 2px;*/
/*    background-color: #000;*/
/*     margin: 13px 21px;*/
/*}*/

.service-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* wo we serve  */
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 5px;
    font-family: "Philosopher", Sans-serif;
    color: #f4b373;
}

h3.global-section {
    font-feature-settings: "lnum";
    font-variant-numeric: lining-nums;
    letter-spacing: -0.0415625em;
    color: #404040;
    font-family: "Heebo", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.section-title::before {
    content: "";
    position: absolute;
    bottom: -8px; /* distance from text */
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, black 0%, black 40%, #f5a45d 40%, #f5a45d 60%, black 60%, black 100%);
}

/* gulf section */

.gulf-section {
    padding: 40px 0;
}

.gulf-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    margin: 20px;
    gap: 40px;
}

.gulf-text {
    flex: 1;
}

.gulf-image {
    flex: 1;
}

.gulf-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

/* Heading Style */
.gulf-heading {
    color: #f5a25d;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Paragraph Style */
.gulf-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

/* Responsive */
@media (max-width: 768px) {
    .gulf-content {
        flex-direction: column;
        text-align: center;
    }
}

/* contact us page  */
.contact-section1 {
    padding: 40px 20px;
    background-color: #f9f9f9;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.contact-container1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-column {
    flex: 1 1 45%;
    min-width: 280px;
}

.contact-column h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.contact-column p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.contact-column a {
    color: #404040;
    text-decoration: none;
    font-weight: 500;
}

.contact-column a:hover {
    color: #ff6600;
    text-decoration: underline;
}

/* 📱 Mobile responsiveness */
@media (max-width: 768px) {
    .contact-container1 {
        flex-direction: column;
    }

    .contact-column {
        flex: 1 1 100%;
    }
}

/* job seeker */
.custom-row {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

/* Left Column - Image */
.custom-col-left {
    flex: 1;
    min-width: 300px;
    overflow: hidden;
    position: relative;
}

.custom-col-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.custom-col-left::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    pointer-events: none;
}

.custom-col-left:hover img {
    transform: scale(1.05);
}

/* Right Column - Content */
.custom-col-right {
    flex: 1;
    background-color: #f5a25d;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.custom-col-right h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.3;
}

.custom-col-right p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.custom-highlight {
    display: inline-block;
    color: #333;
    background: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 15px;
}

.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list li {
    font-size: 1.2rem;
    margin: 8px 0;
    position: relative;
    padding-left: 25px;
}

.custom-list li::before {
    content: "➤";
    position: absolute;
    left: 0;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-row {
        flex-direction: column;
    }
    .custom-col-right {
        padding: 40px 20px;
    }
}

/* wo weserveiconcss */
.custom-icon-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
}

.icon-box {
    width: 130px;
    cursor: pointer;
}

.icon-img {
    width: 100%;
    height: 93px;
    object-fit: contain;
    /* Default color #f5a25d */
    filter: invert(63%) sepia(30%) saturate(635%) hue-rotate(330deg) brightness(106%) contrast(175%);
    transition: filter 0.3s ease;
}

.icon-box:hover .icon-img {
    /* Change to black on hover */
    filter: invert(63%) sepia(30%) saturate(635%) hue-rotate(330deg) brightness(106%) contrast(175%);
}

.icon-box p {
   font-family: "Heebo", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #404040;
}

/* hiring description */
.two-column-section {
    padding: 40px 20px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.two-column-section .container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.two-column-section .column {
    flex: 1;
    min-width: 280px;
}

/*.two-column-section p {*/
/*    margin-bottom: 1rem;*/
/*    line-height: 1.6;*/
/*    color: #444;*/
/*}*/

.two-column-section .email-link {
    color: #e63946;
    text-decoration: none;
}

.two-column-section .email-link:hover {
    color: #000;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .two-column-section .container {
        flex-direction: column;
        gap: 20px;
    }
}

a.linkedin-icon {
    padding: 12px 10px 6px 10px;
    border-style: solid;
    border-width: -1px 1px 1px 1px;
    border-color: #f4b373;
    border-radius: 35px 35px 35px 35px;
    color: #f4b373;
}

i.fab.fa-linkedin-in {
    color: #f4b373;
}
.col-md-6 h2 span {
    font-family: "Philosopher", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
}
.col-md-3 h5 {
    color: #f4b373;
    font-family: "Philosopher", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
    line-height: 40px;
}
.col-md-3 p {
    text-align: left;
    color: #ffffff;
    font-family: "Heebo", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
}
.side-navigation .navbar-nav li a {
    font-family: Heebo, sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase !important;
    line-height: 8px;
    color: #404040 !important;
    fill: #404040;
    border-bottom: none;
    padding: 13px 20px;
}
.services-grid {
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #000;
    border-left: none;
    border-top: none;
}

.service-card {
    flex: 1 1 20%; /* 5 columns on desktop */
    box-sizing: border-box;
    padding: 30px 20px;
    border: 1px solid #000;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
    text-align: left;
    background-color: #fff;

}

.service-card:hover {
    background-color: #f4b373;
    color: #fff;
}

/* icon color */
.service-card .icon img {
    width: 8em;
    height: 7em;
    position: relative;
    display: block;
    /* default orange color (#f4a261) */
    filter: invert(64%) sepia(46%) saturate(635%) hue-rotate(330deg) brightness(96%) contrast(95%);
    transition: filter 0.3s ease;
}

.service-card:hover .icon img {
    /* hover pe white */
    filter: brightness(0) invert(1);
}

.underline {
    width: 40px;
    height: 2px;
    background-color: #000;
    margin: 13px  21px ;
}


.service-card:hover .underline {
    background-color: #fff;
}

.service-card h3 {
    color: #404040;
    font-family: "Heebo", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.0415625em;
    text-align: left;
}

.service-card p {
    color: #7e7e7e;
    font-family: "Heebo", sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    letter-spacing: -0.4px;
}

/* hover text white */
.service-card:hover h3,
.service-card:hover p {
    color: #fff;
}

/* Responsive layout */
@media (max-width: 1200px) {
    .service-card {
        flex: 1 1 33.33%; /* 3 columns */
    }
}

@media (max-width: 992px) {
    .service-card {
        flex: 1 1 50%; /* 2 columns */
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 1 1 100%; /* 1 column */
    }
}

/*after summer*/

h2.elementor-heading-title {
    color: #404040;
    font-family: "Philosopher", Sans-serif;
    font-size: 36px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 40px;
}
p.speakers {
    color: #404040;
    font-family: "Heebo", Sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
}
button.btn.btn-primary.contact-button.special-btn {
    background-color: #61CE7000;
    color: #404040;
    font-family: "Heebo", Sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-radius: 0px 0px 0px 0px;
}
section.hiring-two-coulmn {
    max-width: 1069px;
    padding: 0% 5% 5% 11%;
}
.service-card.text-center {
    height: 340px;
}
.text-primary-color {
    color: #e89e50;
}
.text-primary-font {
    font-family: Philosopher, sans-serif;
}


.footer-subtitle{
    color: #F4B373;
    font-family: "Heebo", Sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 40px;
}


.footer-subtitle-details{
    color: #fff;
    font-family: "Heebo", Sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 40px;
}
section.footer-section.text-white {
    padding-bottom: 100px;
}

.row.service-row {
    margin: auto;
    gap: 120px;
    width: 100%;
    /* padding-right: 53px; */
}
article.service.mb-5 h3 {
    color: #F4B373;
    font-family: "Philosopher", Sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 46px;
    letter-spacing: -0.0415625em;
}
article.service.mb-5 p,
article.service.mb-5 li,
article.service.mb-5 li p {
    color: #404040;
    font-family: "Heebo", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    /*letter-spacing: -0.0415625em;*/
}
h4.contact-main {
    color: #F3A961;
    font-family: "Philosopher", Sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 46px;
}
p.contactp {
    text-align: left;
    color: #404040;
    font-family: "Heebo", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.col-md-6.mb-4.info {
    text-align: left;
    color: #404040;
    font-family: "Heebo", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
        margin-top: 34px;
}section.intro-section.text-center.mb-5 {
    margin-top: 23px;
    margin-bottom: 31px;
}
.hiring-job p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    font-weight: 300;
    color: #404040;
    font-family: "Heebo", Sans-serif;
    /* margin: 0px 0px 0px 0px; */
    /* --e-column-margin-right: 0px; */
    /* --e-column-margin-left: 0px; */
    /* padding: 4% 4% 4% 4%; */
    line-height: 1.5;
    margin: 0 0 1em 0;
    font-size: 15px;
    letter-spacing: -0.015em;
}
@media (max-width: 767px) {
    .main-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    article.service.mb-5 p,
    article.service.mb-5 li p {
        text-align: justify;
    }
    article.service.mb-5 h3 {
        margin: 24px 0px 12px 0px;
        font-size: 22px;
        line-height: 25px;
    }
}


/* Custom CSS */
.contact-section1{
    text-align: left;
    color: #404040;
    font-family: "Heebo", Sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 25px;
}
.footer-subheading{
    color: #f4b373;
    font-family: "Philosopher", Sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
}
.subheading{
    font-family: "Philosopher", Sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    -webkit-text-stroke-color: #000;
    stroke: #000;
    letter-spacing: -0.6px;
}

.seprater-line{
    width: 98%;
    margin: 0px 1%;
    height: 1px;
    background-color: #f4b373;
}
.service-card .icon img{
    filter: invert(63%) sepia(30%) saturate(635%) hue-rotate(330deg) brightness(106%) contrast(175%);
}

.service-card .underline {
    margin: 16px 0px;
    height: 1px;
}

.service-row .icon-box{
    width: 20%;
}

/* Mobile Custom CSS */
@media (max-width: 767px) {
    .service-card .icon {
        display: flex;
        justify-content: center;
        padding-bottom: 14px;
    }
    .service-card .icon img{
        width: 59px;
        object-fit: contain;
        filter: invert(63%) sepia(30%) saturate(635%) hue-rotate(330deg) brightness(106%) contrast(175%);
    }
    .service-row .icon-box{
        width: 45%;
    }
    
}

section.services-section.py-5 {
    margin-top: -65px;
}
