/* Custom Font imports */
@font-face {
    font-family: "Priego";
    src: url("../fonts/priego-bold.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Priego";
    src: url("../fonts/priego-light.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Priego";
    src: url("../fonts/priego-medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Priego";
    src: url("../fonts/priego-regular.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Priego";
    src: url("../fonts/priego-semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Realgar";
    src: url("../fonts/Realgar-Bd.otf") format("opentype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Realgar";
    src: url("../fonts/Realgar-Md.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Realgar";
    src: url("../fonts/Realgar-Rg.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Realgar";
    src: url("../fonts/Realgar-SmBd.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


:root {
    --primary-clr: linear-gradient(151deg, #0C3C47 0%, #07272E 100%);
    --secondary-clr: #0DB2D7;
    --secondary-hover-clr: #0c94b3;
    --primary-clr-support: #07272E;
    --background-clr: #FFFCFA;
    --primary-heading-clr: #07272E;
    --secondary-heading-clr: #F09043;
    --primary-text-clr: #07272E99;
    --secondary-text-clr: #EEE;
    --ff-primary: 'Realgar';
    --ff-secondary: 'Priego';
    --neutral-300:#E0E2E6;
    --neutral-100:#F8F9FB;
    --neutral-500:#A0A5B1;

     --primary:       #1a56db;
      --primary-light: #ebf0ff;
      --primary-dark:  #1240a8;
      --accent:        #f97316;
      --accent-light:  #fff4ed;
      --success:       #059669;
      --success-light: #ecfdf5;
      --purple:        #7c3aed;
      --purple-light:  #f5f3ff;
      --rose:          #e11d48;
      --rose-light:    #fff1f2;
      --teal:          #0d9488;
      --teal-light:    #f0fdfa;
      --amber:         #d97706;
      --amber-light:   #fffbeb;
      --text-dark:     #111827;
      --text-muted:    #6b7280;
      --border:        #e5e7eb;
      --bg-section:    #f8faff;
       /* Spark – sky blue */
      --spark-bg:       #f0f9ff;
      --spark-border:   #bae6fd;
      --spark-accent:   #0284c7;
      --spark-num:      #0369a1;
      --spark-badge-bg: #e0f2fe;
      --spark-tint:     rgba(2, 132, 199, 0.07);

      /* Summit – soft violet */
      --summit-bg:       #f5f3ff;
      --summit-border:   #ddd6fe;
      --summit-accent:   #7c3aed;
      --summit-num:      #6d28d9;
      --summit-badge-bg: #ede9fe;
      --summit-tint:     rgba(124, 58, 237, 0.07);

      /* Elite – warm amber */
      --elite-bg:       #fffbeb;
      --elite-border:   #fde68a;
      --elite-accent:   #d97706;
      --elite-num:      #b45309;
      --elite-badge-bg: #fef3c7;
      --elite-tint:     rgba(217, 119, 6, 0.07);
}

body {
    font-family: var(--ff-primary);
    background-color: var(--background-clr);

    /* height: 1000px; */
    /* width: 100%; */
}

.base-text,
.label-text {
    color: var(--primary-text-clr);
    font-size: clamp(0.95rem, 0.6759rem + 0.3704vw, 1rem);
    font-weight: 100;
    padding-top: 1rem;
    /* max-width: 60%; */
}
.btn-primary{
    background-color: var(--secondary-clr);
    color: #fff;
    font-family: var(--ff-secondary);
    font-size: 1rem;
    font-weight: 100;
    border-radius: 1rem;
    border: none;
    box-shadow: none;
    padding: 1rem;
}
.btn-primary:hover{
    background-color: var(--secondary-hover-clr);
}
.btn-primary:is(:focus,:active,:focus-visible){
    box-shadow: none;
    border: none;
    background-color: var(--secondary-hover-clr);
}
.link-text{
    font-family: var(--ff-secondary);
    text-decoration: none;
    color: var(--secondary-heading-clr);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}
.link-text:hover{
    color: var(--secondary-hover-clr);
}
/* Navbar styling */

.wrapper {
    position: relative;
}

.nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: radial-gradient(rgba(0, 0, 0, 0) 1px, #fff 1px);
    background-size: 3px 3px;
    backdrop-filter: brightness(100%) blur(8px);

}

.navbar-brand,
.footer-brand {
    width: 200px;
    height: 80px;
}

.navbar .offcanvas-body .navbar-nav .nav-link {
    font-family: var(--ff-secondary);
    font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, .9rem);
    font-weight: 500;
}

.navbar .offcanvas-body .navbar-nav .nav-link.active {
    color: var(--primary-heading-clr);
}

.navbar .offcanvas-body .navbar-nav .dropdown .dropdown-menu {
    border-radius: 10px;
    padding: 16px 12px 22px 12px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: none;

}

.navbar .offcanvas-body .navbar-nav .dropdown .dropdown-menu .dropdown-item {
    font-family: var(--ff-primary);
    font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, .9rem);
    font-weight: 100;
    color: var(--primary-heading-clr);
}

.navbar .offcanvas-body .navbar-nav .dropdown .dropdown-menu .dropdown-item:is(:hover, :focus) {
    border-radius: 10px;
}

.navbar .offcanvas-body .navbar-nav .dropdown .dropdown-menu .dropdown-item:active {
    background: var(--primary-clr);
    color: #fff !important;
    border-radius: 10px;
}

.cta-button {
    overflow: hidden;
}

.cta-button .cta-btn {
    border: 1px solid var(--primary-heading-clr);
    text-decoration: none;
    font-family: var(--ff-secondary);
    font-size: clamp(0.75rem, 0.6759rem + 0.3704vw, .9rem);
    font-weight: 500;
    padding: 10px 38px;
    color: var(--primary-heading-clr);
    border-radius: 16px;
    transition: all 0.3s ease-in-out;

}
.cta-button a{
    text-decoration: none;
}

.cta-button .cta-btn:hover {
    background-color: var(--secondary-heading-clr);
    border: 1px solid var(--secondary-heading-clr);
    border-radius: 16px;
}

.cta-button i {
    font-size: 2rem;
    color: var(--secondary-clr);
    transition: color.3s ease-in-out;
    transform: translateY(-70px);
}

.cta-button i:hover {
    color: var(--secondary-heading-clr);
    cursor: pointer;
}

.navbar-light .navbar-toggler {
    color: var(--primary-heading-clr);
    border: none;
}

.navbar-light .navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width:992px) {
    .cta-button .cta-btn, 
    .cta-button .cta-btn:is(:hover,:focus) {
        border: none;
        width: 100%;
        padding: 0.5rem 0;
        background-color: transparent;
        border-radius: 0;
        color: var(--secondary-heading-clr);
    }
}

.footer-area {
    background: var(--primary-clr);
    margin: 1rem;
    border-radius: 24px;
}

.social-icons ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    align-items: center;
    padding-inline-start: 0px;
}

.social-icons ul li {
    background: rgba(255, 255, 255, 0.12);
    padding: 6px;
    border-radius: 50%;


}

.social-icons ul li .icon {
    width: 22px;
    height: 22px;
    fill: var(--secondary-clr);
    transition: all 0.3s ease-in-out;
}

.social-icons ul li a:hover .icon {
    fill: var(--secondary-heading-clr);
}

.footer-area .footer-text {
    color: rgba(234, 251, 255, 0.60);
    font-weight: 100;
    font-size: .8rem;
}

.links-head,
.links-content {
    font-family: var(--ff-primary);
}

.links-head {
    color: #fff;
    font-size: 14px;
}

.links-content li {
    padding-bottom: 5px;
}

.links-content li a {
    color: rgba(234, 251, 255, 0.60);
    text-decoration: none;
    font-weight: 100;
    font-size: 14px;
    transition: all 0.3s ease-in-out;

}

.links-content li a:hover {
    color: #fff;
}

.custom-bx {
    font-size: 18px;
    vertical-align: middle;
    padding-right: 5px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    border-top: 1px solid rgba(240, 144, 67, 0.30);
}

.footer-bottom img {
    width: 120px;
}

.footer-bottom p {
    font-family: var(--ff-secondary);
    color: rgba(234, 251, 255, 0.60);
    margin-bottom: 0;
    font-style: normal;
    font-weight: 100;
    font-size: 12px;
}

/* Hero section */
body {
    --key-point-gap: 110px;
    --key-point-gap-sm: 50px;
    --border-padding: 3rem;
    background-image: url(../images/hero-bg.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-size: 100% calc(100vh + 100px);
}

.hero-section {
    /* height: 100vh; */
    background-image: url(../images/church.png);
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 100%;
    background-position-y: -100px; 
    /* background-position-x:150px; */

}
.bg-layer{
    background-color: #ffffffcc;
    border-radius: 1rem;
}

.hero-section h2 {
    color: var(--primary-heading-clr);
    font-size: clamp(2.125rem, 2.0139rem + 0.5556vw, 2.5rem);
    /*padding-top: 100px;*/
}

.hero-section h2 span {
    color: var(--secondary-heading-clr);
    font-family: var(--ff-secondary);
}

.hero-section p{
    color: var(--primary-text-clr);
    font-size: clamp(0.95rem, 0.6759rem + 0.3704vw, 1rem);
    font-weight: 100;
    /* max-width: 60%; */
}
.hero-section .two-col-list li{
    color: var(--primary-text-clr);
    font-size: clamp(0.95rem, 0.6759rem + 0.3704vw, 1rem);
    font-weight: 100;
}

.solution-effect {
    display: flex;
    gap: 2rem;
    /* align-items: center; */
}

.solution-effect i {
    font-size: 24px;
    color: var(--primary-heading-clr);
}

.solution-effect .text-container {
    position: relative;
    width: 100%;
    /* height: 25px;
    overflow: hidden; */

}

.solution-effect .text-item {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(100%);
    /* Initially, move text items down */
    width: 100%;
    /* Make text items full width of container */
    /* text-align: center; */
    /* margin: 10px 0; */
    transition: opacity 0.4s;
    text-decoration: none;
    color: var(--primary-heading-clr);
    font-size: clamp(1.125rem, 1.088rem + 0.1852vw, 1.25rem);
}

.solution-effect .text-item span {
    color: var(--secondary-heading-clr);
}

.custom-container {
    background: var(--primary-clr);
    padding: 0 var(--border-padding);
    border-radius: 24px;
    transform: translateY(var(--key-point-gap));

}

.key-points {
    text-align: center;
    padding: var(--border-padding);
}

.key-points p {
    max-width: 100%;
    margin-bottom: 0;
    color: var(--secondary-text-clr);
    font-size: 14px;
    font-weight: lighter;
    line-height: 30px;
    /*border-right: 1.5px solid rgba(240, 144, 67, 0.20);*/
    padding-right: var(--border-padding);
}

.custom-container .row .col-12:last-child .key-points p {
    border: none;
    padding-right: 0;
}

/* Media query for hero-section */

@media (max-width:922px) {
    .hero-section {
        background-image: none;
    }

    .hero-section h2 {
        padding: 1rem;
    }

    .hero-section p {
        max-width: 100%;
    }

    body {
        background: linear-gradient(180deg, #EAFBFF 9.1%, #FFF 97.38%);
    }

    .custom-container {
        transform: translateY(var(--key-point-gap-sm));
        padding: 0 1rem;
    }

    .key-points {
        padding: 1rem;
    }

    .key-points p {
        border-bottom: 1.5px solid rgba(240, 144, 67, 0.20);
        padding-bottom: var(--border-padding);
        padding-right: 0;
        border-right: none;
    }
}

/* Solution-suite section */

.dummy-space {
    height: var(--key-point-gap);
}

.sol-img {
    width: 80%;
    margin-inline: auto;
}

.sol-content h4,
.slider-content h4 {
    font-size: clamp(1.5rem, 1.2778rem + 1.1111vw, 2.25rem);
    font-style: normal;
    font-weight: 500;
    color: var(--primary-heading-clr);
    text-transform: capitalize;
}

.sol-content h4 span {
    color: var(--secondary-heading-clr);
}

.sub-head {
    margin-bottom: .5rem;
    color: var(--secondary-heading-clr);
}

.sol-content-rgt {
    padding: 1rem;
    border-radius: 24px;
    background: #FFF;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.04);
    margin-bottom: 1.5rem;
}

.sol-content-rgt .digit {
    color: var(--secondary-heading-clr);
    border-radius: 5px;
    background: #FCE9D9;
    padding: 5px 10px;
    width: min-content;
}

.sol-content-rgt h6 {
    font-weight: 600;
    color: var(--primary-heading-clr);
    text-transform: capitalize;
    margin-bottom: 0;
}

.req-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding-inline-start: 0px;
}

.req-list li {
    display: flex;
    gap: 1rem;
    border-radius: 15px;
    background: #FFF;
    padding: 1rem;
    /* church/shadow 1 */
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.04);

}

.req-list li img {
    width: 28px;
    height: 28px;
}

.req-list li p {
    font-weight: 100;
    margin-block-end: 0;

}

/* Slider styling */

.slider-content {
    margin: 0 5rem;
}

.church-card {
    text-align: center;
    background-color: #fff;
    padding: 1rem;
    border-radius: 18px;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.04);
    /* min-width: 300px; */

}

.church-card h6 {
    text-transform: capitalize;
    color: var(--primary-heading-clr);
    font-weight: 500;
    margin: 10px;
    font-size: 1.2rem;
}

.church-card p {
    font-size: 12px;
    margin: 0;
    padding: 0;
}

.church-card img {
    width: 400px !important;
    height: 200px;
    border-radius: 18px;

}

.slider .owl-stage {
    padding: 2rem 0;
}

.slider-bg {
    position: relative;
}

.slider-bg::after {
    content: '';
    position: absolute;
    width: 80%;
    height: 100%;
    top: 0;
    right: 0;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    background: linear-gradient(283deg, #FFF6F0 9.1%, #FFF5EF 97.38%);
}

@media (max-width:500px) {
    .slider-content {
        margin: 1rem 2rem;
    }
}

/* Login /Signup modal section */

.modal-content {
    padding: 36px;
    border-radius: 24px;
    border: none;
}

.modal-title-head h5 {
    font-size: clamp(1.4375rem, 1.0116rem + 2.1296vw, 1.875rem);
    font-weight: 600;
}

.modal-title-head p {
    font-size: 14px;
    padding: 0;
}

.label-text {
    font-size: 14px;
}

.form-input {
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--neutral-300, #E0E2E6);
    background: var(--neutral-100, #F8F9FB);
}
.form-box:has(.form-icon) .form-input{
    padding-left: 2.5rem;
}
.form-input::placeholder{
    font-size: 14px;
    font-weight: 100;
    color: var(--neutral-500, #A0A5B1);
}
.form-box{
    position: relative;
}
.form-box .form-icon{
    top: 60%;
    position: absolute;
    left: 10px;
}

/* Page Banner */

.page-banner {
    background-image: url(../images/page-banner.png);
    background-image: url(../images/page-banner.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.banner-content{
    text-align: center;
    padding: 5rem 0;
}
.banner-content h2{
    color: var(--primary-heading-clr);
    font-size: clamp(2.125rem, 2.0139rem + 0.5556vw, 2.5rem);
}
.banner-content span{
    color: var(--secondary-heading-clr);
    font-family: var(--ff-secondary);
}
.banner-content img{
    width: 60px;
}

/* CRP section*/

.crp, .sol-img{
width:90%;
margin-inline: auto;
}
.heading{
  
    text-align:center;
    justify-content:center;
}

.works{
    color: var(--secondary-heading-clr);
}



.admin{
    background-color:white;
    border-radius:24px;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.04);
    max-width: 354px;
}

.strmline_admin{
    width:50px;
    height:50px;
}
.stream_admin_content{
    font-weight:600;
}

.finance{
    background-color:white;
    border-radius:24px;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.04);
    max-width: 554px;
}

.crp_text{
    color: var(--secondary-heading-clr);
}


.feature-text{
    color: var(--primary-text-clr);
    font-size: clamp(0.95rem, 0.6759rem + 0.3704vw, 1rem);
    font-weight: 100;
    padding-top: 1rem;
   max-width:85%;
   margin-inline:auto;
}

/*.dashboard{
    background-color:rgb(236, 143, 143);
    border-radius:24px;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.04);
  
}*/

.tick{
    width: 34px;
    height: 34px;
}

.cards_tick{
    width: 25px;
    height: 25px;
}

.sub_text{
    color:white;
    font-weight: 400;
}

.feature_section{
    font-weight:100;
    width:225px;
   
}

.dashboard{
    background-color:rgb(109, 39, 39);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
}
.col_dashboard{
    background-color:rgb(255, 255, 255);
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.04);
    border-radius: 43px;
    align-items: center;
}

.elevate{
    color: var(--secondary-heading-clr);
}

.custom_text{
    font-weight: 600;
    max-width:59%;
    margin-inline: auto;
}

.change_text_color{
    font-weight: 600;
}
.elevate_text{
    color: var(--primary-text-clr);
    font-size: clamp(0.95rem, 0.6759rem + 0.3704vw, 1rem);
    font-weight: 100;
    padding-top: 1rem;
    margin-inline:auto;
}



@media (max-width: 765px) {
    .custom_text {
        max-width:100%;
    }
}


.custom_head{
    font-weight:600;
}

.eff_admin{
    background-color: white;
    border-radius:24px;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.04);
    padding: 1rem;
    height: 100%;
}

/* Church Automation Section */

.chruch-features{
    background-color: #07272E;
    border-radius: 24px;
    position: relative;
    background-image: url('../images/logo-bg.png');
    background-repeat: no-repeat;
    background-size: 22%;
    background-position: top left;

}

 .card_bg{
    background-color:#11343c;
    height:100%;
} 

.church_text{
    color:white;
}

.base_text_light{
    color:var(--neutral-500);
    width: 48%;
    margin-inline: auto;
}

.highlights {
    font-weight:600;
}
.remove_dot{
    list-style: none;
    padding-inline-start:0;
}



/* WEB PLATFORM SECTION */

.web_pltfrm_text{
    font-weight:600;
}
.custom_head{
    text-align:center;
   
}

.web_base_text{
    
    margin-inline:auto;
    text-align: center;
}

.col_features{
    background-color:#12343D;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.04);
    border-radius: 43px;
    align-items: center;
}


.web_fetures_text{
    font-weight:100;
    width:225px;
    color:white;
   
}

.img_rectangle{
   text-align:center;
   width:600px;
   position: absolute;
   position: absolute;
    bottom: -220px;
    /* margin-inline: auto; */
    left: 50%;
    transform: translateX(-50%);


}
.custom-padding{
    padding-bottom: 150px !important;
    margin-top: 150px !important;
}
@media (max-width:610px){
    .img_rectangle{
        display: none;

    }
    .custom-padding{
        padding-bottom: 1rem !important;
        margin-top: 1rem !important;

    }
}

/*End of web platform section*/


/* Clients Section*/

.client-text{
color: var(--primary-text-clr);
font-size: clamp(0.95rem, 0.6759rem + 0.3704vw, 1rem);
font-weight: 100;

}

.rak_church{

    /*border: 1px solid #ddd; */
    border-radius: 17px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    height: 100%;
    
}

.rak_church_img{ 
    border-radius: 33px;
    width: 100%; 
    height: 250px; 
}

/* Contact Section */

.custom_address{
   
    border-bottom-left-radius: 24px;
    border-top-left-radius: 24px;
    /* border-radius: 24px; */
    background-color: #07272E;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.address{
  
    padding: 39px;
   
}

.global_delivery{
    background-color: #12343D;
    border-radius: 15px;
    padding: 24px;
    font-weight: 100;
}

.sub_address{
    color: rgba(234, 251, 255, 0.60);
 
}


.sub_address_location{
    color: rgba(234, 251, 255, 0.60);

}

.custom-bx-phone {
    font-size: 18px;
    vertical-align: middle;
    padding-right: 5px;
    color: rgba(234, 251, 255, 0.60);
}

.logo_icons{
    background-color:#07272E;
  
}


.form_section{
    background:white;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.04);
    border-bottom-right-radius: 24px;
    border-top-right-radius: 24px;
}


.form-base-text{
    color: var(--primary-text-clr);
    font-size: clamp(0.95rem, 0.6759rem + 0.3704vw, 1rem);
    font-weight: 100;
    padding-top: 1rem;
    max-width: 42%;
}
@media(max-width:768px){
    .form-base-text{
        max-width: 100%;
    }
}

.form_section label{

    color: var(--primary-text-clr);
}

.submit_button{
    width:155px;

}

.custom_submit{
    display: flex;
     justify-content:flex-end;
}

.custom_form-input{
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid var(--neutral-300, #E0E2E6);
    /* font-size: 14px; */
}


/* Mobile App Section */

.sol-content-mobile-app h4{
    font-size: clamp(1.5rem, 1.2778rem + 1.1111vw, 2.25rem);
    font-style: normal;
    font-weight: 500;
    color: var(--primary-heading-clr);
    text-transform: capitalize;
}

.mobile_app, .sol-img{
    width:90%;
    margin-inline: auto;
    }

    .base_text_mobile_light{
    color: var(--neutral-500);
    width: 100%;
    margin-inline: auto;
    }

.btn_section{
    background-color:rgb(255, 255, 255);
   border-radius:24px;
}

.and_ios_btn{
    background-color:rgb(255, 255, 255);

}
.custom-btn {
    width: 150px; 
    height: 50px;
    display: inline-flex;
    font-size: 1rem;
    align-items: center;
    padding: 10px 15px 10px 7px;
    background-color: #07272E;
    color: #fff;
    border: none;
    border-radius: 25px;
  

   /* background-color:#07272E;

    color: #fff;
    font-family: var(--ff-secondary);
    font-size: 1rem;
    font-weight: 100;
    border-radius: 2rem;
    border: none;
    box-shadow: none;
    padding: 1rem;*/
}

.and_img{
    width:34px;
    height:34px;
}

.admin_control{
    background-color: #12343D;
    border-radius:24px;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.04);
    padding: 1rem;
    height: 100%;
}

.admin_ctrl_head{
    font-weight:600;
    color:white;
}

.custom-col {
    width: 50%; /* Adjust the width as needed */
}

/*Pricing page styling*/

.price-card .price{
    background:#FFFCFA;
    width: fit-content;
    padding: 8px 10px;
    border-radius: 10px;
}


.grid-view{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 1rem;
}
@media(max-width:768px){
    .grid-view{
        display:block;
    }

}

/* ───── Feature Card ───── */
    .feature-card {
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: 18px;
      padding: 2rem 1.75rem;
      height: 100%;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      border-radius: 18px 18px 0 0;
      background: var(--card-accent, var(--primary));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 48px rgba(26,86,219,.12);
      border-color: transparent;
    }

    .feature-card:hover::before {
      transform: scaleX(1);
    }

    /* Icon bubble */
    .feature-icon-wrap {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
      background: var(--icon-bg, var(--primary-light));
      color: var(--icon-color, var(--primary));
      flex-shrink: 0;
    }

    .feature-card h5 {
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--text-dark);
      margin-bottom: .5rem;
    }

    .feature-card p {
      font-size: .88rem;
      color: var(--text-muted);
      line-height: 1.65;
      margin: 0;
      font-weight: 100;
    }

    /* Tag pill */
    .feature-tag {
      display: inline-block;
      font-size: .72rem;
      font-weight: 700;
      padding: .2rem .65rem;
      border-radius: 50px;
      margin-top: 1rem;
      background: var(--icon-bg, var(--primary-light));
      color: var(--icon-color, var(--primary));
    }