/* Contact Section Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-top: 50px;
}

.contact-info {
    min-width: 280px;
}

.contact-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    border-bottom: 3px solid #004AF2;
    padding-bottom: 10px;
    text-align: left;
}

.contact-address {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    font-style: normal;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 15px;
    flex-direction: row;
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #004AF2, #0066FF);
    border-radius: 50%;
    padding: 8px;
    order: 1;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.contact-details {
    flex: 1;
    order: 2;
    margin-left: 0;
}

.contact-label {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
    margin-top: 0;
    display: inline;
}

.contact-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.contact-text a {
    color: #004AF2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #0066FF;
    text-decoration: underline;
}

.contact-address p {
    margin-bottom: 20px;
}

.contact-address strong {
    color: #2c2c2c;
    font-weight: 700;
}

/* Social Media Styles */
.social-media-container {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.social-media-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    text-align: center;
}

.social-media-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1) rotateY(360deg);
    filter: brightness(1.2);
}

/* Commented out existing social media icon styles
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(240, 148, 51, 0.4);
}

.social-icon.instagram:hover {
    box-shadow: 0 8px 25px rgba(240, 148, 51, 0.6);
}

.social-icon.twitter {
    background: linear-gradient(45deg, #1da1f2, #0d8bd9);
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
}

.social-icon.twitter:hover {
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.6);
}

.social-icon.youtube {
    background: linear-gradient(45deg, #ff0000, #cc0000);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.social-icon.youtube:hover {
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.6);
}

.social-icon.facebook {
    background: linear-gradient(45deg, #3b5998, #2d4373);
    box-shadow: 0 4px 15px rgba(59, 89, 152, 0.4);
}

.social-icon.facebook:hover {
    box-shadow: 0 8px 25px rgba(59, 89, 152, 0.6);
}
*/

/* New WhatsApp and LinkedIn icon styles */
.social-icon.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.social-icon.whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.social-icon.linkedin {
    background: linear-gradient(45deg, #0077b5, #005885);
    box-shadow: 0 4px 15px rgba(0, 119, 181, 0.4);
}

.social-icon.linkedin:hover {
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.6);
}

/* Contact Form Styles */
.contact-form-container {
    min-width: 300px;
}

.contact-form-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    border-bottom: 3px solid #004AF2;
    padding-bottom: 10px;
    text-align: left;
}

.contact-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #333333;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #004AF2;
    box-shadow: 0 0 0 3px rgba(0, 74, 242, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999999;
    font-style: italic;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #004AF2, #0066FF);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.form-submit-btn:hover::before {
    left: 100%;
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #0066FF, #0080FF);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 74, 242, 0.4);
}

.form-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 74, 242, 0.3);
}

.form-submit-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover i {
    transform: translateX(5px);
}

/* Map Styles */
.contact-map {
    min-width: 300px;
}

.map-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 25px;
    border-bottom: 3px solid #004AF2;
    padding-bottom: 10px;
    text-align: left;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Rest of the CSS remains the same */

