@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Merriweather:wght@300;400;700;900&family=Montserrat+Alternates:wght@400;500;600&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900;6..12,1000&family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
:root
{
	--white:#fff;
	--black:#000;
}
/*

*/
html {
  scroll-behavior: smooth;
}


.textHeightFix{
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.textHeightFix[text-length='2']{
    -webkit-line-clamp: 2;
}
.textHeightFix[text-length='1']{
    -webkit-line-clamp: 1;
}
ul
{
	list-style-type: none;
	margin-bottom: 0;
}
a
{
	text-decoration: none;
}
*{
	box-sizing: border-box;
}
body
{
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #58585E;
	font-weight: 400;
	overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6
{
	font-family: 'Outfit', sans-serif;
}
p
{
	text-align: justify;
}
.container
{
	max-width: 95%;
}
.rows
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
/*
    ==========================================================
*/

.school-highlights-ticker{
    position:relative;
    overflow:hidden;
    background:#141D36;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    padding:16px 0;
}

.school-highlights-ticker .ticker-track{
    display:flex;
    width:max-content;
    /*animation:schoolTicker 45s linear infinite;*/
}

/*.school-highlights-ticker:hover .ticker-track{
    animation-play-state:paused;
}*/

.school-highlights-ticker .ticker-item{
    display:flex;
    align-items:center;
    gap:10px;
    margin-right:55px;
    color:#fff;
    font-size:16px;
    font-weight:400;
    white-space:nowrap;
}

.school-highlights-ticker .ticker-item i{
    color:#981E20;
    font-size:18px;
}

@keyframes schoolTicker{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

@media screen and (max-width:480px){

    .school-highlights-ticker{
        padding:12px 0;
    }

    .school-highlights-ticker .ticker-item{
        font-size:13px;
        margin-right:35px;
    }

    .school-highlights-ticker .ticker-item i{
        font-size:15px;
    }

}

@media screen and (min-width:481px) and (max-width:576px){

    .school-highlights-ticker .ticker-item{
        font-size:14px;
        margin-right:40px;
    }

}

@media screen and (min-width:577px) and (max-width:767px){

    .school-highlights-ticker .ticker-item{
        font-size:15px;
        margin-right:45px;
    }

}

@media screen and (min-width:768px) and (max-width:992px){

    .school-highlights-ticker .ticker-item{
        font-size:15px;
        margin-right:50px;
    }

}

/*
    ============================ UI Design 1 ==============================
*/
/*
.school-website-design-section{
    padding:90px 0;
    background:#ffffff;
}

.school-website-design-section .school-website-design-content{
    padding-right:35px;
}

.school-website-design-section .section-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(152,30,32,.08);
    color:#981E20;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:.8px;
    text-transform:uppercase;
    margin-bottom:18px;
    font-family:'Inter',sans-serif;
}

.school-website-design-section h2{
    font-family:'Outfit',sans-serif;
    font-size:46px;
    font-weight:700;
    color:#141D36;
    line-height:1.2;
    margin-bottom:20px;
}

.school-website-design-section p{
    font-family:'Inter',sans-serif;
    font-size:17px;
    line-height:1.9;
    color:#555555;
    margin-bottom:30px;
}

.school-website-design-section h5{
    font-family:'Outfit',sans-serif;
    font-size:24px;
    font-weight:600;
    color:#141D36;
    margin-bottom:22px;
}

.school-website-design-section ul{
    list-style:none;
    padding:0;
    margin:0;
}

.school-website-design-section ul li{
    position:relative;
    padding-left:34px;
    margin-bottom:16px;
    font-family:'Inter',sans-serif;
    font-size:16px;
    font-weight:500;
    color:#444444;
    line-height:1.6;
}

.school-website-design-section ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#981E20;
    color:#ffffff;
    font-size:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.school-website-design-section .school-website-design-image{
    position:relative;
    text-align:center;
}

.school-website-design-section .school-website-design-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(20,29,54,.12);
}

@media screen and (max-width:480px){

.school-website-design-section{
    padding:60px 0;
}

.school-website-design-section .school-website-design-content{
    padding-right:0;
}

.school-website-design-section h2{
    font-size:30px;
}

.school-website-design-section h5{
    font-size:22px;
}

.school-website-design-section p{
    font-size:15px;
}

.school-website-design-section .school-website-design-image{
    margin-top:40px;
}

}

@media screen and (min-width:481px) and (max-width:576px){

.school-website-design-section{
    padding:65px 0;
}

.school-website-design-section .school-website-design-content{
    padding-right:0;
}

.school-website-design-section h2{
    font-size:34px;
}

.school-website-design-section .school-website-design-image{
    margin-top:40px;
}

}

@media screen and (min-width:577px) and (max-width:767px){

.school-website-design-section{
    padding:70px 0;
}

.school-website-design-section .school-website-design-content{
    padding-right:0;
}

.school-website-design-section h2{
    font-size:36px;
}

.school-website-design-section .school-website-design-image{
    margin-top:45px;
}

}

@media screen and (min-width:768px) and (max-width:992px){

.school-website-design-section{
    padding:80px 0;
}

.school-website-design-section .school-website-design-content{
    padding-right:0;
}

.school-website-design-section h2{
    font-size:40px;
}

.school-website-design-section .school-website-design-image{
    margin-top:50px;
}

}

*/

/*
    ==========================================================
*/
/*
.school-website-design-section{
    padding:90px 0;
    background:#ffffff;
}

.school-website-design-section .section-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(152,30,32,.08);
    color:#981E20;
    border-radius:40px;
    font-family:'Inter',sans-serif;
    font-size:14px;
    font-weight:700;
    letter-spacing:.8px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.school-website-design-section h2{
    font-family:'Outfit',sans-serif;
    color:#141D36;
    font-size:46px;
    font-weight:700;
    margin-bottom:18px;
}

.school-website-design-section> .container> .row:first-child p{
    max-width:760px;
    margin:auto;
    color:#666;
    line-height:1.9;
    font-size:17px;
    font-family:'Inter',sans-serif;
}

.school-website-design-section .feature-box{
    position:relative;
    background:#ffffff;
    border-radius:18px;
    padding:35px 28px;
    border:1px solid #ececec;
    overflow:hidden;
    transition:.35s;
    height:100%;
}

.school-website-design-section .feature-box::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:5px;
    height:100%;
    background:#981E20;
    transform:scaleY(0);
    transition:.35s;
}

.school-website-design-section .feature-box:hover::before{
    transform:scaleY(1);
}

.school-website-design-section .feature-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(20,29,54,.10);
}

.school-website-design-section .feature-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    background:#141D36;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:22px;
    transition:.35s;
}

.school-website-design-section .feature-box:hover .feature-icon{
    background:#981E20;
    transform:rotate(-8deg);
}

.school-website-design-section .feature-box h5{
    font-family:'Outfit',sans-serif;
    color:#141D36;
    font-size:23px;
    margin-bottom:14px;
    font-weight:600;
}

.school-website-design-section .feature-box p{
    margin:0;
    color:#666;
    line-height:1.8;
    font-size:15px;
    font-family:'Inter',sans-serif;
}

@media screen and (max-width:480px){

.school-website-design-section{
padding:60px 0;
}

.school-website-design-section h2{
font-size:30px;
}

.school-website-design-section .feature-box{
padding:28px 22px;
}

}

@media screen and (min-width:481px) and (max-width:576px){

.school-website-design-section h2{
font-size:34px;
}

}

@media screen and (min-width:577px) and (max-width:767px){

.school-website-design-section h2{
font-size:36px;
}

}

@media screen and (min-width:768px) and (max-width:992px){

.school-website-design-section h2{
font-size:40px;
}

}
*/

/*
    ==========================================================
*/

.school-website-design-section{
    padding:55px 0 45px;
    background-image: url(../img/section-bg-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    position:relative;
    overflow:hidden;
}

@media screen and (min-width: 993px)
{
    .school-website-design-section .container
    {
        max-width: 90%;
    }
}

.school-website-design-section .section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:#7C181A;
    color:#fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 1px;
    border:1px solid rgba(20,29,54,.08);
    font-weight:500;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    margin-bottom:7px;
}

.school-website-design-section h2{
    font-size: 35px;
    line-height: 1.15;
    font-weight: 800;
    color: #141D36;
    margin: 20px 0 10px;
}

.school-website-design-section > .container > .row:first-child p{
    max-width:760px;
    margin:auto;
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    text-align: center;
}

.school-website-design-section .feature-card{
    position:relative;
    height:100%;
    /*background:#ffffff;*/
    /*border:1px solid #ebedf3;*/
    border-radius:18px;
    padding:32px 20px 28px;
    padding:32px 0px 28px;
    transition:.35s;
    overflow:hidden;
    width: 100%;
}

@media screen and (min-width: 993px)
{
    .school-website-design-section .feature-card
    {
        display: inline-flex;
        grid-column-gap: 20px;
    }
}

.school-website-design-section .feature-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:0;
    background:#981E20;
    transition:.35s;
}

/*
.school-website-design-section .feature-card:hover::before{
    height:100%;
}

.school-website-design-section .feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(20,29,54,.10);
}
*/
.school-website-design-section .feature-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#141D36;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-size:30px;
    margin-bottom:24px;
    transition:.35s;
}
/*
.school-website-design-section .feature-card:hover .feature-icon{
    background:#981E20;
    transform:rotate(-8deg);
}
*/

.school-website-design-section .feature-card h4{
    font-family:'Outfit',sans-serif;
    color:#141D36;
    font-size:21px;
    font-weight:600;
    margin-bottom:15px;
}

.school-website-design-section .feature-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.school-website-design-section .feature-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:5px;
    font-family:'Inter',sans-serif;
    font-size:16px;
    font-weight: 500;
    color:#555555;
    color:#333;
    line-height:1.7;
}

