@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700;800&display=swap');

/* =================================
global css
===================================*/
:root {
    --header-bg: #2C3D6D;
    --primary-color: #373b3e;
    --main-color: #D4D7D8;
    --secondary-color: #4d5154;
    --btn-bg: #fe6152;
    --white: #fff;
    --bg-color: #eaecf0;
    --second-bg: #fbfbfb;
    --icon-color: #fff9db;
    --secondary: #283762;
    --primary: #2C3D6D;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: none;
    scroll-behavior: smooth;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', 'Inter', sans-serif;
    overflow-x: hidden;
}

/*================================================
GENERAL CSS
==================================================*/
.container {
    max-width: 1200px;
    max-width: 1200px;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 12px;
    padding: 0 12px;
    padding: 0 1.2rem;
}

a,
p,
input,
textarea {
    font-family: 'Open Sans';
}

h1,
h2,
h3,
h4 {
    font-family: 'Inter';
}

p {
    font-size: 16px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.btn:link,
.btn:visited {
    display: inline-block !important;
    padding: 12px 20px;
    padding: 12px 20px;
    padding: 1.2rem 2rem;
    font-size: 16px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
    background: var(--btn-bg);
    color: var(--white);
}



.primary-heading {
    font-size: 36px;
    font-size: 36px;
    font-size: 3.6rem;
    margin-bottom: 48px;
    margin-bottom: 48px;
    margin-bottom: 4.8rem;
    text-transform: uppercase;
    text-align: center;
    color: var(--secondary);
}

.secondary-heading {
    font-size: 24px;
    font-size: 24px;
    font-size: 2.4rem;
    margin: 32px 0;
    margin: 32px 0;
    margin: 3.2rem 0;
    text-transform: capitalize;
    text-align: center;
    color: var(--secondary);
}

.title {
    font-size: 20px;
    font-size: 20px;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 12px;
    margin-bottom: 12px;
    margin-bottom: 1.2rem;
}


/*================================================
header section 
==================================================*/

.header {
    position: relative;
    background: var(--header-bg);
    -webkit-transition: all .5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    padding: 16px 0;
    padding: 16px 0;
    padding: 1.6rem 0;
    width: 100%;
    z-index: 9999;
    top: 0;
}

.sticky-header {
    top: -100%;
}

.sticky {
    position: fixed;
    top: 0;
  }

.logo .logo-img {
    max-width: 150px;
    max-width: 15rem;
    max-height: 70px;
    max-height: 7rem;
}




.bar-icon-box{
    display: none;
}

.bar-icon {
    text-align: center;
}

.bar-icon i,
.cross-icon i {
    font-size: 42px;
    font-size: 42px;
    font-size: 4.2rem;
    color: var(--white);
    cursor: pointer;
}

.cross-icon i {
    padding-top: 20px;
    padding-top: 20px;
    padding-top: 2rem;
}

.nav-link {
    display: inline-block;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
}

.nav-link ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 32px;
    gap: 32px;
    gap: 3.2rem;
}



.nav-link ul li {
    list-style-type: none;
    position: relative;
}