body {
    margin: 0;

    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #585858;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.no-scroll,
.show-nav {
    overflow: hidden;
}

.conteiner {
    width: 100%;
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Page */

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin: 0 0 10px;
}

.img {
    display: block;
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

/* Header */

.header {
    background-color: rgba(0, 0, 0, 0.639);
    height: 85px;
    width: 100%;
    
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 100;

    transition: background-color .2s linear;
}

.header--dark,
body.show-nav .header {
    background-color: rgba(0, 0, 0, 0.9);
    
   
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.header .img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-direction: row;
}

.header__company-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    text-decoration: none;
    white-space: nowrap;
}

/*--Nav----*/

.nav {
    font-size: 15px;
    display: flex;
    height: 100%;
}

.nav__link {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;

    padding: 0 10px;
    transition: background .2s linear;
}



.nav__link:not(.active):hover {
    text-decoration: underline;
}

.nav__link.active {
    background-color: #004AF2 ;

}

/* Burger*/

.burger {
    width: 30px;
    height: 23px;
    
    display: none;
    position: relative;

    font-size: 0;
    color: transparent;
    
    padding: 0;
    border: 0;
    background: none;
}

.burger:focus {
  outline: none;  
}

.burger__line {
    display: block;
    width: 30px;
    height: 2px;

    background: #fff;

    margin: 3px 0;

}

.burger__line:nth-child(1) {
    width: 20px;
    margin-left: auto;
}


.burger__line:nth-child(1),
.burger__line:nth-child(3) {
    transform-origin: right;
    transition: width .2s ease-out;
}


.burger.active
.burger__line:nth-child(1),
.burger.active
.burger__line:nth-child(3) {
    width: 0;
}

.burger.active
.burger__line:nth-child(2),
.burger.active
.burger__line:nth-child(4) {
    position: absolute;
    left: 0;
    top: 50%;

    transform-origin: center;
    transition: transform .2s ease-out;
}


.burger.active
.burger__line:nth-child(2) {
    transform: rotate(45deg);
}

.burger.active
.burger__line:nth-child(4) {
    transform: rotate(-45deg);
}

/*Intro*/

.intro {
    height: 600px;
    margin-bottom: 30px;
    position: relative;
    background-color: #000;
 
}


.intro--blog {
    height: 350px;

    background: #000 
    url("../images/introbg/news-intro-blog.jpg")
     no-repeat center;
    background-size: cover;
}

.intro--text {
    height: 350px;

    background: #000 
    url("../images/privacy/text-intro.jpg")
     no-repeat center;
    background-size: cover;
}

.intro__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    background: #000 url("../images/slider/slide-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;


    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.intro__slider.slick-initialized {
    display: block;
    background: #000;
}

.intro__slider .slick-list,
.intro__slider .slick-track {
    height: 100%;
    
}

.intro__slider-photo {
    display: block;
    width: 100%;
    height: 550px;

    object-fit: cover;
    object-position: center;
}

.intro__slider-arrows {
    position: absolute;
    bottom: 30px;
    left: 430px;
}

.intro__slider-btn {
    width: 0;
    height: 0;
    padding: 0;

    font-size: 0;
    color: transparent;
    cursor: pointer;

    background: none;
    margin: 0 4px;
}


.intro__slider-btn:focus {
    outline: none;
} 

.intro__slider-btn--prev {
    
    border-style: solid;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff ;
     
}

.intro__slider-btn--next {
    border-style: solid;
    border-width: 10px 0 10px 10px;
    border-color: transparent #fff;
}

.intro__inner {
    height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    position: relative;
    z-index: 2;

    
}

.intro__text {
    text-align: right;
    margin-bottom: 45px;

    pointer-events: auto;

}

.intro__countries {
    font-size: 15px;
    color: #fff;
}

.intro__title {
    position: relative;

    font-size: 110px;
    font-family: 'Lato', sans-serif;
    line-height: 0.9;
    color: #fff;
    font-weight: 700;
    color: rgb(255, 255, 255);
}

.intro__title-amp {
    font-size: 170px;
    line-height: 1;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}




/* Request */


.request-form {
    width: 100%;
    max-width: 400px;
    background-color: #004AF2;
    border-radius: 5px;
    overflow: hidden;
}

.request-form--intro {
    position: relative;
    bottom: -80px;

    z-index: 1;
}


.request-form--right {
    margin-left: auto;
}




.request-form__header {
    background-color: #033FC9;

    padding: 20px 30px;
    
}

.request-form__title {
    margin-bottom: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: #fff;

}

.request-form__text {
    font-size: 16px;
    color: #fff;
    line-height: 1.4;
}

.request-form__content {
    padding: 30px;
}

/* Form */

.form__group {
    margin-bottom: 25px;
}

.input {
    display: block;
    width: 100%;

    background: none;
    border: 0;

    font-family:  'PT Sans', sans-serif;
    font-size: 16px;
    color: #fff;

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 12px;
    padding-left: 40px;

    transition: border-color .1s linear;
}




.input::placeholder {
    color: #fff;
}

.input:focus {
    outline: none;
    border-bottom-color: #fff;
}

.input--dark {
    border-bottom-color: #e8e8e8;
    color: #2c2c2c;
}

.input--dark::placeholder {
    color: #2c2c2c;
}

.input--dark:focus {
    border-bottom-color: #000;
}


.input--user {
    background: url("../images/intro bg/ionicons svg ios person.svg")left 15px top 5px  no-repeat;
}

.input--phone {
    background: url("../images/intro bg/_ionicons_svg_ios-call 1.svg")left 15px top 5px  no-repeat;
}

.input--email {
    background: url("../images/intro bg/_ionicons_svg_ios-mail 1.svg")left 15px top 5px  no-repeat;
}

.input--dark.input--user {
    background: url("../images/modal/_ionicons_svg_ios-person 1.svg")left 15px top 5px  no-repeat;
}

.input--dark.input--phone {
    background: url("../images/modal/_ionicons_svg_ios-call 2.svg")left 15px top 5px  no-repeat;
}

.input--dark.input--email {
    background: url("../images/modal/_ionicons_svg_ios-mail 3.svg")left 15px top 5px  no-repeat;
}


/*----Btn------*/

.btn {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    overflow: hidden;

    font-family:  'PT Sans', sans-serif;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    cursor: pointer;

    padding: 15px 45px;
    background: #333;
    border: 0;
    border-radius: 5px;
    text-decoration: none;
    
}

.btn::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;

    background: #6d3434;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: opacity .2s linear;
}

