* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Serif Pro';
}

body {
    font-family: 'Source Serif Pro';
    color: #373A40;
    overflow-x: hidden;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}

img {
    max-width: 100%;
    height: auto;
}

.header {
    background: white;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #b82d2d;
}

.top-border {
    background: linear-gradient(90deg, #400D02 0%, #E52700 40.87%, #671200 99.97%);
    height: 14px;
    width: 100%;
    display: block;
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    color: #1F2124;
}

nav a:hover {
    color: #b82d2d;
}

.contact-btn {
    background: #b82d2d;
    color: white !important;
    padding: 10px 25px;
    border-radius: 25px;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #8f2323;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
nav a.active,
.mobile-nav a.active{
    color: #d71920;
    font-weight: 600;
}
.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
    border-radius: 3px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav.active {
    max-height: 500px;
    position: relative;
    top: 0;
}

.mobile-nav a {
    display: block;
    padding: 15px 50px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.mobile-nav a:hover {
    background: #f8f9fa;
    color: #b82d2d;
}

.mobile-nav .contact-btn {
    margin: 15px 50px;
    display: inline-block;
    text-align: center;
}

.page-center {
    max-width: 1360px;
    margin: 0 auto;
    width: 100%;
}


nav {

    justify-content: normal;
}



.header .page-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media(max-width:1150px) {
    nav a {
        font-size: 15px;
    }

    .contact-image img {
        max-width: 150px;
    }

    .logo-icon img {
        max-width: 180px;
    }
}

@media(max-width:840px) {
    nav {
        display: flex;
        gap: 10px;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px 30px;
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    header.header .contact-image {
        display: none;
    }



}





.hero {
    padding: 80px 20px;
    background: #F4F4F4;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.banner-right img {
    height: 100%;
    width: 100%;
}

.hero .page-center {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 0;
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-content h1 {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    line-height: 58px;
    color: #171403;
}

.hero-content p {
    margin-bottom: 30px;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #374151;
}

.learn-more-btn {
    background: #CF271E;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
    font-family: roboto;
    letter-spacing: 1px;
    text-decoration: none;
}

.learn-more-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}


.hero-image img {
    width: 100%;
    position: relative;
    z-index: 2;
}

.banner-left-shap {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
}

.red-shape-top {
    position: absolute;
    height: 99%;
    width: 80%;
    border: 3px solid #fff;
    border-radius: 50px;
    transform: skewX(347deg);
    left: 19px;
    z-index: 9;
    top: -21px;
}

.banner-right {
    position: absolute;
    right: -130px;
    top: 0;
    height: 100%;
    width: 50%;
}

.hero .page-center {
    position: relative;
    z-index: 8;
        max-width: 100%;
    padding: 0 9.5%;
}

.hero-image .banner-right {
    display: none;
}

@media(max-width:1180px) {
    .hero-content {
        padding-right: 20px;
    }
}

@media(max-width:991px) {
    .hero-content h1 {
        font-size: 36px;
        line-height: 1;
    }
}

@media(max-width:767px) {
    .hero .page-center {
        display: block;
        padding:0;
    }

    .banner-left-shap,
    .banner-right {
        display: none;
    }

    .hero {
        padding: 0px;
    }

    .hero .page-center {
        display: flex;
        flex-direction: column-reverse;
    }

    .hero-content {
        margin-top: 20px;
    }

    .hero-image .banner-right {
        display: block;
        right: 0;
        width: 100%;
    }

    .hero-content {
        margin: 0;
        width: 100%;
        max-width: 100%;
        padding: 50px 20px;
        padding-bottom: 70px;
    }

    .hero-image {
        width: 100%;
        padding-top: 20px;
        padding-bottom: 50px;
    }

    .hero-image-wrapper {
        padding: 20px;
    }

    .red-shape-top {
        position: absolute;
        height: 85%;
        width: 70%;
        border: 3px solid #fff;
        border-radius: 41px;
        transform: skewX(347deg);
        left: 29px;
        z-index: 9;
        top: 10px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

.focus-area {
    padding: 0px 20px;
    background: #fff;
        overflow: initial;
}

.focus-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1360px;
    margin: auto;
}

.focus-image-box {
    position: relative;
    max-width: 460px;
    max-height: 460px;
}

.focus-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    border-radius: 4px;
}

.red-shadow {
    position: absolute;
    bottom: -18px;
    right: -18px;
    width: 100%;
    height: 100%;
    background: #D8312A;
    /* red color */
    border-radius: 12px;
    z-index: 1;
}

.focus-content {
    max-width: 600px;
}

.sub-heading {
    font-style: normal;
    font-weight: 900;
    font-size: 28px;
    line-height: 35px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #CF271E;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

    margin-bottom: 10px;
    font-weight: bold;
}

.main-heading {
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    line-height: 58px;
    color: #171403;
    margin-bottom: 20px;
    color: #212121;
}

.focus-content p {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #374151;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .focus-container {
        flex-direction: column;
        text-align: center;
    }

    .focus-image-box {
        margin-bottom: 40px;
    }
}



/* Section Wrapper */
.services-section {
    margin: auto;
    padding: 20px 20px;
    background: #fff;
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    line-height: 65px;
    text-align: center;
    color: #171403;
    margin-bottom: 10px;
}

.services-header p {
    max-width: 750px;
    margin: auto;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #374151;


}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card */
.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    padding-bottom: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.services-section {
    position: relative;
}

.services-section .right-image {
    position: absolute;
    left: -300px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 400px;
}

.services-section .left-image {
    position: absolute;
    right: -10px;
    bottom: 17%;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 20px 40px;
    color: #212529;
}

.service-card ul {
    margin: 0 20px 10px 40px;
    color: #000;
    font-size: 20px;
    line-height: 1.6;
}

.service-card ul li {
    margin-bottom: 5px;
}

section {
    overflow-x: hidden;
}



.services-section .top-image {
    position: absolute;
    right: -230px;
    max-width: 400px;
    top: 0;
}

.service-title,
section.service-card {
    padding-left: 20px;
    padding-right: 20px;
}



/* Responsive */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 200px;
    }
}



.partner-section .page-center {
    position: relative;
    z-index: 9;
}

.partner-card {
    background: white;
    border: 3px solid #e74c3c;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.image-section {
    border-radius: 10px;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.content-section {
    padding: 50px;
    width: 50%;
}

.logo {
    object-fit: contain;
    object-position: left;
    margin-bottom: 20px;
}

section.expert-wrapper {
    padding: 20px 20px;
}

section.expert-wrapper h1 {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 66px;
    line-height: 83px;
    text-align: center;
    color: #171403;
    justify-content: center;
}

span.highlight {
    color: #CF271E;
}

.company-name {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

p.description strong {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #171403;
}

p.description {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #374151;
}

.content-section {
    padding: 50px;
}

.image-section {
    border-radius: 10px 0 0 10px;
    width: 50%;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-card {
    max-width: 1266px;
    margin: 0 auto;
    margin-bottom: 26px;
    padding: 0;
    gap: 0;
    row-gap: 0px;
    column-gap: 0px;
}

p.description {
    font-size: 16.98px;
    font-weight: normal;
    color: #373A40;
    line-height: 1.2;
}

section.expert-wrapper h1 {
    margin-bottom: 50px;
}

.services-section .page-center {
    position: relative;
    z-index: 9;
}


.partner-section {
    margin: auto;
    padding: 80px 5%;
}

/* Header */
.partner-header {
    text-align: center;
    max-width: 822px;
    margin: auto;
    margin-bottom: 60px;
}

.partner-header h2 {
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    line-height: 48px;
    text-align: center;
    letter-spacing: -1.2px;
    color: #171403;

    margin-bottom: 10px;
}

.partner-header h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 48px;
    text-align: center;
    letter-spacing: -1.2px;
    color: #CF271E;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
}

.partner-header p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #374151;
}

/* Content Layout */
.partner-content {
    display: flex;
    gap: 60px;
    align-items: start;
}

/* Image */
.partner-image-box {
    position: relative;
    width: 100%;
    height: auto;
}

.partner-image-box img {
    width: 100%;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.red-bg {
    position: absolute;
    width: 70%;
    height: auto;
    top: -10px;
    left: 0px;
}

.partner-image-box .red-bg img {
    max-height: 100%;
    height: 100%;
    max-width: 100%;
}

.partner-image-box .partner-grid img {
    max-width: 100% !important;
    width: 128px;
}

/* Text Grid */
.partner-grid {
    display: grid;
    gap: 35px 30px;
}


.partner-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.partner-item .icon {
    font-size: 26px;
}

/* Titles & Paragraphs */
.partner-item h3 {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    color: #171403;

    margin-bottom: 5px;
}

.partner-item p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #374151;

}

.image-section-partner {
    position: relative;
}

.partner-image-box {
    width: 50%;
}

.partner-grid {
    width: 50%;
}

.partner-image-box .partner-grid {
    width: 100%;
    margin-top: 50px;
}

.partner-image-box .partner-grid img {
    max-width: 100%;
}

.partner-item h3 {
    border-bottom: 2.58px solid #171403;
    padding-bottom: 14px;
    margin-bottom: 11px;
}

.partner-item p {
    font-size: 16.03px;
    color: #000;
    line-height: 1.2;
}

.partner-item .icon img {
    max-width: 58px;
}

.partner-image-box img {
    max-width: 349px;
}

.image-section-partner {
    position: relative;
    text-align: center;
}

.partner-item.top.file-icon img {
    max-width: 70% !important;
}

section.partner-section {
    position: relative;
}


section.partner-section .left-image {
    position: absolute;
    left: -170px;
    transform: rotate(90deg);
    max-width: 460px;
}

section.partner-section .right-image {
    position: absolute;
    right: -360px;
    bottom: 0;
    max-width: 470px;
}

.partner-section .page-center {
    max-width: 1140px;
}

/* Responsive */
@media (max-width: 992px) {
    .partner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .partner-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .partner-item {
        justify-content: center;
    }
}





.footer-section {
    background: #072460;
    padding: 60px 5% 30px;
    color: #fff;
}

.footer-container {
    max-width: 1660px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

/* Headings */
.footer-col h3 {
    font-size: 27.43px;
    margin-bottom: 8px;
    font-weight: 500;
    font-family: Yantramanav;
    line-height: 35.27px;
}

.underline {
    width: 40%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    display: block;
    margin-bottom: 47px;
    position: relative;
}

.underline:after {
    content: '';
    position: absolute;
    width: 30%;
    left: 20px;
    top: 0;
    height: 3px;
    background: #CF271E;
}

/* Lists */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li span {
    color: #fff;
    margin-right: 8px;
    font-size: 20.9px;
    line-height: 24.82px;
    font-family: 'Roboto';
    font-weight: 400;
}

/* Contact Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
}

.footer-logo img {
    width: 194px;
}

.footer-logo h2 {
    font-size: 29.1px;
    font-weight: 700;
    line-height: 1.2;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.icon-box {
    color: #fff;
    font-size: 20px;
    width: 51px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}


.social-icons img {
    max-width: 27px;
    max-height: 27px;
}

.social-icons {
    display: flex;
    gap: 33px;
    margin-top: 62px;
    justify-content: center;
}

.contact-item img {
    max-width: 26px;
    display: block;
    width: 100%;
}

.contact-item p {
    width: calc(100% - 51px);
    font-weight: normal;
}

.footer-col ul li span:first-child {
    width: 8px;
}

.footer-col ul li span:last-child {
    width: calc(100% - 8px);
}

.footer-col ul li a>span:first-child {
    display: none;
}

.bottom-footer {
    justify-content: space-between;
    padding: 10px 0 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 12px;
}

.social-icons {
    margin: 0;
}

.social-icons a {
    /* Link */

    /* Auto layout */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0px;

    /* 2 */
    background: #FEF2F2;
    border-radius: 1.67772e+07px;

    /* Inside auto layout */
    width: 48px;
    height: 48px;
}

.footer-col ul li span {

    /* Transformers and Engineering Solutions */
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    /* or 156% */


    /* BG */
    color: #FFFFFF;


    /* Inside auto layout */
}

.underline {
    display: none;
}

.footer-col h3 {
    margin-bottom: 50px;
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
}

.contact-item p {
    /* +91 8700203665 */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    /* identical to box height, or 156% */
    letter-spacing: -0.439453px;

    /* BG */
    color: #FFFFFF;
}

.contact-item {
    margin-bottom: 5px;
}

.copyright p {
    /* © 2026 Vimal Export Marketing. All rights reserved */
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    /* identical to box height, or 156% */
    letter-spacing: -0.439453px;

    /* BG */
    color: #FFFFFF;
}




@media(max-width:991px) {

    .footer-col ul li span {
        font-size: 15.9px;
        line-height: 21.82px;
    }

    .footer-col h3 {
        font-size: 21.43px;
        line-height: 30.27px;
    }

    .underline {
        margin-bottom: 27px;
    }

    .contact-item p {
        font-size: 14px;
        line-height: normal;
    }

    .icon-box {
        width: 41px;
        height: 39px;
    }





    .footer-logo h2 {
        font-size: 15px;
        line-height: 1.2;
    }

}

@media(max-width:767px) {
    .footer-container {
        display: block;
    }

    .footer-section {
        padding: 40px 20px;
    }

    .footer-col {
        margin-top: 40px;
    }

    .footer-col:first-child {
        margin: 0;
    }

    .social-icons {
        justify-content: flex-start;
    }

    .social-icons {
        display: flex;
        gap: 10px;
        margin-top: 0;
        justify-content: center;
    }

    .icon-box {
        width: auto;
        height: auto;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .contact-item img {
        max-width: 24px;
    }

    .bottom-footer {
        flex-direction: column;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 52px;
        gap: 20px;
    }

    .footer-col h3 {
        margin-bottom: 10px;
    }
}




.expert-panel {
    text-align: center;
    padding: 80px 20px 150px;
}

.expert-panel h2 {
    font-size: 72.82px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: normal;
    margin-bottom: 60px;
    color: #E12700;
}

.experts-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 10px;
}

.expert-card {
    width: calc(19% - 51px);
    background: #fff;
    overflow: hidden;
    transition: 0.3s ease;
    flex-shrink: 0;
    position: relative;
}



.expert-wrapper .left-image {
    position: absolute;
    left: -390px;
}

.expert-wrapper .page-center {
    position: relative;
    z-index: 9;
}

.info {
    padding: 10px 12px;
    text-align: left;
    position: absolute;
    bottom: 0;
    z-index: 9;
    color: #fff;
}

.info {
    position: static;
    text-align: center;
}

.info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.info p {
    margin: 4px 0 0;
    font-size: 14px;
    letter-spacing: normal;
    color: #FF0000;
    font-family: 'Roboto';
}

.contact-section {
    max-width: 1360px;
    margin: auto;
    padding: 70px 50px;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    margin-bottom: 60px;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
}

.contact-container {

    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-left {

    flex: 1;
}

.contact-container .icon+div {
    width: calc(100% - 100px);
}

.contact-section .tag {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 26px;
    color: #CF271E;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        padding: 0;
    margin: 0;

}
.call-btn{
  display:inline-block;
  background:#CF271E;
  color:#fff;
  padding:14px 28px;
  border-radius:8px;
  font-weight:600;
  font-size:16px;
  text-decoration:none;
  transition:0.3s;
}

.call-btn:hover{
  background:#c62828;
}
.contact-left h2 {
    margin: 10px 0;
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: #171403;
}

.contact-left p {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #374151;
}

.contact-info {

    margin-top: 30px;
}

.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    height: auto;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contact-info .icon {
    background: rgb(249 218 216 / 50%);
    padding: 17px;
    border-radius: 8px;
    width: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info .icon img {

    width: 22px;
}

.info-box h4 {
    margin: 0;
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #171403;
}

.contact-left .info-box p {

    margin: 3px 0;
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #374151;
}

.contact-form {

    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.contact-form input,
.contact-form textarea {

    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form textarea {

    height: 110px;
    resize: none;
}

.contact-form button {

    width: 100%;
    background: #e1251b;
    color: white;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.contact-form button:hover {

    background: #c41d16;
}


/* red curve */

.shape-curve {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 110px;
}

/* dotted pattern */

.shape-dots {
    position: absolute;
    right: auto;
    top: auto;
    width: 90px;
    bottom: 51px;
}

img.shape-dotss {
    position: absolute;
    right: 40px;
    top: 170px;
    width: 80px;
}

/* responsive */

@media(max-width:768px) {

    .contact-container {
        flex-direction: column;
    }

    img.shape-dotss,
    .shape-curve,
    .shape-dots {
        display: none;
    }

    .contact-section {
        padding: 40px 30px;
        max-width: 90%;
    }

}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }

    .gear-icon {
        display: none;
    }

    .partner-card {
        flex-direction: column;
    }

    .image-section {

        width: 100%;
    }

    h1 {
        font-size: 24px;
    }


    .partner-content {
        flex-direction: column;
    }

    .partner-image-box {
        width: 100%;
    }

    .partner-grid {
        width: 100%;
    }

    .image-section-partner .partner-item .icon {
        width: 148px !important;
    }

    .sub-heading,
    .partner-header h4,
    .service-card h3 {
        margin: 20px;
        font-size: 19px;
        line-height: 1;
    }

    .main-heading,
    .partner-header h2,
    .services-header h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .focus-content p,
    .partner-header p,
    .services-header p {
        font-size: 16px;
    }

    .top-image,
    .right-image,
    .left-image {
        display: none;
    }

    .partner-image-box {
        width: 100%;
    }

    .red-bg {
        display: none;
    }

    .logo {
        margin-bottom: 0;
    }

    .partner-section,
    .services-section,
    .focus-area {
        padding: 20px 20px;
    }

    section.focus-area {
        padding-top: 0;
    }

    .focus-container {
        gap: 0px;
    }

    .partner-image-box .partner-grid {
        display: block;
    }

    .partner-item {
        display: block;
    }

    .partner-image-box .partner-grid img,
    .partner-item .icon img {
        width: auto;
    }

    .partner-item {
        margin-bottom: 50px;
    }

    .partner-item h3 {
        font-size: 17.36px;
        margin-bottom: 11px;
        margin-top: 10px;
    }

    .partner-content {
        gap: 0px;
    }

    .partner-grid {
        display: block;
    }
}


@media(max-width:1350px) {

    .experts-row {
        gap: 21px;
    }
}

@media(max-width:1250px) {

    .experts-row {
        gap: 21px;
    }

    .expert-card {
        width: calc(19.5% - 51px);
    }
}

@media(max-width:991px) {

    .expert-card {
        width: calc(28.5% - 51px);
    }

    .experts-row {
        gap: 21px;
        justify-content: center;
    }
}


@media(max-width:767px) {

    .expert-card {
        width: calc(50% - 20px);
    }

    .experts-row {
        gap: 20px;
        justify-content: center;
    }

    .expert-panel {
        padding: 40px 20px 40px;
    }

    .expert-panel h2 {
        font-size: 35.82px;
        font-weight: 700;
        margin-bottom: 40px;
        line-height: normal;
        margin-bottom: 50px;
    }

    .content-section {
        padding: 50px;
        width: 100%;
    }

    .image-section img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-height: 400px;
    }

    .content-section {
        padding: 30px;
    }

    section.expert-wrapper h1 {
        font-size: 35.82px;
        line-height: 1;
    }

    section.expert-wrapper {
        padding: 50px 20px;
    }



}

@media(max-width:479px) {
    .expert-card {
        width: calc(100% - 20px);
    }

    .info-box {
        flex-direction: column;
    }

    .contact-container .icon+div {
        width: 100%;
    }

    .contact-section .contact-container {
        position: relative;
        padding: 0;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .cta-banner h1 {
        font-size: 28px;
        line-height: 1;
    }
}



.top-banner {
    background: url('images/banner.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    padding: 37px 20px;
    align-items: center;
}

.top-banner h1 {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 44px;
    line-height: 68px;
    text-align: center;
    color: #FFFFFF;


}

/* Contact Main Box */
.contact-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

.contact-box {
    width: 90%;
    max-width: 1100px;
    background: #fff;
    padding: 40px;
    border-radius: 10.3321px;
    box-shadow: 0px 5.16607px 15.4982px rgba(0, 0, 0, 0.1), 0px 5.16607px 15.4982px rgba(0, 0, 0, 0.1);
    position: relative;
}




.contact-box h2 {
    text-align: center;
    font-size: 64.58px;
    margin-bottom: 25px;
    font-family: 'Yantramanav';
    line-height: 77.49px;
    font-weight: 700;
}

.contact-box h2 span {
    color: red;
}

/* Form */
form .row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

form .row input {
    width: 50%;
    padding: 12px;
    border: 1px solid #CED4DA;
    border-radius: 5px;
}

textarea {
    width: 100%;
    padding: 12px;
    height: 187px;
    border-radius: 5px;
    border: 1px solid #CED4DA;
    resize: none;
    margin-bottom: 15px;
}

/* Button */
.submit-btn {
    background: #CF271E;
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.submit-btn:hover {
    background: #b71c1c;
}

.contact-container .right-image {
    position: absolute;
    right: -280px;
    max-width: 370px;
    bottom: 70px;
}

.contact-container {
    position: relative;
}

/* Responsive */
@media (max-width: 768px) {
    form .row {
        flex-direction: column;
    }

    form .row input {
        width: 100%;
    }

    .contact-box h2 {
        font-size: 44.58px;
        line-height: 57.49px;
    }

    .contact-box {
        padding: 20px;
    }

    .top-banner h1 {
        font-size: 34px;
        line-height: 1;
    }
}

.top-banner.about-banner {
    background: url('images/banner-image.png');
    background-size: cover;
    background-position: center;
    height: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}


.top-banner.about-banner h1 {
    color: #fff;
    font-size: 52.06px;
    font-weight: 600;
    font-family: 'Inter';
    line-height: normal;
    margin-bottom: 44px;
}

section.top-banner.about-banner .page-center p {
    color: #fff;
    font-size: 35px;
    font-weight: 400;
}


section.top-banner.about-banner .page-center {
    text-align: center;
}

.about-section {
    width: 100%;
    padding: 65px 20px;
    background: #fff;
    text-align: center;
}

.about-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: normal;
    color: #2B2B2B;
}

.about-text {
    margin: 0 auto 70px auto;
    line-height: 1.2;
    color: #343434;
    font-size: 18px;
    text-align: center;
    font-weight: normal;
}

/* Cards Layout */
.cards-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 80px;
}

.card {
    width: calc(50% - 40px);
    background: #fff;
    padding: 40px 30px;
    border-radius: 34px;
    box-shadow: 0px 4px 26.7px rgba(0, 0, 0, 0.25);
    text-align: center;
}




.card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}

.card-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: 'Yantramanav';
    line-height: 39px;
}

.card-text {
    font-size: 18px;
    color: #343434;
    line-height: 1.5;
    font-weight: 400;
}


section.about-section .right-image {
    position: absolute;
    right: -280px;
    bottom: 0px;
    max-width: 430px;
}

section.about-section {
    position: relative;
}

.why-choose {
    padding: 80px 0;
}



.why-grid {
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 60px;
    align-items: center;
}

/* IMAGE */

.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}



/* CONTENT */

.why-content .subtitle {
    color: #c40000;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.why-content h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.why-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.why-content span.subtitle {
    /* Why Choose Us */
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 26px;
    color: #CF271E;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.why-content h2 {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: #171403;
}

.why-content p {
    /* No matter the size o */
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #374151;

}

.why-choose {
    padding: 80px 20px;
}

section.aboutbox .cards-container{
    padding-left: 20px;
    padding-right: 20px;
}

section.aboutbox {
    padding-top: 30px;
    position: relative;
}

section.aboutbox .line-color {
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 30%;
    width: 100%;
    height: 2px;
}

.service-title .section-title {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    text-align: center;
    color: #171403;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
}

.service-title .section-title span {
    color: #CF271E;
}

.service-title {
    padding: 80px 0;
}

.service-title .page-center {
    max-width: 957px;
    text-align: center;
}

.service-title .page-center p {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #374151;
}

.service-card ul {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #374151;

}

.service-card h3 {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 35px;
    color: #171403;
    margin: 20px 25px;
}


.industry-banner {
    position: relative;
    background-image: url("images/Our Industry.jpg");
    background-size: cover;
    background-position: top;
    border-radius: 20px;
    overflow: hidden;
    min-height: 623px;
    display: flex;
    align-items: end;
}

/* DARK OVERLAY */
.industry-banner::before {
    content: "";
    inset: 0;
    height: 50%;
    bottom: 0;
    box-sizing: border-box;
    position: absolute;
    left: 0px;
    top: auto;
    background: linear-gradient(298.75deg, rgba(255, 255, 255, 0.3) 2.68%, rgba(255, 255, 255, 0.1) 99.99%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(6px);
    border-radius: 0px 0px 20px 20px;
}

/* CONTENT */

.banner-content {
    position: relative;
    color: #fff;
    max-width: 650px;
    padding: 60px;
}

.tag {
    display: inline-block;
    background: #fff;
    color: #333;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.banner-content h2 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 15px;
}

.banner-content h2 span {
    color: #e63946;
}

.banner-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
}

section.industry-banner {
    margin: 80px 60px;
}

span.tag {
    /* Vimal Export Marketing */
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    color: #364153;


}

.banner-content h2 {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 900;
    font-size: 48px;
    line-height: 60px;
    color: #FFFFFF;



}

.banner-content p {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 25px;
    color: #FFFFFF;

}

.banner-content {
    max-width: 905px;
    padding-bottom: 30px;
}

.banner-content h2 span {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 900;
    font-size: 48px;
    line-height: 60px;
}

.events-section {
    padding: 0 20px 80px;
}


.media-title,
h2.section-title {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 44px;
    line-height: 43px;
    color: #171403;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.media-title span,
.section-title span {
    color: #e63946;
    font-family: 'Source Serif Pro';
}

.event-count {
    margin-bottom: 40px;
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #374151;
}

/* GRID */

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */

.event-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* CONTENT */

.event-content {
    padding: 18px;
}

.event-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: -0.449219px;
    color: #101828;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.150391px;
    color: #4A5565;
}

.event-content p {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    letter-spacing: -0.150391px;
    color: #4A5565;
}

.event-meta span {
    font-family: 'Source Serif Pro';
}

.event-card .event-meta img {
    width: 13px;
    height: 13px;
    vertical-align: text-top;
}

.timeline-section {
    padding: 80px 20px;
    background: #FAFAFB;
}



/* TOP TEXT */

.media-title span {
    color: #e63946;
}

.media-desc {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.439453px;
    color: #374151;
    margin-bottom: 50px;
}

h2.media-title {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0.369141px;
    color: #171403;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

h2.timeline-title {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.369141px;
    color: #171403;
}

.timeline-subtitle {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.439453px;
    color: #374151;
    text-align: center;
    margin-bottom: 50px;
}

/* TIMELINE */

.timeline {
    position: relative;
    padding-left: 120px;
    max-width: 768px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 55px;
    top: 0;
    width: 2px;
    height: 94%;
    background: #ddd;
}

/* ITEM */

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

/* YEAR CIRCLE */

.timeline-year {
    position: absolute;
    left: -90px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #e63946;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    background: #fff;
    color: #e63946;
}

/* CARD */

.timeline-card {
    background: #fff;
    border-radius: 10px;
    padding: 18px 22px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.timeline-card h4 {
    margin-bottom: 5px;
    font-size: 16px;
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: -0.449219px;
    color: #171403;
}

.timeline-card span {
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.150391px;
    color: #374151;
}

.timeline-card span img {
    vertical-align: text-top;
}

.timeline-title-wrapper {
    padding: 0 20px;
}

.cta-banner {
    margin: auto;
    padding: 54px 52px;
    text-align: center;
    color: white;
    background: linear-gradient(180deg, #D32F2F 0%, #B71C1C 100%);
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 24px;
    margin: 20px 0;
}

/* Container */
.cta-container {
    padding: 0 20px;
}




/* Heading */
.cta-banner h1 {
    margin-bottom: 15px;
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    line-height: 48px;
    text-align: center;
    letter-spacing: -0.848437px;
    color: #FFFFFF;
}

.cta-banner span.arrow img {
    vertical-align: middle;
    max-width: 18px;
}

/* Subtext */
.cta-banner p {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    letter-spacing: -0.449219px;
    color: #FFFFFF;
    margin-bottom: 30px;
}

/* Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Source Serif Pro';
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    letter-spacing: -0.439453px;
    color: #CF271E;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.arrow {
    font-size: 16px;
}

@media(max-width:1100px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    section.industry-banner {
        margin: 60px 20px;
    }
}

@media(max-width:800px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px) {
    .events-grid {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 80px;
    }

    .timeline::before {
        left: 19px;
    }
}

@media (max-width: 767px) {
    .service-title .section-title {
        font-size: 44px;
        line-height: 44px;
        margin-bottom: 20px;
    }

    .service-title,
    section.service-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .service-card ul li {
        margin-bottom: 5px;
        font-size: 15px;
    }

    .service-card h3 {
        font-size: 23px;
        line-height: 1;
    }

    .banner-content {
        padding: 0 20px;
        padding-bottom: 30px;
    }

    .banner-content h2,
    .banner-content h2 span {
        font-size: 34px;
        line-height: 36px;
    }
}


@media(max-width:1200px) {
    .why-grid {
        display: grid;
        grid-template-columns: 430px 1fr;
        gap: 60px;
        align-items: center;
    }
}

@media(max-width:900px) {

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        max-width: 450px;
        margin: auto;
    }

}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        gap: 25px;
    }

    .card {
        width: 100%;
        margin: 0 auto;
    }

    .top-banner.about-banner {
        height: 370px;
    }

    .top-banner.about-banner h1 {
        font-size: 28.06px;
    }

    section.top-banner.about-banner .page-center p {
        color: #fff;
        font-size: 22px;
    }

    .why-content h2 {

        font-size: 30px;
        line-height: 30px;
    }
}