.school-website-design-section .feature-card ul li:last-child{
    margin-bottom:0;
}

.school-website-design-section .feature-card ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:9px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#981E20;
}

@media screen and (max-width:480px){

.school-website-design-section{
    padding:60px 0;
}

.school-website-design-section h2{
    font-size:30px;
}

.school-website-design-section > .container > .row:first-child p{
    font-size:15px;
}

.school-website-design-section .feature-card{
    padding:24px;
}

.school-website-design-section .feature-icon{
    width:60px;
    height:60px;
    font-size:24px;
}

.school-website-design-section .feature-card h4{
    font-size:21px;
}

}

@media screen and (min-width:481px) and (max-width:576px){

.school-website-design-section{
    padding:65px 0;
}

.school-website-design-section h2{
    font-size:34px;
}

}

@media screen and (min-width:577px) and (max-width:767px){

.school-website-design-section{
    padding:70px 0;
}

.school-website-design-section h2{
    font-size:37px;
}

}

@media screen and (min-width:768px) and (max-width:992px){

.school-website-design-section{
    padding:80px 0;
}

.school-website-design-section h2{
    font-size:40px;
}

}
/*
    ==========================================================
*/
.school-redesign-section{
/*    padding:70px 0;
    background:#f8f9fc;
    position:relative;
    overflow:hidden;*/

    background-color: #142444;
    color: #ffffff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234ca1d1' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

}

.school-redesign-section::before{
/*    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:rgba(152,30,32,.05);
    border-radius:50%;
    top:-120px;
    right:-120px;*/
}

.school-redesign-section::after{
/*    content:"";
    position:absolute;
    width:280px;
    height:280px;
    background:rgba(20,29,54,.05);
    border-radius:50%;
    left:-120px;
    bottom:-120px;*/
}

.school-redesign-section .container{
    position:relative;
    z-index:2;
}

.school-redesign-section .school-redesign-heading{
    text-align:center;
    margin-bottom:50px;
}

.school-redesign-section .school-redesign-heading>p{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:#7C181A;
    color:#fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 1px;
    border:1px solid rgba(20,29,54,.08);
    font-weight:500;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    margin-bottom:7px;
}

.school-redesign-section .school-redesign-heading h2{
    font-size: 35px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 10px;
}

.school-redesign-section .section-description{
    max-width: 830px;
    margin:auto;
}

.school-redesign-section .section-description p{
    font-size: 16px;
    line-height: 1.9;
    color: #fff;
    text-align: center;
    font-weight: 300
}

.school-redesign-section .redesign-row{
    --bs-gutter-x:24px;
    --bs-gutter-y:24px;
}

.school-redesign-section .redesign-card{
    background:#fff;
    border:1px solid rgba(20,29,54,.08);
    border-radius:12px;
    padding:35px 30px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:.35s ease;
}

.school-redesign-section .redesign-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:0;
    background:#981E20;
    transition:.35s;
}

.school-redesign-section .redesign-card::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:4px;
    background:#981E20;
    transition:.35s;
}

.school-redesign-section .redesign-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(20,29,54,.12);
}

.school-redesign-section .redesign-card:hover::before{
    height:100%;
}

.school-redesign-section .redesign-card:hover::after{
    width:100%;
}

.school-redesign-section .redesign-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(152,30,32,.08);
    color:#981E20;
    margin-bottom:24px;
    transition:.35s;
}

.school-redesign-section .redesign-icon i{
    font-size:34px;
    line-height:1;
}

.school-redesign-section .redesign-card:hover .redesign-icon{
    background:#141D36;
    color:#fff;
}

.school-redesign-section .redesign-card h3{
    font-size:22px;
    font-weight:700;
    color:#141D36;
    line-height:1.35;
    margin-bottom:15px;
    transition:.35s;
}

.school-redesign-section .redesign-card p{
    margin:0;
    color:#666;
    font-size:16px;
    line-height:1.8;
    transition:.35s;
}

.school-redesign-section .redesign-card:hover h3{
    color:#981E20;
}

.school-redesign-section .redesign-card:hover p{
    color:#555;
}


@media screen and (max-width:480px){

    .school-redesign-section{
        padding:50px 0;
    }

    .school-redesign-section .school-redesign-heading{
        margin-bottom:35px;
    }

    .school-redesign-section .school-redesign-heading > p{
        font-size:11px;
        padding:7px 14px;
        margin-bottom:12px;
    }

    .school-redesign-section .school-redesign-heading h2{
        font-size:28px;
        line-height:1.3;
        margin-bottom:12px;
    }

    .school-redesign-section .section-description p{
        font-size:14px;
        line-height:1.7;
    }

    .school-redesign-section .redesign-row{
        --bs-gutter-x:18px;
        --bs-gutter-y:18px;
    }

    .school-redesign-section .redesign-card{
        padding:25px 20px;
        text-align:center;
    }

    .school-redesign-section .redesign-icon{
        width:60px;
        height:60px;
        margin:0 auto 18px;
    }

    .school-redesign-section .redesign-icon i{
        font-size:28px;
    }

    .school-redesign-section .redesign-card h3{
        font-size:19px;
        margin-bottom:10px;
    }

    .school-redesign-section .redesign-card p{
        font-size:14px;
        line-height:1.7;
    }

}

