:root{
    --body-font: "Rajdhani", sans-serif;
    --heading-font:"Aclonica", sans-serif;
    --primary-color:#3D0301;
    --secondary-color:#AD2E54;
    --white-color:#ffffff;
    --black-color:#000000;
   --grey-color:#666666;
   --cream-color:#EBE8DB;
}

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{
    font-family:var(--body-font) !important;
    background-color: var(--white-color) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font) !important;
  color:var(--black-color);
  margin:0;
  margin-bottom: 0 !important;
}

.heading_one{
   font-size: 40px;
   line-height: 50px;
   color: var(--black-color);
}
.heading_two{
   font-size: 35px;
   line-height:45px;
}
.heading_three{
    font-size:28px;
    line-height: 38px;
}
.heading_four{
    font-size:24px;
    line-height: 35px;
}
.heading_five{
    font-size: 22px;
    line-height: 32px;
}
.heading_six{
    font-size:20px;
    line-height: 30px;
}

p{
  font-family: var(--body-font);
  color:var(--grey-color);
  font-size:18px;
  line-height: 27px;
  font-weight:500;
  margin-top:12px !important;
  margin-bottom: 0 !important;
}
p+p{
    margin-top: 10px;
}

span.top-tag {
    display: flex;
    align-items:flex-start;
    gap: 10px;
    font-size: 18px;
    font-family: var(--body-font);
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.main-btn {
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height:27px;
    text-transform: uppercase;
    padding: 15px 35px;
    border-radius: 100px;
    background-color: var(--secondary-color);
    color: var(--white-color) !important;
    outline:none;
    box-shadow: none;
    font-family: var(--body-font);
    margin-top:40px;
    transition:0.5s;
    border: 1.5px solid var(--secondary-color);
}

.main-btn.border-btn{
   background-color:transparent;  
   color: var(--white-color); 
}

.container{
    width: 100%;
    max-width:1440px !important;
    padding: 0px 60px !important;
    margin: 0 auto;
}

.space-top{
    margin-top:100px;
}
.space-inner{
    padding: 100px 0;
}
/**********Header Css***************/
header.manthan-header {
    position: fixed;
    left: 50%;
    width: 100%;
    top: 20px;
    max-width: calc(1440px - 120px);
    transform: translateX(-50%);
    background-color: transparent;
    z-index: 999;
}
header.manthan-header nav {
    background-color: #2D0908 !important;
    border-radius: 100px;
    padding: 10px 40px;
}

header.manthan-header nav .container{
    padding:0 !important;
    max-width: 100% !important;
}
header.manthan-header .navbar-brand img {
    height: 65px;
}
header.manthan-header a.navbar-brand {
    padding: 0;
}
header.manthan-header .navbar-nav li a {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--white-color);
    transition: 0.5s;
}
header.manthan-header .navbar-nav li + li {
    margin-left:32px;
}
header.manthan-header a.header-btn {
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    text-transform: uppercase;
    padding: 15px 35px;
    border-radius: 100px;
    background-color: var(--secondary-color);
    color: var(--white-color) !important;
    outline: none;
    box-shadow: none;
    font-family: var(--body-font);
    transition: 0.5s;
    border: 1.5px solid var(--secondary-color);
}
header.manthan-header a.header-btn:hover{
    background-color: transparent;
    color: var(--white-color);
}
header.manthan-header .navbar-nav li a {
    position: relative;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: var(--white-color);
    transition: 0.3s;
    padding: 0 !important;
}


header.manthan-header .navbar-nav li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; /* thoda gap niche */
    width: 0%;
    height: 2px;
    background-color: var(--secondary-color); /* white underline */
    transition: width 0.4s ease;
}


header.manthan-header .navbar-nav li a:hover::after {
    width: 100%;
}