.btn:hover::before {
    opacity: .3;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn--shadow {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.btn--orange {
    background: linear-gradient(to right, #FF903E, #FF2C2C);
    
}

.btn--block {
    width: 100%;
    display: block;
}

/* Section */

.section {
    padding: 60px 0;
    
}

.section__title {
    font-family: 'Lato', sans-serif;
    font-size: 45px;
    font-weight: 900;
    color: #2c2c2c;
    line-height: 1.2;

    margin-bottom: 40px;
}

.section--map {
    background: url("../images/clients/map-bg.png") no-repeat left 30px top 130px;
   
}

.section__title span {
    color: #004AF2;
}

.section--gray {
    background-color: #f9f9f9;
}

.section--last {
    margin-bottom: 60px;
}

/*   Services   */

.services {
    position: relative;

    display: flex;
    flex-wrap: wrap;
    padding: 30px 0 50px;

    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

.services__main-title {
    position: absolute;
    right: 30px;
    bottom: 12px;
    z-index: 1;
    pointer-events: none;

    font-family: 'Lato', sans-serif;
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
    color: rgba(24, 24, 24, 0.246);

}

.services__item {
    display: flex;
    flex-direction: column;

    width: 25%;
    padding: 0 25px;
    margin-bottom: 30px;
}

.services__title {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    color: #004AF2;

    margin-bottom: 20px;

}

.services__text {
    font-size: 16px;
    
    line-height: 1.4;
    color: #585858;

    margin-bottom: 20px;
}

.services__footer {
    margin-top: auto;
}

.services__link {
    font-size: 16px;
    color: #004AF2;
    text-decoration: none;
    transition: color .2s linear;

    display: inline-block;
    justify-content: flex-end;
}

.services__link::after {
    content: "";
    display: block;
    width: 10px;
    height: 2px;
    background-color: #004AF2;

    transition: width .2s linear;
    margin-top: 5px;

    
}

.services__link:hover {
    color: #FF3E2F;
}

.services__link:hover::after {
    width: 100%;
    background-color: #FF3E2F;
}

/* Clients */

.clients__logos img {
  max-width: 180px;
  max-height: 80px;
  object-fit: contain;
  margin: 15px;
  display: block;
}

.world-window-logo {
  max-width: 150px !important;
  max-height: 70px !important;
}

.honey-overseas-logo {
  max-width: 160px !important;
  max-height: 75px !important;
}

.clients__list-logo {
  max-width: 140px !important;
  max-height: 70px !important;
}

/* Additional client logo specific styling */
.clients__list li img[src*="Mahindra"] {
  max-width: 160px !important;
  max-height: 80px !important;
}

.clients__list li img[src*="TCI"] {
  max-width: 120px !important;
  max-height: 60px !important;
}

.clients__list li img[src*="Zepto"] {
  max-width: 130px !important;
  max-height: 65px !important;
}

.clients__reviews {
    width: 40%;
}

.clients__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.clients__list li {
    margin-right: 50px;
    margin-bottom: 40px;
}

.clients-love {
    display: inline-block;
    margin-left: 40px;
    min-height: 47px;
    padding-top: 5px;

    background: url("../images/clients/_ionicons_svg_ios-heart-empty 1.png") no-repeat left 20px top 0px;

    color: #464646;
    font-size: 18px;
}

/* Reviews */

.reviews {
    position: relative;
}


.reviews::before,
.reviews::after {
    content: "";
    display: block;
    width: 10px;
    height: 100%;

    position: absolute;
    top: 0;
    
    z-index: 3;
}

.reviews::before {
    left: 0;
    background-image: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

.reviews::after {
    right: 0;
    background-image: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}


.reviews .slick-dots {
    display: flex;
    justify-content: center;
    width: 100%;

    position: absolute;
    bottom: -30;
    left: 0;
    z-index: 3;
}

.reviews .slick-dots li {
    margin: 0 10px;
    
}

 .slick-active button {
    background: #004AF2;
    box-shadow: 0 0 0 7px rgba(0, 74, 242, .11);
}

.reviews .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;

    padding: 0;
    
    border: 0;
    border-radius: 50%;

    color: transparent;
    font-size: 0;

    cursor: pointer;
    transition: background .3s linear;
}


.reviews .slick-dots button:focus {
    outline: none;
}


.reviews__item {
    padding: 0 20px;
    text-align: center;
}

.reviews__header {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
    justify-content: center;

    font-family: 'Lato', sans-serif;
    
}

.reviews__header-content {
    padding-left: 20px;
    flex-grow: 1;
}

.reviews__photo {
    width: 100px;
    height: 105px;
    align-items: center;

}

.reviews__name {
    font-size: 20px;
    color: #000000;
    font-weight: 900;
}

.reviews__content {
    font-size: 14px;
    color: #363535;
    line-height: 1.3;
    letter-spacing: 0.2px;
}


.reviews__p {
    margin-bottom: 30px;
}

.reviews__p:first-child {
    text-indent: 20px;
}

/* Benefits */

.benefits {
    display: flex;
}

.benefits__col {
    width: 35%;
}

.benefits-list {
    position: relative;

    width: 100%;
    max-width: 40px;
    padding-left: 50px;

    background-image: linear-gradient(to bottom, #fff 40%, #a5a5a5 40%);
    background-size: 2px 35px;
    background-repeat: repeat-y;
    background-position: left 12px top;
    
}

.benefits-list::before,
.benefits-list::after {
    content: "";
    display: block;
    width: 28px;
    height: 38px;

    background-repeat: no-repeat;
    background-color: #fff;
    position: absolute;
    
    left: 0;
    z-index: 1;
}

.benefits-list::before {
    background-image: url("../images/benefits/_ionicons_svg_md-pin 1.svg");
    top: 2px;
}


.benefits-list::after {
    background-image: url("../images/benefits/ionicons svg md pin.svg");
    bottom: -18px;
}


.benefits-list__item:not(:last-child) 
{
    margin-bottom: 35px;
}

.benefits-list__title {
    font-family: 'Lato', sans-serif;
    font-size: 22px;
    color: #2c2c2c;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 12px;
}

.benefits-list__text {
    font-size: 15px;
    color: #585858;
    line-height: 1.4;
}

/* Team */

.team {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.team__col {
    padding: 0 15px;
    width: 33.33333%;
    margin-bottom: 30px;
}

.team__photo {
    box-shadow: 10px 5px 13px rgba(0, 0, 0, .16);
    margin-bottom: 13px;
    display: block;
    max-width: 100%;
    height: auto;
}

.team__name {
    margin-bottom: 5px;

    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    font-weight: 900;
    line-height: 1.2;
}

.team__prof {
    margin-bottom: 11px;

    font-size: 15px;
    color: #585858;
}

.team__contacts {
    font-size: 14px;
    color: #585858;
    line-height: 1.2;
}

.team__contacts li {
    margin-bottom: 9px;
}

.team__contacts a {
    color: inherit;
    text-decoration: none;
}

.team__contacts a:hover {
    text-decoration: underline;
    
}

.team__contacts-icon {
    width: 16px;
    height: auto;
    margin-right: 7px;
}

/* Mission */

.mission-title {
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-size: 90px;
    color: rgba(0, 0, 0, .05);
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;

}

.mission {
    position: relative;
    margin-top: -23px;
    
    padding: 60px 30px;
    margin-bottom: 30px;

    font-family: 'Lato', sans-serif;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .16);

    text-align: center;
}

.mission::before,
.mission::after {
    content: "";
    display: block;
    width: 41.6666%;
    height: 2px;

    position: absolute;
    bottom: 0;
    z-index: 1;
}

.mission::before {
    background-color:  #004AF2;
    right: 50%;
}


.mission::after {
    background-color: #FC2C2B;
    left: 50%;
}

.mission__title {
    
    font-size: 30px;
    color: #004AF2;
    font-weight: 700;
    line-height: 1.2;

    margin-bottom: 5px;
    
}

.mission__subtitle {
    font-size: 21px;
    color: #585858;
}


/* News */

.article {
    display: flex;
    
    justify-content: space-between;

    margin: 0 -15px 30px;
}

.article--colum {
    flex-direction: column;
    
}

.article__item {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;

    padding: 0 15px;
    
}

.article__title {
    margin-bottom: 15px;

    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
}

.article__title a {
  
    color: inherit;
    text-decoration: none;
}

.article__title a:hover {
    text-decoration: underline;
}

.article__text {
    margin-bottom: 15px;

    font-size: 16px;
    color: #585858;
}



/* Footer */

.footer {
    padding: 40px 0;
    margin-top: auto;

    background-color: #f9f9f9;
    background-image: url("../images/footer/tire-track-png-3 1.png"),
    url("../images/footer/tire-track-png-3 2.png");
    background-repeat: no-repeat;
    background-position: left 0 bottom 0, 
    right 0 bottom 0;

    text-align: center;
}

.footer__contacts {
    margin: 25px 0;

    text-align: center;
    color: #004AF2;
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
}

.footer__contacts p {
    margin: 0;
}

.footer__contacts a {
    color: inherit;
    text-decoration: none;
}

.footer__contacts a:hover {
    text-decoration: underline;
}

.footer__nav {
    font-size: 12px;
}

.footer__nav a {
    margin: 0 5px;

    color: #004AF2;
    text-decoration: none;
}

.footer__nav a:hover {
    text-decoration: underline;
}

/* Modal */

.modal {
   display: none;
   
    padding: 30px 15px;
    overflow: auto;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, .9);

    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
}

.modal.show {
    display: block;
}

.modal__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.modal__content {
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    padding: 25px 25px;
    opacity: 0;

    transform: scale(0.5);
    transition: transform .2s ease-out, opacity .2s ease-out;

    position: relative;
}

.modal__header {
    text-align: center;
    margin-bottom: 25px;
}


.modal__title {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    color: #004AF2;
    font-weight: 900;
    line-height: 1.2;

    margin-bottom: 10px;
    
}

.modal__text {
    font-size: 15px;
    color: #2c2c2c;
    
}

.modal__footer {
    border-top: 1px solid #e8e8e8;

    margin-top: 25px;
    padding-top: 25px;

    text-align: center;
}

.modal__footer-title {
    margin-bottom: 10px;

    font-family: 'Lato', sans-serif;
    font-size: 18px;
    color: #2c2c2c;
    font-weight: 900;
}

.modal__contacts {
    font-size: 16px;
    color: #2c2c2c;
    font-style: normal;
}

.modal__contacts p {
    margin-bottom: 3px;
}

.modal__contacts a {
    color: inherit;
    text-decoration: none;
}

.modal__contacts a:hover {
    text-decoration: underline;
}

.modal__close {
    width: 20px;
    height: 20px;
    padding: 0;
    cursor: pointer;

    background: none;
    border: none;


    position: absolute;
    top: -20px;
    right: -30px;
    z-index: 1;

    transition: transform .2s linear;
}

.modal__close:hover {
    transform: rotate(90deg);
}


.modal__close img {
    display: block;
}


.modal__close:focus {
    outline: none;;
}


/* Main */

.main {
    display: flex;
    margin: 0 -15px;
}

.main__col {
    width: 50%;
    padding: 0 15px;
}

/* Text */

.text {
    max-width: 890px;
    margin-bottom: 50px;

    font-size: 18px;
    font-weight: 1.5;
    color: #585858;
}

.text p {
    margin-bottom: 20px;
}


.text h2,
.text h3,
.text h4,
.text h5,
.text h6 {
    margin-bottom: 20px;

    font-weight: 700;
    color: #2c2c2c;
}

.text h2 {
    font-size: 27px;
}

.text h3 {
    font-size: 24px;
}

.text h4 {
    font-size: 21px;
}

.text h5 {
    font-size: 18px;
}

.text h6 {
    font-size: 15px;
}


/* Contact Section Styles */
.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-title {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 35px;
    font-family: 'Lato', sans-serif;
    text-align: left;
}

.contact-address {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    font-style: normal;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 18px;
    flex-direction: row;
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    margin-top: 0;
    order: 1;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #333333;
}

.contact-details {
    flex: 1;
    order: 2;
    margin-left: 0;
}

.contact-label {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 8px 0;
    font-family: 'Lato', sans-serif;
    display: inline;
}

.contact-text {
    font-size: 16px;
    color: #333333;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.contact-address p {
    margin-bottom: 20px;
}

.contact-address strong {
    color: #2c2c2c;
    font-weight: 700;
}

.contact-map {
    flex: 0 0 600px;
    margin-right: auto;
}

.contact-map iframe {
    width: 600px;
    height: 450px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.contact-map iframe:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
  

@media (max-width: 991px) {
   
/* Intro */

    .intro__title {
        font-size: 90px;
    }

    

    .intro__title-amp {
        font-size: 120px;
        right: auto;
        left: 50%;
        transform: translate3d(-50%, -50%, 0);
    }


    .intro--blog {
        height: 250px;
}

    /* Section */

.section__title {
    text-align: center;
}

.section--map {
    background-position: center top 130px;
}


    /* Services */
    
    .services__item {
        width: 50%;
    }

    /* Clients */

    .clients {
        flex-direction: column;
        margin-bottom: 60px;
        
    }

.clients__logos, 
.clients__reviews {
    width: 100%;
}

.clients__logos {
    margin-bottom: 50px;
}

    .clients__list {
        justify-content: center;
        margin: 0 -15px;
        
    }

   

   .clients__list-logo {
       margin: 0 auto;
       width: 100%;
   }

/* Footer */

.footer {
    background-size: 350px;
    height: auto;
}


/* ticle */

.article__title {
   font-size: 24px;

}

/* Main */

.main__col--left {
    width: 60%;
}

.main__col--right {
    width: 40%;;
}

.intro__slider-arrows {
    display: none;
}

}



@media (max-width: 767px) {
    
    /* Header */
    
    .header {
        height: 50px;
    }

    .header__inner {
        height: 50px;
        
    }

    .header--dark {
        height: 50px;
    }

    .header__company-name {
        font-size: 14px;
        display: none;
    }

   


    /* Nav */

    .nav {
        
        width: 100%;
        height: auto;
        min-height: calc(100vh - 50px);
        flex-direction: column;

        background-color: rgba(0, 0, 0, .85);
        padding-top: 9px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1;

        transform: translateX(100%);
        transition: transform .2s ease-out;
    }

    .nav.show {
        
        transform: translateX(0);
    }


    .nav__link {
        display: block;
        padding: 10px 15px;
        text-align: right;
    }


    /* Burger */ 

    .burger {
        display: block;
    }

    /* Intro */


   .intro {
       
       margin-bottom: 0;
   }

    .intro__inner {
        flex-direction: column;
        align-items: center;

        height: auto;
        padding-top: 75px;
        
    }
    
    
    .intro__title {
        font-size: 70px;
    }

    .intro__text {
        order: 1;
        width: 100%;
        text-align: center;
    }

    .intro__title-amp {
        font-size: 100px;
        right: auto;
        left: 50%;
        transform: translate3d(-50%, -50%, 0);
    }


    /* Request */

    .request-form--intro {
        order: 2;
        position: static;
        margin-bottom: 20px;
    } 
    

    /* benefits */

    .benefits {
        flex-direction: column;
        max-width: 600px;
        margin: 0 auto;
    }

    .benefits__col {
        width: 100%;
        
    }

    .benefits-list {
        margin-bottom: 40px;
        max-width: none;
    }

    /* Team */

    .team { 
        flex-direction: column;
    }
    
    .team__col {
        width: 100%;
    }

    .team__col:last-child {
        margin-bottom: 0;
    }

    .team__item {
        max-width: 370px;
        margin : 0 auto;
    }

    /* Mission */

    .mission {
        padding: 40px 20px;
        margin-top: -14px;
    }

    .mission-title {
        font-size: 60px;
    }

    .mission__title {
        font-size: 24px;
    }

    .mission__subtitle {
        font-size: 18px;
    }

    /* Article*/

    .article {
        flex-wrap: wrap;
    }

    .article__item {
        max-width: none;
    }

    .article--colum {
        margin-bottom: 10px;
    } 

    .footer {
        background-size: 250px;
        height: auto;

        background-position: left -50px bottom 25px, 
        right -50px bottom 25px;
    }


    .main {
        flex-direction: column;
        
    }
    
    .main__col {
        width: 100%;
        
    }
    
    /* ticle */
    
    .article__title {
       font-size: 24px;
    
    }
    
    /* Request */
    
    
    .request-form--right {
        margin: 30px auto 0; 
    }

    .section--last {
        margin-bottom: 0px;
    }

}


@media (max-width: 575px) {
    
    /* Intro */
    
    .intro__title {
        font-size: 60px;
    }

    

    .intro__title-amp {
        font-size: 90px;
        right: auto;
        left: 50%;
        transform: translate3d(-50%, -50%, 0);
    }

    
    
    /* Section */

    .section {
        padding: 30px 0;
    }

    .section__title {
        font-size: 35px;
    }
    
    .section--last {
        margin-bottom: 0px;
    }
    
    
    /* Services */

    .services__main-title {
        font-size: 60px;
    }


    .services__item {
        width: 100%;
    }

    /* Clients */
    
    .clients__list li {
        max-width: none;
        width: 33.33333%;
        margin-right: 0;
        padding: 0 15px;
 
    }

    .clients__list {
        justify-content: center;
        margin: 0 -15px;
        
    }

    .clients-love {
       display: none;
    }


     /* Mission */

     .mission {
        
        margin-top: -8px;
    }

    .mission-title {
        font-size: 38px;
    }

    .mission__title {
        font-size: 20px;
    }

    .mission__subtitle {
        font-size: 16px;
    }


/* Gallery Section */

.image-gallery {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

.gallery-container img {
  width: 100%;          /* makes image fit neatly */
  height: 220px;        /* fixes height */
  object-fit: cover;    /* crops instead of stretching */
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-container img:hover {
  transform: scale(1.05);
}



/* Footer */
    /* .footer {
        background-size: 200px;
        height: auto;
        background-position: left -50px bottom 86px, right -50px bottom 86px;
    } */

/* Modal */
    .modal__close {
        right: 0;
        top: -30px;

    }

}

/* Contact Section Styles */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-info,
    .contact-map {
        order: unset;
    }
    
    .contact-map {
        flex: 1;
    }
    
    .contact-map iframe {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 20px;
    }
    
    .contact-address {
        font-size: 14px;
    }
    
    .contact-map iframe {
        height: 250px;
    }
}

/* Animated Trucks Background */
.animated-trucks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.truck {
    position: absolute;
    width: 120px;
    height: 60px;
    opacity: 0.3;
    filter: brightness(0.7) contrast(1.2);
}

.truck img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 74, 242, 0.3);
}

/* Truck Animation Keyframes */
@keyframes truckMoveRight {
    0% {
        transform: translateX(-150px) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(calc(100vw + 50px)) scale(0.8);
        opacity: 0;
    }
}

@keyframes truckMoveLeft {
    0% {
        transform: translateX(calc(100vw + 50px)) scale(0.8) scaleX(-1);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateX(-150px) scale(0.8) scaleX(-1);
        opacity: 0;
    }
}

@keyframes truckMoveDiagonal {
    0% {
        transform: translateX(-150px) translateY(20px) scale(0.7);
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateX(calc(100vw + 50px)) translateY(-20px) scale(0.7);
        opacity: 0;
    }
}

/* Individual Truck Animations */
.truck-1 {
    top: 15%;
    animation: truckMoveRight 25s linear infinite;
    animation-delay: 0s;
}

.truck-2 {
    top: 35%;
    animation: truckMoveLeft 30s linear infinite;
    animation-delay: 5s;
}

.truck-3 {
    top: 55%;
    animation: truckMoveRight 28s linear infinite;
    animation-delay: 10s;
}

.truck-4 {
    top: 25%;
    animation: truckMoveDiagonal 35s linear infinite;
    animation-delay: 15s;
}

.truck-5 {
    top: 45%;
    animation: truckMoveLeft 32s linear infinite;
    animation-delay: 20s;
}

/* Hover effect to make trucks more visible */
.intro:hover .truck {
    opacity: 0.5;
    filter: brightness(0.9) contrast(1.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .truck {
        width: 80px;
        height: 40px;
        opacity: 0.2;
    }
    
    .truck-1 { animation-duration: 20s; }
    .truck-2 { animation-duration: 22s; }
    .truck-3 { animation-duration: 24s; }
    .truck-4 { animation-duration: 26s; }
    .truck-5 { animation-duration: 28s; }
}

@media (max-width: 480px) {
    .truck {
        width: 60px;
        height: 30px;
        opacity: 0.15;
    }
}