@media screen and (min-width:481px) and (max-width:576px){

    .school-redesign-section{
        padding:55px 0;
    }

    .school-redesign-section .school-redesign-heading h2{
        font-size:31px;
    }

    .school-redesign-section .section-description p{
        font-size:15px;
    }

    .school-redesign-section .redesign-card{
        padding:28px 22px;
        text-align:center;
    }

    .school-redesign-section .redesign-icon{
        width:64px;
        height:64px;
        margin:0 auto 20px;
    }

    .school-redesign-section .redesign-icon i{
        font-size:30px;
    }

    .school-redesign-section .redesign-card h3{
        font-size:20px;
    }

    .school-redesign-section .redesign-card p{
        font-size:15px;
    }

}

@media screen and (min-width:577px) and (max-width:767px){

    .school-redesign-section{
        padding:60px 0;
    }

    .school-redesign-section .school-redesign-heading h2{
        font-size:34px;
    }

    .school-redesign-section .section-description p{
        font-size:15px;
    }

    .school-redesign-section .redesign-card{
        padding:30px 24px;
    }

    .school-redesign-section .redesign-icon{
        width:66px;
        height:66px;
    }

    .school-redesign-section .redesign-icon i{
        font-size:31px;
    }

    .school-redesign-section .redesign-card h3{
        font-size:21px;
    }

    .school-redesign-section .redesign-card p{
        font-size:15px;
    }

}

@media screen and (min-width:768px) and (max-width:992px){

    .school-redesign-section{
        padding:65px 0;
    }

    .school-redesign-section .school-redesign-heading h2{
        font-size:36px;
    }

    .school-redesign-section .section-description{
        max-width:100%;
    }

    .school-redesign-section .redesign-card{
        padding:30px 24px;
    }

    .school-redesign-section .redesign-icon{
        width:68px;
        height:68px;
    }

    .school-redesign-section .redesign-icon i{
        font-size:32px;
    }

    .school-redesign-section .redesign-card h3{
        font-size:21px;
    }

    .school-redesign-section .redesign-card p{
        font-size:15px;
        line-height:1.7;
    }

}

/*
    ==========================================================
*/

.education-marketing-services-section{
    padding:60px 0;
    /*background:#f8f9fc;*/
    background-image: url(../img/section-bg-12.webp);
    background-size: contain;
    background-position: top;
}

.education-marketing-services-section .education-marketing-heading{
    text-align:center;
    margin-bottom:50px;
}

.education-marketing-services-section .education-marketing-heading>p{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #7C181A;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 1px;
    border: 1px solid rgba(20, 29, 54, .08);
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    margin-bottom: 0;
}

.education-marketing-services-section .education-marketing-heading h2{
    font-size: 35px;
    line-height: 1.15;
    font-weight: 800;
    color: #141D36;
    margin: 20px 0 10px;
}

.education-marketing-services-section .section-description{
    max-width:760px;
    margin:auto;
}

.education-marketing-services-section .section-description p{
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    text-align: center;
}

.education-marketing-services-section .marketing-services-row{
    --bs-gutter-x:24px;
    --bs-gutter-y:24px;
}

.education-marketing-services-section .marketing-service-card{
    height:100%;
    background:#fff;
    border:1px solid rgba(20,29,54,.1);
    border-radius:10px;
    padding:32px;
    transition:.35s ease;
    position:relative;
}

.education-marketing-services-section .marketing-service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:#981E20;
    transform:scaleY(0);
    transform-origin:top;
    transition:.35s;
}

.education-marketing-services-section .marketing-service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(20,29,54,.10);
}

.education-marketing-services-section .marketing-service-card:hover::before{
    transform:scaleY(1);
}

.education-marketing-services-section .service-header{
    padding-bottom:18px;
    margin-bottom:22px;
    border-bottom:1px solid rgba(20,29,54,.08);
}

.education-marketing-services-section .service-header h3{
    font-size:24px;
    color:#141D36;
    font-weight:700;
    margin-bottom:8px;
    line-height:1.3;
}

.education-marketing-services-section .service-header span{
    display:block;
    color:#981E20;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.education-marketing-services-section .marketing-service-card p{
    margin:0;
    font-size: 16px;
    font-weight: 400;
    color: #555555;
    line-height:1.8;
}

.education-marketing-services-section .marketing-service-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

@media screen and (min-width: 993px)
{
    .education-marketing-services-section .marketing-service-card ul
    {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-column-gap: 20px;
    }
}

.education-marketing-services-section .marketing-service-card ul li{
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #555555;
    line-height: 1.7;
}

.education-marketing-services-section .marketing-service-card ul li:last-child{
    margin-bottom:0;
}

.education-marketing-services-section .marketing-service-card ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#981E20;
}

.education-marketing-services-section .marketing-service-card:hover .service-header h3{
    color:#981E20;
}

/*============*/
.education-marketing-services-section .marketing-service-card{
    overflow:hidden;
}

.education-marketing-services-section .marketing-service-card::after{
    content:"";
    position:absolute;
    right:-70px;
    top:-70px;
    width:140px;
    height:140px;
    border-radius:50%;
    background:rgba(152,30,32,.04);
    transition:.4s ease;
}

.education-marketing-services-section .marketing-service-card:hover::after{
    transform:scale(1.4);
}

.education-marketing-services-section .marketing-service-card:hover .service-header{
    border-color:rgba(152,30,32,.18);
}

.education-marketing-services-section .marketing-service-card:hover ul li{
    color:#141D36;
}

.education-marketing-services-section .marketing-service-card:hover p{
    color:#141D36;
}

.education-marketing-services-section .marketing-service-card ul li{
    transition:.3s;
}

.education-marketing-services-section .marketing-service-card p{
    transition:.3s;
}