header.manthan-header .navbar-nav li.active a::after,
header.manthan-header .navbar-nav li a.active::after {
    width: 100%;
}
header.manthan-header .navbar-nav li a.active{
    color: var(--white-color);
}
/*******************Footer css**********************/
footer#footer {
   background-color: var(--cream-color);
   padding:0;
   position: relative;
}
footer .footer-top{
   padding: 60px 0;
}
footer .brand-footer img {
    width: 100%;
    max-width: 100px;
    margin-bottom: 20px;
    display: block;
}
footer .brand-footer p{
    margin: 0;
    max-width: 90%;
}
footer .copyright-box {
    background-color: var(--primary-color);
    padding: 15px 0;
}
footer .copyright-box .copyright-text {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
footer .copyright-box .copyright-text p, footer .copyright-box .copyright-text a {
    margin: 0 !important;
    color: var(--white-color);
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    transition: 0.5s;
}
footer .copyright-box .copyright-text a:hover{
    color: var(--secondary-color);
}
footer .footer-items .heading_five {
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 25px !important;
}
footer .footer-items ul {
    margin: 0;
    padding: 0;
}
footer .footer-items ul li a {
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
    color: var(--black-color);
    transition: 0.5s;
    position: relative;
}
footer .footer-items ul li a:hover{
    color: var(--secondary-color);
}
footer .footer-items ul li + li {
    margin-top: 15px;
}
footer .footer-items ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px; 
    width: 0%;
    height: 2px;
    background-color: var(--secondary-color); 
    transition: width 0.4s ease;
}

footer ul.social-media {
    padding: 0;
    margin: 0;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}
footer ul.social-media a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    border: 1.5px solid var(--primary-color);
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
footer ul.social-media a img {
    display: block;
    margin: 0;
    width: 17px;
    height: 17px;
    transition: 0.5s;
}
footer ul.social-media a:hover{
  background-color: var(--primary-color);
}
footer ul.social-media a:hover img{
    filter:brightness(0) invert(1);
}
footer img.backtop-btn {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}
/**********Hero Section Css***************/
section.hero-section {
    background-color: var(--primary-color);
}
section.hero-section img.hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
} 
section.hero-section .hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    padding: 60px;
    padding-right: 30px;
}

section.hero-section .hero-content .btn-group{
    display:flex;
    gap:15px;
    align-items: center;
    margin-top:40px;
}

section.hero-section .hero-content .btn-group .main-btn{
    margin-top:0;
}

/********mobile menu css***********/
.custom-toggler {
  width: 45px;
  height:45px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #b12f52, #7d1d37);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.16);
  transition: all 0.35s ease;
}