.main-nav-link:link,
.main-nav-link:visited {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 20px;
    font-size: 20px;
    font-size: 2rem;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    font-family: 'Open Sans';
    color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

 /* Dropdown Styles */

.dropdown {
    position: relative;
}

.dropdown-icon {
    font-size: 12px;
    font-size: 12px;
    font-size: 1.2rem;
    margin-left: 8px;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    color: var(--white);
}

/* Desktop hover behavior */
.dropdown:hover .dropdown-icon {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.dropdown:hover .dropdown-content {
    max-height: 500px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.dropdown:hover .dropdown-content a {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* Mobile behavior */
.dropdown-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    gap: 16px;
    gap: 1.6rem;
    position: absolute;
    z-index: 1001;
    padding: 0;
    top: 100%;
    left: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.5s ease, opacity 0.5s ease;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    margin-top: 10px;
    margin-top: 10px;
    margin-top: 1rem;
    background-color: #233157;
    min-width: 200px;
    min-width: 20rem;
}

/* Active state for mobile */
.dropdown.active .dropdown-content {
    max-height: 500px;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.dropdown.active .dropdown-content a {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.dropdown-content a {
    color: var(--white);
    padding: 10px 20px;
    padding: 10px 20px;
    padding: 1rem 2rem;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-size: 18px;
    font-size: 18px;
    font-size: 1.8rem;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.dropdown-content a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}


 .navbar{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
 }

.cross-icon {
    display: none;
    position: absolute;
    right: 20px;
    right: 20px;
    right: 2rem;
    top: 10px;
    top: -10px;
    top: -1rem;
}

.header.active .cross-icon {
    display: block;
}

.overlay {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1b2b56f2;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    z-index: 2;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.header.active .bar-icon {
    visibility: hidden;
}

.header.active  .nav-link {
    left: 0;
    position: fixed;
    height: 100%;
    z-index: 3;
}




/* ================================
hero-section
===================================*/
.hero-section {
    padding: 130px 0 96px 0;
    padding: 130px 0 96px 0;
    padding: 13rem 0 9.6rem 0;
    width: 100%;
    background-image: url("../img/hero/hero-bg.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    margin-top: -100px;
    margin-top: -100px;
    margin-top: -10rem;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
}


.hero-content {
    text-align: center;
}

.hero-content .btn-box {
    text-align: center;
    padding-bottom: 24px;
    padding-bottom: 24px;
    padding-bottom: 2.4rem;
}

.hero-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.hero-heading {
    font-size: 44px;
    font-size: 44px;
    font-size: 4.4rem;
    color: var(--white);
    padding-top: 18px;
    padding-top: 18px;
    padding-top: 1.8rem;
}

.hero-text {
    font-size: 18px;
    font-size: 18px;
    font-size: 1.8rem;
    color: var(--white);
    padding: 24px 0;
    padding: 24px 0;
    padding: 2.4rem 0;
    margin-bottom: 24px;
    margin-bottom: 24px;
    margin-bottom: 2.4rem;
}

/* ================================
band-section
===================================*/

.section-band {
    padding: 96px 0;
    padding: 96px 0;
    padding: 9.6rem 0;
}

.brand-box {
    display: -ms-grid;
    display: grid;
        -ms-grid-columns: (1fr)[3];
            grid-template-columns: repeat(3, 1fr);
    -ms-grid-row-align: center;
        align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 48px;
    gap: 48px;
    gap: 4.8rem;
    opacity: .6;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}

.brand-box img {
    height: 90px;
    height: 90px;
    height: 9rem;
}

.brand-bg {
    background: var(--btn-bg);
    padding: 10px 12px;
    padding: 10px 12px;
    padding: 1rem 1.2rem;
}

/* ================================
mission-section
===================================*/
.section-mission {
    padding: 64px 0;
    padding: 64px 0;
    padding: 6.4rem 0;
    background: var(--bg-color);
}

/* ================================
expertise-section
===================================*/
.section-expertise {
    padding: 96px 0;
    padding: 96px 0;
    padding: 9.6rem 0;
}

.key-heading {
    margin-bottom: 48px;
    margin-bottom: 48px;
    margin-bottom: 4.8rem;
}

.key-service-content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-row-align: center;
        align-items: center;
    padding: 32px 0 52px 0;
    padding: 32px 0 52px 0;
    padding: 3.2rem 0 5.2rem 0;
}

.key-img-box {
    position: relative;
    z-index: 1;
}

.key-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.key-img-box .key-images .key-img {
    max-width: 60%;


    -webkit-animation: moveBackground 7s linear infinite alternate-reverse;


            animation: moveBackground 7s linear infinite alternate-reverse;
    -webkit-transition: all .3s ease-out 0.3s;
    transition: all .3s ease-out 0.3s;
    border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
}

@-webkit-keyframes moveBackground {
    0% {
        border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    }

    25% {
        border-radius: 65% 50% 50% 35%/51% 49% 77% 23%;
    }

    50% {
        border-radius: 30% 49% 20% 50%/50% 50% 20% 35%;
    }

    75% {
        border-radius: 20% 18% 50% 33%/40% 44% 16% 35%;
    }

    100% {
        border-radius: 65% 50% 50% 35%/51% 49% 30% 23%;

    }
}

@keyframes moveBackground {
    0% {
        border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
    }

    25% {
        border-radius: 65% 50% 50% 35%/51% 49% 77% 23%;
    }

    50% {
        border-radius: 30% 49% 20% 50%/50% 50% 20% 35%;
    }

    75% {
        border-radius: 20% 18% 50% 33%/40% 44% 16% 35%;
    }

    100% {
        border-radius: 65% 50% 50% 35%/51% 49% 30% 23%;

    }
}


.choose-shape-box .choose-2,
.choose-shape-box .choose-3 {
    position: absolute;
    max-width: 60%;
    left: 56%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: -1;
}

.choose-shape-box .choose-2 {
    top: 60%;
}

.choose-shape-box .choose-3 {
    top: 43%;
}

/* ======================================
why-us section
=========================================*/

.section-why-us {
    padding: 64px 0;
    padding: 64px 0;
    padding: 6.4rem 0;
    background: var(--bg-color);
}

.why-us-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-row-align: center;
        align-items: center;
}

.why-heading {
    margin-bottom: 96px;
    margin-bottom: 96px;
    margin-bottom: 9.6rem;
}

.why-us-img-box img {
    max-width: 90%;
    -webkit-animation: moveBackground 7s linear infinite alternate-reverse;
            animation: moveBackground 7s linear infinite alternate-reverse;
    -webkit-transition: all .3s ease-out 0.3s;
    transition: all .3s ease-out 0.3s;
    border-radius: 51% 49% 77% 23%/65% 50% 50% 35%;
}

.title-tex {
    font-weight: 700;
}

.why-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    gap: 12px;
    gap: 1.2rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 48px;
    margin-bottom: 48px;
    margin-bottom: 4.8rem;
}

.why-icon {
    max-width: 30px;
    max-width: 30px;
    max-width: 3rem;
    max-height: 30px;
    max-height: 30px;
    max-height: 3rem;
}

/* ==================================
client-section
=====================================*/
.client-section {
    padding: 96px 0;
    padding: 96px 0;
    padding: 9.6rem 0;
}

.client-box {
    display: -ms-grid;
    display: grid;
   
        -ms-grid-columns: (1fr)[4];
   
            grid-template-columns: repeat(4, 1fr);
    -ms-grid-row-align: center;
        align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 72px;
    gap: 72px;
    gap: 7.2rem;
    opacity: .7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

/* =====================================
frequently asked question
=========================================*/
.frequently-asked-section {
    padding: 64px 0;
    padding: 64px 0;
    padding: 6.4rem 0;
    background: var(--second-bg);
}

/*================================================
accordian
==================================================*/

.accordian-content-box {
    background: var(--white);
    box-shadow: 0 0 .5rem rgba(0, 0, 0, 0.1);
    margin: 24px;
    margin: 24px;
    margin: 2.4rem;
}

.accordian-heading {
    position: relative;
    font-size: 20px;
    font-size: 20px;
    font-size: 2rem;
    font-weight: 600;
    padding: 16px;
    padding: 16px;
    padding: 1.6rem;
    color: var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    gap: 10px;
    gap: 1rem;
    cursor: pointer;
}

.accordian-heading span {
    width: 8px;
    width: 8px;
    width: .8rem;
    height: 8px;
    height: 8px;
    height: .8rem;
    background: var(--btn-bg);
}

.accordian-heading:after {
    font-size: 24px;
    font-size: 24px;
    font-size: 2.4rem;
    content: "+";
    position: absolute;
    top: 50%;
    right: 10px;
    right: 10px;
    right: 1rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.accordian-content-box.active .accordian-heading:after {
    content: "-";
}

.accordian-content-box.active .accordian-heading {
    background: #41507c;
    color: var(--white);
    border: none;
}

.accordian-content-box.active .accordian-heading span {
    background: var(--white);
}

.accordian-text {
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}

.accordian-text p {
    line-height: 1.8;
    padding: 20px;
    padding: 20px;
    padding: 2rem;
}

.accordian-content-box.active .accordian-text {
    max-height: 250px;
    max-height: 250px;
    max-height: 25rem;
}

/* =============================
footer
===================================*/
.footer {
    padding-top: 96px;
    padding-top: 96px;
    padding-top: 9.6rem;
    position: relative;
    z-index: 1;
}


.f-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.footer-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 64px;
    gap: 64px;
    gap: 6.4rem;
}

.footer-box,
.footer-content {
    padding-top: 140px;
    padding-top: 140px;
    padding-top: 14rem;
}

.f-contact {
    font-size: 24px;
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: -50px;
    margin-top: -50px;
    margin-top: -5rem;
    margin-bottom: 5px;
    margin-bottom: 5px;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 500;
}

.f-address {
    padding: 5px 0;
    padding: 5px 0;
    padding: .5rem 0;
    color: var(--white);
}


.f-address a {
    color: var(--btn-bg);
}

.footer-icon-box {
    padding: 32px 0;
    padding: 32px 0;
    padding: 3.2rem 0;
}

.footer-icon-box i {
    font-size: 36px;
    font-size: 36px;
    font-size: 3.6rem;
    padding-right: 32px;
    padding-right: 32px;
    padding-right: 3.2rem;
    color: var(--white);
}

.author-box {
    text-align: center;
    margin-top: 48px;
    margin-top: 48px;
    margin-top: 4.8rem;
    border-top: 3px solid var(--btn-bg);
}

/* =================================
Link Building service
==================================== */

.services-section{
    padding: 48px 0;
    padding: 48px 0;
    padding: 4.8rem 0;
}


.breadcrumb-section {
    background: -webkit-linear-gradient(315deg, var(--primary), var(--secondary));
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 126px 0;
    padding: 12.6rem 0;
    text-align: center;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    position: relative;
    overflow: hidden;
}
.breadcrumb-section:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
    z-index: 0;
}

.link-building-breadcrumb:after {
    background: url('../img/service/link-building.png') center/cover;
}
 .guest-posting-breadcrumb:after{
    background: url('../img/service/guestposting.png') center/cover;
 }

.content-creation-breadcrumb:after{
    background: url('../img/service/content-creation.png') center/cover;
}

.breadcrumb-section h1 {
    font-size: 48px;
    font-size: 48px;
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}
.intro {
    font-size: 20px;
    font-size: 20px;
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.service-card h2 {
    color: var(--secondary);
    font-size: 32px;
    font-size: 32px;
    font-size: 3.2rem;
    margin: 40px 0 20px;
    position: relative;
    display: inline-block;
}
.service-card h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}
.service-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    -webkit-transition: box-shadow 0.3s, -webkit-transform 0.3s;
    transition: box-shadow 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, box-shadow 0.3s;
    transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
}
.service-card:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.service-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefits-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.benefit-item {
    background: rgba(67, 97, 238, 0.05);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary);
}
.benefit-item h3,
.process-steps h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 20px;
    font-size: 20px;
    font-size: 2rem;
}

.process-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}
.process-step {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 200px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid var(--secondary);
}
.process-step .step-number {
    background: var(--secondary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
    font-size: 16px;
    font-size: 16px;
    font-size: 1.6rem;
}

.process-step .step-icon {
    background: var(--accent);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    font-size: 28px;
    font-size: 2.8rem;
}

.content-types {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.content-type {
    background: rgba(243, 156, 18, 0.05);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    border-top: 3px solid var(--primary);
}
.content-type:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
}
.content-type img {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 15px;
}
.content-type h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

/* ===================
Guest posting
====================== */

.network-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(250px, 1fr))[auto-fit];
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.network-item {
    background: rgba(46, 204, 113, 0.05);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}
.network-item:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
}
.network-item img {
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 15px;
}
.network-item h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

/* ============================
Contact section
=============================== */

.contact-section{
    padding: 96px 0;
    padding: 9.6rem 0;
}

  
  .contact-box {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 32px 22px;
    padding: 3.2rem 2.2rem;
    border-radius: 2rem;
  }
  
  .contact-form-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    gap: 1.2rem;
    margin-bottom: 10px;
    margin-bottom: 1rem;
  }
  
  .contact-form-input input,
  .contact-box textarea {
    width: 100%;
    padding: 16px 12px;
    padding: 1.6rem 1.2rem;
    border: 1px solid #30303c36;
    border-radius: .8rem;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
  }

  .contact-form-input input:focus,
  .contact-box textarea:focus{
    border-color: var(--btn-bg);
  }

  
  .contact-box form {
    padding-bottom: 22px;
    padding-bottom: 2.2rem;
  }

  .contact-btn{
    margin-top: 10px;
    border-radius: 8px;
  }
  