.education-marketing-services-section .marketing-service-card{
    background-image:
    linear-gradient(180deg,#ffffff 0%,#ffffff 100%);
}

.education-marketing-services-section .marketing-service-card:hover{
    background-image:
    linear-gradient(180deg,#ffffff 0%,#fcfcfd 100%);
}

.education-marketing-services-section .service-header h3{
    transition:.3s;
}

.education-marketing-services-section .marketing-service-card ul{

}
/*============*/


@media screen and (max-width:480px){

    .education-marketing-services-section{
        padding:50px 0;
    }

    .education-marketing-services-section .education-marketing-heading{
        margin-bottom:35px;
    }

    .education-marketing-services-section .education-marketing-heading > p{
        font-size:11px;
        padding:7px 14px;
        margin-bottom:12px;
    }

    .education-marketing-services-section .education-marketing-heading h2{
        font-size:28px;
        line-height:1.3;
        margin-bottom:12px;
    }

    .education-marketing-services-section .section-description p{
        font-size:14px;
        line-height:1.7;
    }

    .education-marketing-services-section .marketing-services-row{
        --bs-gutter-x:18px;
        --bs-gutter-y:18px;
    }

    .education-marketing-services-section .marketing-service-card{
        padding:22px;
    }

    .education-marketing-services-section .service-header{
        margin-bottom:18px;
        padding-bottom:14px;
    }

    .education-marketing-services-section .service-header h3{
        font-size:20px;
    }

    .education-marketing-services-section .service-header span{
        font-size:12px;
    }

    .education-marketing-services-section .marketing-service-card p,
    .education-marketing-services-section .marketing-service-card ul li{
        font-size:14px;
        line-height:1.7;
    }

    .education-marketing-services-section .marketing-service-card ul li{
        padding-left:22px;
    }

    .education-marketing-services-section .marketing-service-card ul li::before{
        width:8px;
        height:8px;
        top:8px;
    }

}

@media screen and (min-width:481px) and (max-width:576px){

    .education-marketing-services-section{
        padding:55px 0;
    }

    .education-marketing-services-section .education-marketing-heading h2{
        font-size:31px;
    }

    .education-marketing-services-section .section-description p{
        font-size:15px;
    }

    .education-marketing-services-section .marketing-service-card{
        padding:24px;
    }

    .education-marketing-services-section .service-header h3{
        font-size:21px;
    }

    .education-marketing-services-section .service-header span{
        font-size:12px;
    }

    .education-marketing-services-section .marketing-service-card p,
    .education-marketing-services-section .marketing-service-card ul li{
        font-size:15px;
    }

}

@media screen and (min-width:577px) and (max-width:767px){

    .education-marketing-services-section{
        padding:60px 0;
    }

    .education-marketing-services-section .education-marketing-heading h2{
        font-size:34px;
    }

    .education-marketing-services-section .section-description p{
        font-size:15px;
    }

    .education-marketing-services-section .marketing-service-card{
        padding:26px;
    }

    .education-marketing-services-section .service-header h3{
        font-size:22px;
    }

    .education-marketing-services-section .marketing-service-card p,
    .education-marketing-services-section .marketing-service-card ul li{
        font-size:15px;
    }

}

@media screen and (min-width:768px) and (max-width:992px){

    .education-marketing-services-section{
        padding:65px 0;
    }

    .education-marketing-services-section .education-marketing-heading h2{
        font-size:36px;
    }

    .education-marketing-services-section .section-description{
        max-width:100%;
    }

    .education-marketing-services-section .marketing-service-card{
        padding:28px;
    }

    .education-marketing-services-section .service-header h3{
        font-size:22px;
    }

    .education-marketing-services-section .marketing-service-card p,
    .education-marketing-services-section .marketing-service-card ul li{
        font-size:15px;
        line-height:1.7;
    }

}



/*
    ==========================================================
*/




/*
    ==========================================================
*/

/*.hero-corporate-section {
  background-color: #F6F6F6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M0 0h30v30H0zm30 30h30v30H30z' fill='%20e3e3e3' fill-opacity='0.15'/%3E%3C/svg%3E");
  padding: 80px 0;
  overflow: hidden;
}*/
/*
.hero-corporate-section {
  background-color: #F6F6F6;
  background-image: radial-gradient(#DBE2E8 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  padding: 80px 0;
  overflow: hidden;
}*/
/*
.hero-corporate-section {
  background-color: #F6F6F6;
  background-image: 
    linear-gradient(to right, #EBEBEB 1px, transparent 1px),
    linear-gradient(to bottom, #EBEBEB 1px, transparent 1px);
  background-size: 40px 40px;
  padding: 80px 0;
  overflow: hidden;
}
*/
/*
.hero-corporate-section {
  background-color: #F6F6F6;
  background-image: linear-gradient(135deg, #EAEAEA 12.5%, transparent 12.5%, transparent 50%, #EAEAEA 50%, #EAEAEA 62.5%, transparent 62.5%, transparent 100%);
  background-size: 30px 30px;
  padding: 80px 0;
  overflow: hidden;
}

*/

.hero-corporate-section {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 400' width='100%25' height='100%25' preserveAspectRatio='none'%3E%3Cg fill='%232563EB' fill-opacity='0.025'%3E%3Crect x='100' y='180' width='70' height='220' /%3E%3Crect x='120' y='120' width='80' height='280' /%3E%3Crect x='230' y='220' width='65' height='180' /%3E%3Crect x='260' y='160' width='75' height='240' /%3E%3Crect x='380' y='250' width='60' height='150' /%3E%3Crect x='410' y='190' width='80' height='210' /%3E%3C/g%3E%3Cg fill='%230F2942' fill-opacity='0.015'%3E%3Cpath d='M110,190 h50 v10 h-50 z M110,210 h50 v10 h-50 z M110,230 h50 v10 h-50 z M110,250 h50 v10 h-50 z M110,270 h50 v10 h-50 z M110,290 h50 v10 h-50 z' /%3E%3Cpath d='M130,130 h60 v10 h-60 z M130,150 h60 v10 h-60 z M130,170 h60 v10 h-60 z M130,190 h60 v10 h-60 z M130,210 h60 v10 h-60 z M130,230 h60 v10 h-60 z M130,250 h60 v10 h-60 z M130,270 h60 v10 h-60 z M130,290 h60 v10 h-60 z' /%3E%3Cpath d='M240,230 h45 v8 h-45 z M240,245 h45 v8 h-45 z M240,260 h45 v8 h-45 z M240,275 h45 v8 h-45 z M240,290 h45 v8 h-45 z' /%3E%3Cpath d='M270,170 h55 v10 h-55 z M270,190 h55 v10 h-55 z M270,210 h55 v10 h-55 z M270,230 h55 v10 h-55 z M270,250 h55 v10 h-55 z M270,270 h55 v10 h-55 z M270,290 h55 v10 h-55 z' /%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: left bottom;
  background-repeat: no-repeat;
  padding: 40px 0;
  overflow: hidden;
}


.hero-corporate-section .main-heading {
    font-size: 35px;
    line-height: 1.15;
    font-weight: 800;
    color: #141D36;
    margin: 20px 0 20px;
}
.hero-corporate-section .main-heading span
{
    color: 
}

.hero-corporate-section .sub-text {
  font-size: 1rem;
  font-weight: 600;
  color: #141D36;
  margin-bottom: 12px;
}

.hero-corporate-section .body-text {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 18px;
}

.hero-corporate-section .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 35px;
}

.hero-corporate-section .benefit-item {
  /*display: flex;*/
  /*align-items: center;*/
  gap: 12px;
  font-size: 1rem;
  font-weight: 400;
  color: #0F2942;
}

.hero-corporate-section .icon-check {
  width: 20px;
  height: 20px;
  border: 2px solid #981E20;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 5px;
}

.hero-corporate-section .icon-check::after {
  content: "";
  width: 5px;
  height: 9px;
  border: solid #981E20;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.hero-corporate-section .btn-cta {
  display: inline-block;
  background-color: #981E20;
  color: #ffffff;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.hero-corporate-section .btn-cta:hover {
  background-color: #741416;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.hero-corporate-section .image-wrapper-card {
  position: relative;
  padding: 20px;
}

.hero-corporate-section .main-image-holder {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-corporate-section .hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  display: block;
}

.hero-corporate-section .social-badge {
  position: absolute;
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 10px;
}

.hero-corporate-section .social-badge img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-corporate-section .badge-fb { top: 20%; left: -6%; }
.hero-corporate-section .badge-insta { top: 5%; left: 30%; }
.hero-corporate-section .badge-gmaps { top: 25%; left: 38%; }
.hero-corporate-section .badge-google { top: 12%; right: 10%; }
.hero-corporate-section .badge-meta { bottom: 45%; left: 10%; }
.hero-corporate-section .badge-linkedin { bottom: 20%; left: -4%; }

.hero-corporate-section .secure-trust-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}