.custom-toggler .toggler-icon {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
  display: block;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* closed state */
.custom-toggler.collapsed .toggler-icon:nth-child(1) {
  transform: translateY(0) rotate(0);
}

.custom-toggler.collapsed .toggler-icon:nth-child(2) {
  opacity: 1;
}

.custom-toggler.collapsed .toggler-icon:nth-child(3) {
  transform: translateY(0) rotate(0);
}

/* open state */
.custom-toggler:not(.collapsed) .toggler-icon:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.custom-toggler:not(.collapsed) .toggler-icon:nth-child(2) {
  opacity: 0;
}

.custom-toggler:not(.collapsed) .toggler-icon:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar-toggler {
  outline: none;
  box-shadow: none !important;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}
/********mobile menu css end************/

/***********about section css*************/
section.about-section .about-manthan {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}
section.about-section .about-content ul li {
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
    color: var(--grey-color);
    position: relative;
    list-style: none;
}
section.about-section .about-content ul {
    margin: 0;
    margin-top: 25px;
    padding: 0;
    padding-left: 40px;
}
section.about-section .about-content ul li + li{
    margin-top: 12px;
}
section.about-section .about-content ul li:before {
    content: '';
    background-image: url('/wp-content/uploads/2026/04/check-icon.svg');
    position: absolute;
    left: -25px;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    top: 3px;
}
section.about-section .about-content {
    padding-left: 20px;
}
section.about-section .about-content .heading_four {
    margin-top: 25px;
    margin-bottom: 0;
}
section.about-section .about-content .founder-text {
    color: var(--secondary-color);
    margin-top: 0 !important;
}

/***********service css**************/
section.service-section {
   background-color: var(--cream-color);
}
section.service-section .service-box {
    height: 100%;
    padding: 40px 25px;
    border: 1.5px solid var(--secondary-color);
    border-radius: 10px;
    background-color: var(--white-color);
    transition: 0.5s;
    cursor: pointer;
}
section.service-section .service-box .icon-box img {
    width: 35px;
}
section.service-section .service-box .icon-box {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ad2e544f;
    border-radius: 50%;
    margin-bottom: 30px;
}
section.service-section .service-box .heading_four{
  margin-bottom: 0;
}
section.service-section .service-box:hover{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

section.service-section .service-box:hover .heading_four, section.service-section .service-box:hover p{
    color: var(--white-color);
}
section.service-section .service-box:hover .icon-box{
    background-color: var(--secondary-color);
}
section.service-section .service-box:hover .icon-box img{
    filter:brightness(0) invert(1);
}
.top-divide .boxOne{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.top-divide{
    margin-bottom: 45px;
}

/*******************************************************/
/******************Responsive Css **********************/
/*******************************************************/


@media (max-width:1440px){
header.manthan-header {
    width: calc(100% - 120px);
    max-width:100%;
}

}

@media (max-width:1024px){
    header.manthan-header {
        width: calc(100% - 80px);
    }
    .container{
        padding: 0px 40px !important;
    }
}

@media (max-width: 991.98px){
header.manthan-header .navbar-brand img {
    height: 48px;
}
header.manthan-header nav {
    border-radius: 30px;
    padding: 10px 40px;
}
header.manthan-header .navbar-nav li + li {
    margin-left: 0;
    margin-top:20px;
}
header.manthan-header .navbar-nav li a {
    width: fit-content;
}
header.manthan-header a.header-btn {
    margin-top: 30px;
    margin-bottom: 40px;
}
header.manthan-header a.header-btn {
    font-size: 16px;
    line-height: 24px;
    padding: 12px 30px;
}
header .navbar-nav{
    padding-top: 40px;
}
header div#navbar {
    position: absolute;
    top: 85px;
    width: 100%;
    left: 0;
    background-color: #2D0908 !important;
    border-radius: 30px;
    padding: 0px 40px;
}
section.hero-section .hero-content {
    padding: 70px 40px;
    max-width: 100%;
}
}

@media (max-width:767px){
    header.manthan-header {
        width: calc(100% - 32px);
    }
    .container{
        padding: 0px 16px !important;
    }
    header.manthan-header nav {
        padding: 10px 16px;
    }
    header div#navbar {
        padding: 0px 16px;
    }
    section.hero-section .hero-content {
        padding: 50px 16px;
        max-width: 100%;
    }
    .heading_one {
        font-size: 32px;
        line-height: 42px;
    }
    .main-btn {
        font-size: 14px;
        padding: 12px 25px;
    }
    section.hero-section .hero-content .btn-group {
        margin-top: 30px;
        gap: 12px;
    }
    footer .footer-items ul li + li {
        margin-top: 8px;
    }
    footer .footer-items .heading_five {
        margin-bottom: 12px !important;
        font-size: 20px;
        line-height: 28px;
    }
    footer .copyright-box .copyright-text {
        flex-direction: column;
        gap: 4px;
    }
    .space-top{
        margin-top:70px;
    }
    .space-inner{
        padding:70px 0;
    }
    .top-divide .boxOne {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .top-divide {
        margin-bottom: 35px;
    }
    section.service-section .service-box {
        padding: 30px 20px;
    }
    section.service-section .service-box .icon-box {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    section.service-section .service-box .icon-box img {
        width: 30px;
    }
    .heading_two {
        font-size: 30px;
        line-height: 42px;
    }
    section.about-section .about-content {
        padding-left: 0;
        padding-top: 30px;
    }
    .main-btn {
        margin-top: 30px;
    }
    .heading_four {
        font-size: 22px;
        line-height: 32px;
    }
}

@media (max-width:480px){
  section.hero-section img.hero-image {
        height: 350px;
        object-position: bottom;
    }
}