.hero-corporate-section .badge-icon-check {
  width: 24px;
  height: 24px;
  background: #D1FAE5;
  border-radius: 50%;
  position: relative;
}

.hero-corporate-section .badge-icon-check::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 6px;
  height: 11px;
  border: solid #059669;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.hero-corporate-section .badge-text-content {
  display: flex;
  flex-direction: column;
}

.hero-corporate-section .badge-text-content strong {
  font-size: 0.9rem;
  color: #0F2942;
}

.hero-corporate-section .badge-text-content span {
  font-size: 0.65rem;
  color: #6B7280;
  letter-spacing: 0.5px;
}

.hero-corporate-section .stars-rating {
  color: #FBBF24;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

@media (max-width: 991.98px) {
  .hero-corporate-section {
    padding: 60px 0;
  }
  .hero-corporate-section .main-heading {
    font-size: 2.2rem;
  }
  .hero-corporate-section .image-wrapper-card {
    margin-top: 40px;
    padding: 10px;
  }
  .hero-corporate-section .secure-trust-badge {
    left: 10px;
    bottom: -15px;
  }
  .hero-corporate-section .social-badge {
    width: 38px;
    height: 38px;
    padding: 8px;
  }
}

.imageERP img
{
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(20, 29, 54, 0.08);
    border-radius: 20px;
    transition: 0.4s ease;
}
.imageERP img:hover
{
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.18),
        0 12px 25px rgba(20, 29, 54, 0.12);
}


/*
    ==========================================================
*/
/*
.why-choose-alpha
{
    padding: 70px 0;
}

.why-choose-alpha .why-choose-alpha-content h2
{
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #141D36;
    margin-bottom: 35px;
}

.why-choose-alpha .why-choose-alpha-list
{
    padding: 0;
    margin: 0;
    list-style: none;
}

.why-choose-alpha .why-choose-alpha-list li
{
    position: relative;
    padding-left: 32px;
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    font-weight: 400;
}

.why-choose-alpha .why-choose-alpha-list li::before
{
    content: "\f26e";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: #981E20;
}



@media screen and (max-width:480px)
{
    .why-choose-alpha
    {
        padding: 45px 0;
    }

    .why-choose-alpha .why-choose-alpha-content h2
    {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .why-choose-alpha .why-choose-alpha-list li
    {
        font-size: 16px;
        margin-bottom: 15px;
        padding-left: 28px;
    }
}


@media screen and (min-width:481px) and (max-width:576px)
{
    .why-choose-alpha
    {
        padding: 50px 0;
    }

    .why-choose-alpha .why-choose-alpha-content h2
    {
        font-size: 34px;
    }

    .why-choose-alpha .why-choose-alpha-list li
    {
        font-size: 17px;
    }
}


@media screen and (min-width:577px) and (max-width:767px)
{
    .why-choose-alpha
    {
        padding: 55px 0;
    }

    .why-choose-alpha .why-choose-alpha-content h2
    {
        font-size: 36px;
    }

    .why-choose-alpha .why-choose-alpha-list li
    {
        font-size: 17px;
    }
}


@media screen and (min-width:768px) and (max-width:992px)
{
    .why-choose-alpha .why-choose-alpha-content h2
    {
        font-size: 38px;
    }

    .why-choose-alpha .why-choose-alpha-list li
    {
        font-size: 17px;
    }
}
*/

/*
    ==========================================================
*/

.why-choose-alpha
{
    padding:40px 0;
    background:#f8f9fc;
}

.why-choose-alpha .section-heading h2
{
    font-size: 35px;
    line-height: 1.15;
    font-weight: 800;
    color: #141D36;
    margin: 20px 0 10px;
}

.why-choose-alpha .section-heading p
{
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    text-align: center;
    margin-bottom:45px;
}

.why-choose-alpha .why-choose-alpha-box
{
    /*background:#fff;*/
    padding:35px 25px;
    padding:15px 25px;
    text-align:center;
    border-radius:18px;
    height:100%;
    /*box-shadow:0 10px 35px rgba(0,0,0,0.08);*/
    transition:.4s ease;
}

@media screen and (min-width: 993px)
{
    .why-choose-alpha .why-choose-alpha-box
    {
        display: inline-flex;
        flex-direction: row;
        grid-column-gap: 20px;
    }
    .why-choose-alpha .why-choose-alpha-box
    {

    }
}
/*
.why-choose-alpha .why-choose-alpha-box:hover
{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,0.12);
}
*/
.why-choose-alpha .why-choose-alpha-icon
{
    flex: 0 0 auto;
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 22px;
    border-radius:50%;
    font-size:32px;
}

.why-choose-alpha .blue
{
    background:#e7f0ff;
    color:#4361EE;
}

.why-choose-alpha .red
{
    background:#ffe8e8;
    color:#981E20;
}

.why-choose-alpha .yellow
{
    background:#fff6d8;
    color:#d99b00;
}

.why-choose-alpha .purple
{
    background:#f1e8ff;
    color:#7B2CBF;
}

.why-choose-alpha .green
{
    background:#e5f8ee;
    color:#16834b;
}

.why-choose-alpha .why-choose-alpha-box h3
{
    font-size:21px;
    font-weight:600;
    color:#141D36;
    margin-bottom:12px;
    text-align: left;
}

.why-choose-alpha .why-choose-alpha-box p
{
    font-size:16px;
    line-height:1.7;
    color:#333;
    margin:0;
}


@media screen and (max-width:480px)
{
    .why-choose-alpha
    {
        padding:45px 0;
    }

    .why-choose-alpha .section-heading h2
    {
        font-size:30px;
    }

    .why-choose-alpha .why-choose-alpha-box
    {
        padding:28px 20px;
    }
}


@media screen and (min-width:481px) and (max-width:576px)
{
    .why-choose-alpha .section-heading h2
    {
        font-size:34px;
    }
}


@media screen and (min-width:577px) and (max-width:767px)
{
    .why-choose-alpha .section-heading h2
    {
        font-size:36px;
    }
}


@media screen and (min-width:768px) and (max-width:992px)
{
    .why-choose-alpha .why-choose-alpha-box
    {
        padding:30px 18px;
    }
}

/**/
.why-choose-alpha .row.g-4 {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

/**/
.why-choose-alpha .row > [class*="col-"] {
    position: relative;
    padding: 20px 20px !important; /**/
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

/**/
@media (min-width: 992px) {
    .why-choose-alpha .row > .col-lg-4:nth-child(3n) {
        border-right: none;
    }
    /**/
   .why-choose-alpha  .row > .col-lg-4:nth-last-child(-n+3) {
        border-bottom: none;
    }
}

/**/
@media (min-width: 768px) and (max-width: 991.98px) {
    .why-choose-alpha .row > .col-md-6:nth-child(2n) {
        border-right: none;
    }
}

/**/
@media (max-width: 767.98px) {
    .why-choose-alpha .row > [class*="col-"] {
        border-right: none;
    }
    .why-choose-alpha .row > [class*="col-"]:last-child {
        border-bottom: none;
    }
}


/*
    ==========================================================
*/
/* Scoped CSS for Expertise UI */
.expertise-ui-wrapper {
  background-color: #f9f9f9; /* Subtle background pattern area */
  padding: 80px 0; /* Generous top and bottom padding */
}

.expertise-ui-wrapper .ui-title {
  color: #111111;
  margin-bottom: 15px;
}

.expertise-ui-wrapper .ui-subtitle {
  color: #666666;
  margin-bottom: 0;
}

.expertise-ui-wrapper .ui-card {
  background: #ffffff;
  border-radius: 12px; /* Rounded corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important; /* Softer default shadow */
}

.expertise-ui-wrapper .ui-card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important; /* Stronger shadow on hover */
}

.expertise-ui-wrapper .card-heading {
  border-bottom: 1px solid #eeeeee; /* Separator inside card */
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.expertise-ui-wrapper .ui-list li {
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.5;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.expertise-ui-wrapper .ui-list li:hover {
  color: #b30000; /* List item hover color matching brand */
}

.expertise-ui-wrapper .checkmark-icon {
  color: #b30000; /* Brand color for checkmarks */
  font-weight: bold;
  font-size: 1.2em;
}

/* --- Responsive Styles (as per request) --- */

/* Extra Small Devices: Phones (max-width: 480px) */
@media screen and (max-width: 480px) {
  .expertise-ui-wrapper {
    padding: 40px 0;
  }
  .expertise-ui-wrapper .ui-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .expertise-ui-wrapper .ui-subtitle {
    font-size: 0.9rem;
  }
  .expertise-ui-wrapper .ui-card {
    padding: 20px !important;
  }
  .expertise-ui-wrapper .ui-list li {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }
}

/* Small Devices: Phones (min-width: 481px) and (max-width: 576px) */
@media screen and (min-width: 481px) and (max-width: 576px) {
  .expertise-ui-wrapper {
    padding: 50px 0;
  }
  .expertise-ui-wrapper .ui-title {
    font-size: 2.2rem;
  }
  .expertise-ui-wrapper .ui-subtitle {
    font-size: 0.95rem;
  }
  .expertise-ui-wrapper .ui-card {
    padding: 25px !important;
  }
  .expertise-ui-wrapper .ui-list li {
    font-size: 1rem;
  }
}

/* Small Devices: Tablets (min-width: 577px) and (max-width: 767px) */
@media screen and (min-width: 577px) and (max-width: 767px) {
  .expertise-ui-wrapper {
    padding: 60px 0;
  }
  .expertise-ui-wrapper .ui-title {
    font-size: 2.5rem;
  }
  .expertise-ui-wrapper .ui-subtitle {
    font-size: 1rem;
  }
  .expertise-ui-wrapper .ui-card {
    padding: 30px !important;
  }
  .expertise-ui-wrapper .ui-list li {
    font-size: 1.05rem;
  }
}

/* Medium Devices: Desktops (min-width: 768px) and (max-width: 992px) */
@media screen and (min-width: 768px) and (max-width: 992px) {
  .expertise-ui-wrapper {
    padding: 70px 0;
  }
  .expertise-ui-wrapper .ui-title {
    font-size: 2.8rem;
  }
  .expertise-ui-wrapper .ui-card {
    padding: 35px !important;
  }
  .expertise-ui-wrapper .ui-list li {
    font-size: 1.05rem;
  }
}

/*
    ==========================================================
*/

.our-expertise-section
{
    padding:60px 0;
    background-color: #e7f0f7;
    background-image: url(../img/cubes.png);}

.our-expertise-section .our-expertise-content .expertise-tag
{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #7C181A;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 1px;
    border: 1px solid rgba(20, 29, 54, .08);
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    margin-bottom: 10px;
}

.our-expertise-section .our-expertise-content h2
{
    font-size:35px;
    line-height:1.2;
    font-weight:700;
    color:#141D36;
    margin-bottom:10px;
    text-align: center;
}
@media screen and (min-width: 993px)
{
    .our-expertise-section .our-expertise-content p
    {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}
.our-expertise-section .our-expertise-content p
{
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    text-align: center;
    margin-bottom: 45px;
}

.our-expertise-section .expertise-box-wrapper
{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.our-expertise-section .expertise-box
{
    background:#ffffff;
    padding:25px 15px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
    border:1px solid #eeeeee;
}

.our-expertise-section .expertise-box:hover
{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.our-expertise-section .expertise-icon
{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 15px;
    background:#141D36;
    color:#ffffff;
    font-size:28px;
}

.our-expertise-section .expertise-box:nth-child(8n+1) .expertise-icon { background:#981E20; }
.our-expertise-section .expertise-box:nth-child(8n+2) .expertise-icon { background:#141D36; }
.our-expertise-section .expertise-box:nth-child(8n+3) .expertise-icon { background:#e6a700; }
.our-expertise-section .expertise-box:nth-child(8n+4) .expertise-icon { background:#2563eb; }
.our-expertise-section .expertise-box:nth-child(8n+5) .expertise-icon { background:#7B2CBF; }
.our-expertise-section .expertise-box:nth-child(8n+6) .expertise-icon { background:#FF6B6B; }
.our-expertise-section .expertise-box:nth-child(8n+7) .expertise-icon { background:#00A896; }
.our-expertise-section .expertise-box:nth-child(8n+8) .expertise-icon { background:#F72585; }


.our-expertise-section .expertise-box h5
{
    font-size:17px;
    font-weight:600;
    color:#141D36;
    margin:0;
}


@media screen and (max-width:480px)
{
    .our-expertise-section
    {
        padding:50px 0;
    }

    .our-expertise-section .our-expertise-content
    {
        text-align:center;
        margin-bottom:35px;
    }

    .our-expertise-section .our-expertise-content h2
    {
        font-size:28px;
    }

    .our-expertise-section .expertise-box-wrapper
    {
        grid-template-columns:repeat(1,1fr);
        gap:15px;
    }

    .our-expertise-section .expertise-box
    {
        padding:20px 15px;
    }
}


@media screen and (min-width:481px) and (max-width:576px)
{
    .our-expertise-section .our-expertise-content
    {
        text-align:center;
        margin-bottom:35px;
    }

    .our-expertise-section .our-expertise-content h2
    {
        font-size:30px;
    }

    .our-expertise-section .expertise-box-wrapper
    {
        grid-template-columns:repeat(2,1fr);
    }
}


@media screen and (min-width:577px) and (max-width:767px)
{
    .our-expertise-section .our-expertise-content
    {
        text-align:center;
        margin-bottom:40px;
    }

    .our-expertise-section .our-expertise-content h2
    {
        font-size:32px;
    }

    .our-expertise-section .expertise-box-wrapper
    {
        grid-template-columns:repeat(2,1fr);
    }
}


@media screen and (min-width:768px) and (max-width:992px)
{
    .our-expertise-section .our-expertise-content h2
    {
        font-size:34px;
    }

    .our-expertise-section .expertise-box-wrapper
    {
        grid-template-columns:repeat(3,1fr);
        margin-top:40px;
    }
}
/*
    ==========================================================
*/

.img-text-section{
    position: relative;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.img-text-section picture,
.img-text-section img{
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

.img-text-section img{
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.img-text-section{
    position:relative;
}

.img-text-section .image-protection-layer{
    position:absolute;
    inset:0;
    z-index:5;
    background:transparent;
}

/*
    ==========================================================
*/

.school-website-process-section{
    padding:70px 0;
    background:#f8f9fc;
    overflow:hidden;
}

.school-website-process-section .process-heading{
    text-align:center;
    margin-bottom:45px;
}

.school-website-process-section .process-heading>p{
    display:inline-block;
    padding:8px 18px;
    background:rgba(152,30,32,.08);
    color:#981E20;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.school-website-process-section .process-heading h2{
    color:#141D36;
    font-size:42px;
    font-weight:700;
    margin-bottom:18px;
}

.school-website-process-section .section-description{
    max-width:760px;
    margin:auto;
}

.school-website-process-section .section-description p{
    color:#666;
    line-height:1.8;
    margin:0;
}

.school-website-process-section .process-slider{
    overflow:hidden;
    position:relative;
    width:100%;
    cursor:grab;
}

.school-website-process-section .process-slider:active{
    cursor:grabbing;
}

.school-website-process-section .process-timeline{
    display:flex;
    align-items:stretch;
    gap:30px;
    width:max-content;
    will-change:transform;
}

.school-website-process-section .timeline-item{
    width:280px;
    flex-shrink:0;
    position:relative;
}

.school-website-process-section .timeline-content{
    position:relative;
    background:#fff;
    border-radius:18px;
    padding:30px;
    height:100%;
    overflow:hidden;
    border:1px solid rgba(20,29,54,.08);
    transition:.35s;
    box-shadow:0 12px 30px rgba(20,29,54,.06);
}

.school-website-process-section .timeline-content:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(20,29,54,.12);
}

.school-website-process-section .timeline-content::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:#981E20;
    transform:scaleY(0);
    transition:.35s;
    transform-origin:top;
}

.school-website-process-section .timeline-content:hover::before{
    transform:scaleY(1);
}

.school-website-process-section .step-number{
    display:block;
    font-size:58px;
    font-weight:800;
    color:rgba(20,29,54,.08);
    line-height:1;
    margin-bottom:15px;
}

.school-website-process-section .timeline-content h3{
    color:#141D36;
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
    transition:.3s;
}

.school-website-process-section .timeline-content:hover h3{
    color:#981E20;
}

.school-website-process-section .timeline-content p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin:0;
}

.school-website-process-section .timeline-item::after{
    content:"";
    position:absolute;
    top:50%;
    right:-22px;
    width:14px;
    height:14px;
    border-top:3px solid #141D36;
    border-right:3px solid #141D36;
    transform:translateY(-50%) rotate(45deg);
}

.school-website-process-section .timeline-item:last-child::after{
    display:none;
}

.school-website-process-section .process-slider{
    overflow:hidden;
    width:100%;
}

.school-website-process-section .process-timeline{
    display:flex;
    width:max-content;
}

@media screen and (max-width:480px){

    .school-website-process-section{
        padding:50px 0;
    }

    .school-website-process-section .process-heading{
        margin-bottom:30px;
    }

    .school-website-process-section .process-heading>p{
        font-size:11px;
        padding:7px 14px;
    }

    .school-website-process-section .process-heading h2{
        font-size:28px;
        margin-bottom:12px;
    }

    .school-website-process-section .section-description p{
        font-size:14px;
        line-height:1.7;
    }

    .school-website-process-section .process-timeline{
        gap:16px;
    }

    .school-website-process-section .timeline-item{
        width:240px;
    }

    .school-website-process-section .timeline-content{
        padding:22px;
    }

    .school-website-process-section .step-number{
        font-size:42px;
        margin-bottom:10px;
    }

    .school-website-process-section .timeline-content h3{
        font-size:18px;
        margin-bottom:10px;
    }

    .school-website-process-section .timeline-content p{
        font-size:13px;
        line-height:1.6;
    }

    .school-website-process-section .timeline-item::after{
        width:10px;
        height:10px;
        right:-13px;
    }

}

@media screen and (min-width:481px) and (max-width:576px){

    .school-website-process-section{
        padding:55px 0;
    }

    .school-website-process-section .process-heading h2{
        font-size:30px;
    }

    .school-website-process-section .process-timeline{
        gap:18px;
    }

    .school-website-process-section .timeline-item{
        width:250px;
    }

    .school-website-process-section .timeline-content{
        padding:24px;
    }

    .school-website-process-section .step-number{
        font-size:46px;
    }

    .school-website-process-section .timeline-content h3{
        font-size:19px;
    }

    .school-website-process-section .timeline-content p{
        font-size:14px;
    }

}

@media screen and (min-width:577px) and (max-width:767px){

    .school-website-process-section{
        padding:60px 0;
    }

    .school-website-process-section .process-heading h2{
        font-size:34px;
    }

    .school-website-process-section .process-timeline{
        gap:20px;
    }

    .school-website-process-section .timeline-item{
        width:260px;
    }

    .school-website-process-section .timeline-content{
        padding:26px;
    }

    .school-website-process-section .step-number{
        font-size:50px;
    }

    .school-website-process-section .timeline-content h3{
        font-size:20px;
    }

}

@media screen and (min-width:768px) and (max-width:992px){

    .school-website-process-section{
        padding:70px 0;
    }

    .school-website-process-section .process-heading h2{
        font-size:38px;
    }

    .school-website-process-section .process-timeline{
        gap:25px;
    }

    .school-website-process-section .timeline-item{
        width:270px;
    }

    .school-website-process-section .timeline-content{
        padding:28px;
    }

    .school-website-process-section .step-number{
        font-size:54px;
    }

    .school-website-process-section .timeline-content h3{
        font-size:21px;
    }

}

/*
    ==========================================================
*/

.school-faq-section{
    padding: 55px 0 45px;
    background-image: url(../img/section-bg-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.school-faq-section .section-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #7C181A;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 1px;
    border: 1px solid rgba(20, 29, 54, .08);
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    margin-bottom: 10px;
}

.school-faq-section .section-title{
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
    color: #141D36;
    margin-bottom: 10px;
    text-align: center;
}

.school-faq-section .section-desc{
    max-width:760px;
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    text-align: center;
    margin-bottom: 45px;
    margin-left: auto;
    margin-right: auto;
}

.school-faq-section .accordion{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.school-faq-section .accordion-item{
    border:none;
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 12px 35px rgba(20,29,54,.08);
    transition:.35s;
}

.school-faq-section .accordion-item:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 45px rgba(20,29,54,.12);
}

.school-faq-section .accordion-button{
    background:#fff;
    color:#141D36;
    padding:20px 70px 20px 26px;
    box-shadow:none;
    position:relative;
        font-size: 19px;
    font-weight: 600;
}

.school-faq-section .accordion-button:focus{
    box-shadow:none;
}

.school-faq-section .accordion-button:not(.collapsed){
    background:#981E20;
    color:#fff;
}

.school-faq-section .accordion-button::after{
    display:none;
}

.school-faq-section .accordion-button::before{
    content:"+";
    width:36px;
    height:36px;
    border-radius:50%;
    position:absolute;
    right:22px;
    top:50%;
    transform:translateY(-50%);
    background:#141D36;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:500;
    transition:.3s;
}

.school-faq-section .accordion-button:not(.collapsed)::before{
    content:"−";
    background:#fff;
    color:#981E20;
}

.school-faq-section .accordion-body{
    padding:22px 26px 28px;
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 0px;
    border-top:1px solid rgba(0,0,0,.05);
}

.school-faq-section .accordion-collapse{
    transition:all .35s ease;
}

@media screen and (max-width:480px){

.school-faq-section{
    padding:70px 0;
}

.school-faq-section .section-title{
    font-size:28px;
}

.school-faq-section .section-desc{
    font-size:15px;
}

.school-faq-section .accordion-button{
    font-size:16px;
    padding:18px 60px 18px 18px;
}

.school-faq-section .accordion-button::before{
    width:30px;
    height:30px;
    right:16px;
    font-size:20px;
}

.school-faq-section .accordion-body{
    font-size:15px;
    padding:18px;
}

}

@media screen and (min-width:481px) and (max-width:576px){

.school-faq-section{
    padding:75px 0;
}

.school-faq-section .section-title{
    font-size:30px;
}

.school-faq-section .section-desc{
    font-size:15px;
}

.school-faq-section .accordion-button{
    font-size:17px;
    padding:20px 62px 20px 20px;
}

.school-faq-section .accordion-body{
    font-size:15px;
}

}

@media screen and (min-width:577px) and (max-width:767px){

.school-faq-section{
    padding:80px 0;
}

.school-faq-section .section-title{
    font-size:34px;
}

.school-faq-section .accordion-button{
    font-size:17px;
}

.school-faq-section .accordion-body{
    font-size:15px;
}

}

@media screen and (min-width:768px) and (max-width:992px){

.school-faq-section{
    padding:90px 0;
}

.school-faq-section .section-title{
    font-size:38px;
}

.school-faq-section .accordion-button{
    font-size:18px;
}

}

/*
    ==========================================================
*/


.thank-you-section{
    padding:60px 0;
    background:linear-gradient(180deg,#f8f9fc 0%,#ffffff 100%);
    position:relative;
    overflow:hidden;
}

.thank-you-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(152,30,32,.05);
    top:-220px;
    left:-220px;
}

.thank-you-section::after{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(20,29,54,.05);
    right:-220px;
    bottom:-220px;
}

.thank-you-section .container{
    position:relative;
    z-index:2;
}

.thank-you-section .thank-you-card{
    background:#fff;
    border-radius:24px;
    padding:40px 60px;
    text-align:center;
    box-shadow:0 25px 70px rgba(20,29,54,.08);
    border:1px solid rgba(20,29,54,.06);
}

.thank-you-section .success-icon{
    width:110px;
    height:110px;
    margin:0 auto 30px;
    border-radius:50%;
    background:#981E20;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:56px;
    box-shadow:0 20px 45px rgba(152,30,32,.25);
}

.thank-you-section .success-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: #141D36;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 1px;
    border: 1px solid rgba(20, 29, 54, .08);
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);    
    margin-bottom:22px;
}

.thank-you-section .success-badge i{
    font-size:16px;
}

.thank-you-section .thank-you-title{
 font-size: 35px;
    line-height: 1.15;
    font-weight: 800;
    color: #141D36;
    margin: 10px 0 20px;
}

.thank-you-section .thank-you-description{
    max-width:760px;
    margin:0 auto 45px;
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 18px;
}

.thank-you-section .information-box{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-bottom:45px;
}

.thank-you-section .information-item{
    background:#f8f9fc;
    border-radius:18px;
    padding:28px 24px;
    transition:.35s;
}

.thank-you-section .information-item:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(20,29,54,.08);
}

.thank-you-section .information-icon{
    width:65px;
    height:65px;
    margin:0 auto 18px;
    border-radius:16px;
    background:#141D36;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    transition:.35s;
}

.thank-you-section .information-item:hover .information-icon{
    background:#981E20;
}

.thank-you-section .information-content h5{
    color:#141D36;
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.thank-you-section .information-content p{
    margin:0;
    color:#666;
    font-size:15px;
    line-height:1.8;
}

.thank-you-section .contact-box{
    background:#141D36;
    border-radius:20px;
    padding:35px;
    margin-bottom:40px;
}

.thank-you-section .contact-box h4{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
}

.thank-you-section .contact-list{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.thank-you-section .contact-list a{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 22px;
    border-radius:12px;
    background:rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    transition:.35s;
}

.thank-you-section .contact-list a:hover{
    background:#981E20;
}

.thank-you-section .button-group{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.thank-you-section .button-group a{
    min-width:220px;
    height:56px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    transition:.35s;
}

.thank-you-section .home-btn{
    background:#981E20;
    color:#fff;
}

.thank-you-section .home-btn:hover{
    background:#141D36;
    color:#fff;
}

.thank-you-section .call-btn{
    border:2px solid #141D36;
    color:#141D36;
    background:#fff;
}

.thank-you-section .call-btn:hover{
    background:#141D36;
    color:#fff;
}

@media screen and (max-width:480px){

.thank-you-section{
    padding:70px 0;
}

.thank-you-section .thank-you-card{
    padding:28px 20px;
}

.thank-you-section .success-icon{
    width:80px;
    height:80px;
    font-size:40px;
}

.thank-you-section .thank-you-title{
    font-size:30px;
}

.thank-you-section .thank-you-description{
    font-size:15px;
}

.thank-you-section .information-box{
    grid-template-columns:1fr;
}

.thank-you-section .contact-box{
    padding:24px 18px;
}

.thank-you-section .contact-box h4{
    font-size:22px;
}

.thank-you-section .contact-list{
    flex-direction:column;
}

.thank-you-section .contact-list a{
    justify-content:center;
}

.thank-you-section .button-group{
    flex-direction:column;
}

.thank-you-section .button-group a{
    width:100%;
    min-width:100%;
}

}

@media screen and (min-width:481px) and (max-width:576px){

.thank-you-section .thank-you-card{
    padding:35px 25px;
}

.thank-you-section .thank-you-title{
    font-size:34px;
}

.thank-you-section .information-box{
    grid-template-columns:1fr;
}

.thank-you-section .contact-list{
    flex-direction:column;
}

}

@media screen and (min-width:577px) and (max-width:767px){

.thank-you-section .thank-you-card{
    padding:40px 30px;
}

.thank-you-section .thank-you-title{
    font-size:38px;
}

.thank-you-section .information-box{
    grid-template-columns:1fr;
}

}

@media screen and (min-width:768px) and (max-width:992px){

.thank-you-section .thank-you-card{
    padding:45px;
}

.thank-you-section .thank-you-title{
    font-size:42px;
}

.thank-you-section .information-box{
    grid-template-columns:repeat(2,1fr);
}

}


.thank-you-section .success-icon{
    animation:thankYouFloat 3s ease-in-out infinite;
}

@keyframes thankYouFloat{

0%{
    transform:translateY(0);
}

50%{
    transform:translateY(-8px);
}

100%{
    transform:translateY(0);
}

}


/*
    ==========================================================
*/
/*
    ==========================================================
*/

/*
    ==========================================================
*/


/*
    ==========================================================
*/
/*
    ==========================================================
*/


/*
    ==========================================================
*/
/*
    ==========================================================
*/

/*
    ==========================================================
*/


/*
    ==========================================================
*/
/*
    ==========================================================
*/


/*
    ==========================================================
*/
/*
    ==========================================================
*/

/*
    ==========================================================
*/


/*
    ==========================================================
*/
/*
    ==========================================================
*/


/*
    ==========================================================
*/
/*
    ==========================================================
*/

/*
    ==========================================================
*/


/*
    ==========================================================
*/
/*
    ==========================================================
*/


/*
    ==========================================================
*/
/*
    ==========================================================
*/

/*
    ==========================================================
*/


/*
    ==========================================================
*/