*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:sans-serif;
    color:#071a3c;
    background:#fff;
    overflow-x:hidden;
}

a{
    color:inherit;
    text-decoration:none;
}

button{
    font:inherit;
}

.ku-header{
    width:100%;
    height:88px;
    background:#fff;
    border-bottom:1px solid #edf2f8;
    position:relative;
    z-index:1000;
}

.ku-header-inner{
    /*width:min(1180px,calc(100% - 40px));*/
    height:100%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.ku-logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.ku-logo img{
    width:205px;
    height:auto;
    display:block;
}

.ku-navigation{
    height:100%;
    display:flex;
    align-items:center;
    gap:29px;
}

.ku-navigation>a{
    height:100%;
    display:flex;
    align-items:center;
    position:relative;
    font-size:16px;
    font-weight:750;
    color:#101828;
    white-space:nowrap;
}

.ku-navigation>a:not(.ku-buy-btn)::after{
    content:"";
    position:absolute;
    left:0;
    bottom:20px;
    width:0;
    height:2px;
    background:#0647b7;
    transition:width .2s ease;
}

.ku-navigation>a:hover::after,
.ku-navigation>a.active::after{
    width:100%;
}

.ku-navigation>a.active{
    color:#0647b7;
}

.ku-buy-btn{
    height:auto!important;
    padding:13px 21px;
    border-radius:8px;
    color:#fff!important;
    background:#0647b7;
    box-shadow:0 10px 25px rgba(6,71,183,.18);
}

.ku-buy-btn span{
    margin-left:8px;
    font-size:15px;
}

.ku-menu-toggle{
    display:none;
    width:43px;
    height:43px;
    border:0;
    background:#f1f6ff;
    border-radius:8px;
    cursor:pointer;
}

.ku-menu-toggle span{
    display:block;
    width:23px;
    height:2px;
    background:#0647b7;
    margin:5px auto;
}


/* HERO */

.ku-hero{
    min-height:610px;
    position:relative;
    overflow:hidden;
    background:linear-gradient(110deg,#ffffff 0%,#eef5ff 53%,#f9fcff 100%);
}

.ku-hero-bg-circle{
    width:680px;
    height:680px;
    position:absolute;
    right:2%;
    top:50%;
    transform:translateY(-50%);
    border-radius:50%;
    background:
        radial-gradient(circle at 50% 45%,
        #d4e7ff 0%,
        #e9f3ff 45%,
        rgba(244,249,255,.35) 65%,
        transparent 72%);
}

.ku-hero-pattern{
    width:330px;
    height:330px;
    position:absolute;
    right:3%;
    top:30px;
    opacity:.23;
    background-image:radial-gradient(#4384d7 1.5px,transparent 1.5px);
    background-size:18px 18px;
    mask-image:linear-gradient(135deg,#000,transparent 75%);
}

.ku-hero-blue-shape{
    position:absolute;
    left:-170px;
    bottom:-250px;
    width:520px;
    height:430px;
    border-radius:50%;
    background:#d9e9ff;
    opacity:.65;
}

.ku-slider{
    position:relative;
    z-index:10;
}

.ku-slide{
    display:none;
    min-height:610px;
}

.ku-slide.active{
    display:block;
}

.ku-hero-content{
    /*width:min(1180px,calc(100% - 40px));*/
    min-height:610px;
    margin:auto;
    display:grid;
    grid-template-columns:50% 50%;
    align-items:center;
}

.ku-hero-copy{
    position:relative;
    z-index:20;
    padding:40px 0 50px;
}

.ku-small-label{
    color:#0647b7;
    font-size:11px;
    letter-spacing:2.2px;
    font-weight:850;
    margin-bottom:13px;
}

.ku-hero-copy h1,
.ku-hero-copy h2{
    font-size:54px;
    line-height:1.07;
    letter-spacing:-2.3px;
    color:#06429f;
    font-weight:850;
}

.ku-hero-copy h1 span,
.ku-hero-copy h2 span{
    color:#111827;
}

.ku-hero-copy p{
    max-width:530px;
    margin-top:20px;
    color:#203b68;
    font-size:16px;
    line-height:1.65;
}

.ku-hero-buttons{
    display:flex;
    align-items:center;
    gap:14px;
    margin-top:26px;
}

.ku-primary-btn,
.ku-secondary-btn{
    min-height:51px;
    padding:0 21px;
    border-radius:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:800;
    transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}

.ku-primary-btn{
    color:#fff;
    background:#0647b7;
    box-shadow:0 13px 28px rgba(6,71,183,.2);
}

.ku-primary-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 32px rgba(6,71,183,.27);
}

.ku-primary-btn strong{
    margin-left:12px;
    font-size:20px;
}

.ku-secondary-btn{
    color:#0647b7;
    border:1.5px solid #1458bd;
    background:rgba(255,255,255,.4);
}

.ku-secondary-btn:hover{
    background:#fff;
    transform:translateY(-2px);
}

.ku-stat-card{
    width:min(100%,520px);
    margin-top:31px;
    padding:17px 8px;
    border-radius:14px;
    background:rgba(255,255,255,.96);
    box-shadow:0 16px 42px rgba(18,55,110,.13);
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.ku-stat-item{
    min-height:92px;
    padding:0 8px;
    text-align:center;
    border-right:1px solid #e5ebf4;
}

.ku-stat-item:last-child{
    border-right:0;
}

.ku-stat-icon{
    height:30px;
    display:grid;
    place-items:center;
    color:#0647b7;
    font-size:24px;
}

.ku-stat-item strong{
    display:block;
    color:#0647b7;
    font-size:24px;
    line-height:1.15;
}

.ku-stat-item span{
    display:block;
    margin-top:5px;
    color:#52627a;
    font-size:14px;
}


/* HERO VISUAL */

.ku-hero-visual{
    height:610px;
    position:relative;
    /*display:flex;*/
    align-items:flex-end;
    justify-content:center;
}

.ku-visual-ring{
    position:absolute;
    left:50%;
    top:50%;
    border-radius:50%;
    transform:translate(-43%,-48%);
    pointer-events:none;
}

.ring-one{
    width:590px;
    height:590px;
    background:linear-gradient(135deg,#c7dfff,#eaf4ff);
}

.ring-two{
    width:620px;
    height:620px;
    border:1px solid rgba(54,117,204,.14);
}

.ku-blue-orb{
    position:absolute;
    z-index:3;
    border-radius:50%;
    background:#68a1ed;
    box-shadow:0 5px 14px rgba(57,120,208,.12);
}

.orb-one{
    width:19px;
    height:19px;
    left:18%;
    top:22%;
}

.orb-two{
    width:13px;
    height:13px;
    right:15%;
    bottom:26%;
}

.ku-hero-person{
    position:relative;
    z-index:8;
    width:700px;
    max-width:125%;
    height:auto;
    max-height:600px;
    object-fit:contain;
    object-position:center bottom;
    display:block;
    filter:drop-shadow(0 18px 28px rgba(0,49,120,.13));
}

.ku-building-line{
    position:absolute;
    z-index:2;
    right:4%;
    top:24%;
    color:#a4c4ed;
    font-size:120px;
    opacity:.32;
}

.ku-slider-arrow{
    position:absolute;
    z-index:50;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border:0;
    border-radius:50%;
    background:#c8dbf5;
    color:#0647b7;
    font-size:37px;
    line-height:1;
    display:grid;
    place-items:center;
    cursor:pointer;
    transition:.2s ease;
}

.ku-slider-arrow:hover{
    background:#0647b7;
    color:#fff;
}

.ku-slider-prev{
    left:24px;
}

.ku-slider-next{
    right:24px;
}

.ku-slider-dots{
    position:absolute;
    z-index:70;
    bottom:17px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:9px;
}

.ku-slider-dots button{
    width:11px;
    height:11px;
    padding:0;
    border:0;
    border-radius:50%;
    background:#abb8cb;
    cursor:pointer;
    transition:.2s ease;
}

.ku-slider-dots button.active{
    width:28px;
    border-radius:10px;
    background:#0647b7;
}


/* FLOAT BUTTONS */

.ku-floating-contact{
    position:fixed;
    z-index:900;
    right:20px;
    bottom:28px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.ku-floating-contact a{
    width:50px;
    height:50px;
    border-radius:50%;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:21px;
    font-weight:800;
    box-shadow:0 9px 23px rgba(0,0,0,.16);
}

.ku-floating-contact a i.fa-whatsapp{
    font-size:30px;
}

.ku-floating-contact a i.fa-phone{
    font-size:25px;
}

.ku-whatsapp{
    background:#17bd58;
}

.ku-phone{
    background:#0647b7;
}


/* FOOTER */

.ku-footer{
    color:#fff;
    background:#06347f;
}

.ku-footer-main{
    /*width:min(1180px,calc(100% - 40px));*/
    margin:auto;
    padding:52px 0 38px;
    display:grid;
    grid-template-columns:1.45fr .8fr 1fr 1.1fr;
    gap:55px;
}

.ku-footer-column h3{
    font-size:18px;
    margin-bottom:18px;
}

.ku-footer-column>a{
    display:block;
    margin:6px 0;
    color:#eaf2ff;
    font-size:13px;
    line-height:1.7;
    transition:.2s ease;
}

.ku-footer-column>a:hover{
    color:#fff;
    transform:translateX(2px);
}

.ku-footer-about p{
    max-width:310px;
    color:#eaf2ff;
    font-size:16px;
    line-height:1.8;
    margin-top:17px;
}

.ku-footer-brand{
    display:flex;
    align-items:center;
    gap:11px;
    width:max-content;
}

.ku-footer-shield{
    width:45px;
    height:52px;
    border:2px solid #fff;
    border-radius:11px 11px 17px 17px;
    display:grid;
    place-items:center;
    font-size:24px;
    font-weight:900;
}

.ku-footer-brand strong{
    display:block;
    font-size:24px;
    letter-spacing:1px;
}

.ku-footer-brand small{
    display:block;
    font-size:8px;
    letter-spacing:5px;
    margin-left:3px;
}

.ku-footer-social{
    display:flex;
    gap:9px;
    margin-top:19px;
}

.ku-footer-social a{
    width:39px;
    height:39px;
    border:1px solid rgba(255,255,255,.65);
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#fff;
    font-weight:800;
}

.ku-contact-column p{
    color:#eaf2ff;
    font-size:13px;
    line-height:1.8;
    margin:8px 0;
}

.ku-contact-column p span{
    display:inline-block;
    width:28px;
    color:#fff;
}

.ku-footer-bottom{
    /*width:min(1180px,calc(100% - 40px));*/
    margin:auto;
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.2);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    color:#e3edff;
    font-size:12px;
}

.ku-footer-bottom>div{
    display:flex;
    gap:12px;
}

.ku-footer-bottom a:hover{
    color:#fff;
}


/* TABLET */

@media(max-width:1080px){

    .ku-navigation{
        gap:18px;
    }

    .ku-navigation>a{
        font-size:12px;
    }

    .ku-hero-copy h1,
    .ku-hero-copy h2{
        font-size:45px;
    }

    .ku-hero-person{
        width:640px;
    }
}


/* MOBILE NAV */

@media(max-width:820px){

    .ku-header{
        height:72px;
    }

    /*.ku-header-inner{*/
    /*    width:calc(100% - 30px);*/
    /*}*/

    .ku-logo img{
        width:175px;
    }

    .ku-menu-toggle{
        display:block;
    }

    .ku-navigation{
        display:none;
        position:absolute;
        left:15px;
        right:15px;
        top:72px;
        height:auto;
        padding:9px;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        background:#fff;
        border-radius:12px;
        box-shadow:0 22px 48px rgba(0,0,0,.13);
    }

    .ku-navigation.open{
        display:flex;
    }

    .ku-navigation>a:not(.ku-buy-btn){
        height:44px;
        padding:0 14px;
    }

    .ku-navigation>a:not(.ku-buy-btn)::after{
        bottom:4px;
        left:14px;
    }

    .ku-buy-btn{
        justify-content:center;
        margin:8px 0 2px;
    }

    .ku-hero{
        min-height:auto;
    }

    .ku-slide{
        min-height:auto;
    }

    .ku-hero-content{
        /*width:calc(100% - 30px);*/
        min-height:auto;
        display:flex;
        flex-direction:column;
    }

    .ku-hero-copy{
        width:100%;
        padding:38px 0 5px;
        text-align:center;
    }

    .ku-hero-copy p{
        margin:18px auto 0;
    }

    .ku-hero-buttons{
        justify-content:center;
    }

    .ku-stat-card{
        margin-left:auto;
        margin-right:auto;
    }

    .ku-hero-visual{
        width:100%;
        height:390px;
    }

    .ring-one{
        width:390px;
        height:390px;
            transform: translate(-50%, -50%);
    }

    .ring-two{
        width:410px;
        height:410px;
            transform: translate(-50%, -50%);
    }

    .ku-hero-person{
        width:min(650px,100%);
        max-height:390px;
    }

    .ku-slider-arrow{
        width:40px;
        height:40px;
        font-size:30px;
    }

    .ku-slider-prev{
        left:7px;
    }

    .ku-slider-next{
        right:7px;
    }

    .ku-footer-main{
        grid-template-columns:1fr 1fr;
        gap:35px;
    }

}


/* SMALL MOBILE */

@media(max-width:560px){

    .ku-hero-copy{
        padding-top:31px;
    }

    .ku-small-label{
        font-size:9px;
        letter-spacing:1.7px;
    }

    .ku-hero-copy h1,
    .ku-hero-copy h2{
        font-size:31px;
        line-height:1.12;
        letter-spacing:-1.1px;
    }

    .ku-hero-copy p{
        font-size:14px;
        line-height:1.6;
    }

    .ku-hero-buttons{
        width:100%;
        flex-direction:column;
    }

    .ku-primary-btn,
    .ku-secondary-btn{
        width:100%;
    }

    .ku-stat-card{
        padding:13px 3px;
    }

    .ku-stat-item{
        min-height:82px;
    }

    .ku-stat-item strong{
        font-size:21px;
    }

    .ku-stat-item span{
        font-size:9px;
    }

    .ku-stat-icon{
        font-size:18px;
    }

    .ku-hero-visual{
        height:315px;
    }

    .ring-one{
        width:315px;
        height:315px;
    }

    .ring-two{
        width:330px;
        height:330px;
    }

    .ku-hero-person{
        max-height:315px;
    }

    .ku-building-line{
        display:none;
    }

    .ku-floating-contact{
        right:12px;
        bottom:18px;
        gap:7px;
    }

    .ku-floating-contact a{
        width:38px;
        height:38px;
    }
    .ku-floating-contact a i.fa-whatsapp{
    font-size:25px;
}

.ku-floating-contact a i.fa-phone{
    font-size:18px;
}
    

    .ku-footer-main{
        grid-template-columns:1fr;
        gap:30px;
        padding-top:40px;
    }

    .ku-footer-bottom{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }

    .ku-footer-bottom>div{
        flex-wrap:wrap;
        justify-content:center;
    }

}


/* =========================================================
   WHY CHOOSE KAKATIYA UNIFORMS
   ========================================================= */

.why-choose-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0px;
    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 45%,
            #f7faff 100%
        );
}


/* ---------------------------------------------------------
   BACKGROUND SHAPES
   --------------------------------------------------------- */

.why-choose-bg-shape {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(2px);
}

.why-shape-one {
    width: 430px;
    height: 430px;
    top: -220px;
    left: -220px;
    background: rgba(0, 51, 158, 0.045);
}

.why-shape-two {
    width: 350px;
    height: 350px;
    right: -180px;
    bottom: -170px;
    background: rgba(38, 111, 255, 0.055);
}


/* ---------------------------------------------------------
   CONTAINER
   --------------------------------------------------------- */

.why-choose-section .container {
    position: relative;
    z-index: 2;
    /*width: min(1180px, calc(100% - 40px));*/
    margin: 0 auto;
}


/* ---------------------------------------------------------
   HEADING
   --------------------------------------------------------- */

.why-choose-heading {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.why-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 15px;

    color: #00339e;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.why-eyebrow-line {
    width: 34px;
    height: 1px;
    background: #00339e;
    opacity: 0.45;
}

.why-choose-heading h2 {
    margin: 0;

    color: #101b35;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 750;
    letter-spacing: -1.5px;
}

.why-choose-heading h2 span {
    color: #00339e;
}

.why-choose-heading p {
    max-width: 620px;
    margin: 17px auto 0;

    color: #667085;
    font-size: 16px;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   GRID
   --------------------------------------------------------- */

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* ---------------------------------------------------------
   FEATURE CARD
   --------------------------------------------------------- */

.why-feature-card {
    position: relative;
    min-height: 310px;
    padding: 27px 27px 25px;

    overflow: hidden;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid #e7edf7;
    border-radius: 20px;

    box-shadow:
        0 10px 35px rgba(22, 47, 87, 0.055);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* Top blue line */

.why-feature-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 27px;
    right: 27px;

    height: 3px;

    background: linear-gradient(
        90deg,
        #00339e,
        #2875e8
    );

    border-radius: 0 0 8px 8px;

    transform: scaleX(0.35);
    transform-origin: left;

    transition: transform 0.35s ease;
}


/* Soft background glow */

.why-feature-card::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    bottom: -80px;

    border-radius: 50%;

    background: rgba(0, 51, 158, 0.055);

    transition: transform 0.35s ease;
}


.why-feature-card:hover {
    transform: translateY(-7px);

    border-color: rgba(0, 51, 158, 0.2);

    box-shadow:
        0 20px 45px rgba(0, 51, 158, 0.11);
}


.why-feature-card:hover::before {
    transform: scaleX(1);
}


.why-feature-card:hover::after {
    transform: scale(1.25);
}


/* ---------------------------------------------------------
   CARD TOP
   --------------------------------------------------------- */

.why-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 24px;
}


.why-card-number {
    color: #c6d0e1;

    font-size: 13px;
    font-weight: 750;
    letter-spacing: 1px;
}


/* ---------------------------------------------------------
   ICON
   --------------------------------------------------------- */

.why-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    color: #00339e;

    background:
        linear-gradient(
            145deg,
            #eef5ff,
            #ffffff
        );

    border: 1px solid #dbe7fb;
    border-radius: 15px;

    box-shadow:
        0 7px 20px rgba(0, 51, 158, 0.07);

    font-size: 21px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.why-feature-card:hover .why-feature-icon {
    transform: translateY(-3px) rotate(-3deg);

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #00339e,
            #2369d9
        );

    border-color: transparent;
}


/* ---------------------------------------------------------
   CARD CONTENT
   --------------------------------------------------------- */

.why-card-content {
    position: relative;
    z-index: 2;
}


.why-card-content h3 {
    /*max-width: 290px;*/

    margin: 0 0 12px;

    color: #00339e;

    font-size: 22px;
    line-height: 1.3;
    font-weight: 750;
}


.why-card-content p {
    margin: 0;

    color: #697586;

    font-size: 16px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   CARD ARROW
   --------------------------------------------------------- */

.why-card-arrow {
    position: absolute;

    right: 25px;
    bottom: 24px;

    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    color: #00339e;

    border: 1px solid #e0e8f5;
    border-radius: 50%;

    background: #ffffff;

    font-size: 10px;

    opacity: 0;

    transform: translateY(7px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.why-feature-card:hover .why-card-arrow {
    opacity: 1;
    transform: translateY(0);
}


/* ---------------------------------------------------------
   LAST CARD
   --------------------------------------------------------- */

.why-feature-highlight {
    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f1f6ff 100%
        );
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 991px) {

    .why-choose-section {
        padding: 40px 0px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-feature-card {
        min-height: 295px;
    }

}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {

    .why-choose-section {
        padding: 40px 0px;
    }

    /*.why-choose-section .container {*/
    /*    width: min(100% - 30px, 600px);*/
    /*}*/

    .why-choose-heading {
        margin-bottom: 38px;
    }

    .why-eyebrow {
        font-size: 9px;
        letter-spacing: 1.5px;
        gap: 8px;
    }

    .why-eyebrow-line {
        width: 22px;
    }

    .why-choose-heading h2 {
        font-size: 31px;
        letter-spacing: -0.8px;
    }

    .why-choose-heading p {
        margin-top: 13px;
        font-size: 13px;
        line-height: 1.65;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-feature-card {
        min-height: auto;
        padding: 23px 21px 25px;
        border-radius: 17px;
    }

    .why-feature-card::before {
        left: 21px;
        right: 21px;
    }

    .why-card-top {
        margin-bottom: 19px;
    }

    .why-feature-icon {
        width: 49px;
        height: 49px;
        border-radius: 13px;
        font-size: 19px;
    }

    .why-card-content h3 {
        max-width: 85%;
        font-size: 17px;
        line-height: 1.35;
    }

    .why-card-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .why-card-arrow {
        right: 20px;
        bottom: 21px;
        opacity: 1;
        transform: none;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
   --------------------------------------------------------- */

@media (max-width: 400px) {

    .why-choose-section {
        padding: 40px 0px;
    }

    .why-choose-heading h2 {
        font-size: 28px;
    }

    .why-feature-card {
        padding: 21px 18px 23px;
    }

    .why-feature-card::before {
        left: 18px;
        right: 18px;
    }

    .why-card-content h3 {
        font-size: 16px;
    }

    .why-card-content p {
        font-size: 12.5px;
    }

}

/* =========================================================
   KAKATIYA UNIFORMS
   ABOUT SECTION
   ========================================================= */

.ku-about-section {
    position: relative;
    overflow: hidden;

    padding: 60px 0px;

    color: #ffffff;

    background: #071d50;
}


/* =========================================================
   BACKGROUND IMAGE
   ========================================================= */

.ku-about-bg {
    position: absolute;
    inset: 0;

    background-image:
        url("https://images.unsplash.com/photo-1588072432836-e10032774350?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.02);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.ku-about-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            110deg,
            rgba(0, 27, 82, 0.96) 0%,
            rgba(0, 51, 158, 0.88) 45%,
            rgba(0, 24, 72, 0.90) 100%
        );
}


/* =========================================================
   DECORATIVE GLOW
   ========================================================= */

.ku-about-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -280px;
    right: -150px;

    border-radius: 50%;

    background: rgba(76, 143, 255, 0.16);

    filter: blur(5px);

    pointer-events: none;
}


.ku-about-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    left: -180px;
    bottom: -220px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 0 0 50px rgba(255, 255, 255, 0.025),
        0 0 0 100px rgba(255, 255, 255, 0.015);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.ku-about-container {
    position: relative;

    z-index: 3;

    /*width: min(1180px, calc(100% - 40px));*/

    margin: 0 auto;
}


/* =========================================================
   HEADING
   ========================================================= */

.ku-about-heading {
    text-align: center;

    margin-bottom: 40px;
}


.ku-about-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 15px;

    margin-bottom: 14px;

    color: #d9e8ff;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 2px;

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(8px);
}


.ku-about-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.12;

    font-weight: 750;

    letter-spacing: -1.5px;
}


.ku-about-heading h2 span {
    color: #8fc0ff;
}


.ku-about-heading-line {
    width: 60px;
    height: 3px;

    margin: 19px auto 0;

    background: #ffffff;

    border-radius: 50px;

    opacity: 0.75;
}


/* =========================================================
   INTRO CONTENT
   ========================================================= */

.ku-about-intro {
    position: relative;

    max-width: 930px;

    margin: 0 auto 55px;

    padding: 32px 48px 34px;

    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.14);

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.075);

    backdrop-filter: blur(12px);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.12);
}


.ku-about-intro::before {
    content: "";

    position: absolute;

    top: 0;
    left: 18%;

    width: 64%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.45),
            transparent
        );
}


.ku-about-quote-mark {
    position: absolute;

    left: 22px;
    top: 12px;

    color: rgba(255, 255, 255, 0.10);

    font-family: Georgia, serif;

    font-size: 100px;

    line-height: 1;

    pointer-events: none;
}


.ku-about-intro p {
    position: relative;

    z-index: 2;

    margin: 0;

    color: rgba(255, 255, 255, 0.90);

    font-size: 16px;

    line-height: 1.85;
}


.ku-about-intro strong {
    color: #ffffff;

    font-weight: 750;
}


/* =========================================================
   PANELS
   ========================================================= */

.ku-about-panels {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 24px;
}


/* =========================================================
   PANEL
   ========================================================= */

.ku-about-panel {
    position: relative;

    min-height: 290px;

    overflow: hidden;

    padding: 30px;

    border: 1px solid rgba(255, 255, 255, 0.16);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(245, 249, 255, 0.89)
        );

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.16);

    color: #14213d;
}


.ku-about-panel::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    bottom: -90px;

    border-radius: 50%;

    background: rgba(0, 51, 158, 0.055);

    transition: transform 0.35s ease;
}


.ku-about-panel:hover::before {
    transform: scale(1.25);
}


/* =========================================================
   PANEL HEADER
   ========================================================= */

.ku-about-panel-head {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 16px;

    padding-bottom: 15px;

    margin-bottom: 15px;

    border-bottom: 1px solid #e4eaf3;
}


.ku-about-panel-icon {
    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #00339e,
            #256bd8
        );

    border-radius: 15px;

    box-shadow:
        0 10px 25px rgba(0, 51, 158, 0.20);

    font-size: 20px;
}


.ku-about-panel-head span {
    display: block;

    margin-bottom: 3px;

    color: #7a879c;

    font-size: 10px;

    font-weight: 750;

    letter-spacing: 1.7px;
}


.ku-about-panel-head h3 {
    margin: 0;

    color: #00339e;

    font-size: 25px;

    font-weight: 750;
}


/* =========================================================
   PANEL CONTENT
   ========================================================= */

.ku-about-panel-content {
    position: relative;

    z-index: 2;
}


.ku-about-panel-content p {
    margin: 0;

    color: #4c5a70;

    font-size: 16px;

    line-height: 1.8;
}


.ku-about-panel-content strong {
    color: #00339e;
}


/* =========================================================
   MISSION LIST
   ========================================================= */

.ku-about-mission-list {
    display: flex;

    flex-direction: column;

    gap: 15px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.ku-about-mission-list li {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #4c5a70;

    font-size: 16px;

    line-height: 1.65;
}


.ku-mission-check {
    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    margin-top: 1px;

    color: #00339e;

    background: #eaf2ff;

    border: 1px solid #d4e3fc;

    border-radius: 50%;

    font-size: 9px;
}


/* =========================================================
   PANEL NUMBER
   ========================================================= */

.ku-panel-number {
    position: absolute;

    right: 24px;
    top: 22px;

    color: #dbe5f5;

    font-size: 48px;

    font-weight: 900;

    line-height: 1;

    pointer-events: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .ku-about-section {
        padding: 40px 0;
    }

    .ku-about-panels {
        grid-template-columns: 1fr 1fr;
    }

    .ku-about-panel {
        padding: 25px;
    }

    .ku-about-intro {
        padding: 28px 35px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .ku-about-section {
        padding: 40px 0px;
    }

    /*.ku-about-container {*/
    /*    width: min(100% - 30px, 600px);*/
    /*}*/


    .ku-about-heading {
        margin-bottom: 32px;
    }

    .ku-about-eyebrow {
        font-size: 8px;
        letter-spacing: 1.4px;
        padding: 6px 11px;
    }

    .ku-about-heading h2 {
        font-size: 31px;
        letter-spacing: -0.7px;
    }

    .ku-about-heading-line {
        width: 45px;
        height: 2px;
        margin-top: 15px;
    }


    /* Intro */

    .ku-about-intro {
        padding: 25px 20px;

        margin-bottom: 25px;

        border-radius: 17px;
    }

    .ku-about-intro p {
        font-size: 13px;
        line-height: 1.75;
    }

    .ku-about-quote-mark {
        left: 8px;
        top: 7px;
        font-size: 65px;
    }


    /* Panels */

    .ku-about-panels {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .ku-about-panel {
        min-height: auto;

        padding: 23px 20px;

        border-radius: 17px;
    }


    .ku-about-panel-head {
        gap: 13px;

        padding-bottom: 17px;

        margin-bottom: 18px;
    }

    .ku-about-panel-icon {
        width: 46px;
        height: 46px;

        border-radius: 13px;

        font-size: 17px;
    }

    .ku-about-panel-head span {
        font-size: 8px;
    }

    .ku-about-panel-head h3 {
        font-size: 21px;
    }


    .ku-about-panel-content p {
        font-size: 13px;

        line-height: 1.7;
    }


    .ku-about-mission-list {
        gap: 13px;
    }

    .ku-about-mission-list li {
        font-size: 12.5px;

        line-height: 1.65;
    }

    .ku-mission-check {
        width: 20px;
        height: 20px;

        font-size: 8px;
    }


    .ku-panel-number {
        right: 18px;
        top: 18px;

        font-size: 36px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .ku-about-section {
        padding: 40px 0px;
    }

    .ku-about-heading h2 {
        font-size: 28px;
    }

    .ku-about-intro {
        padding: 22px 17px;
    }

    .ku-about-intro p {
        font-size: 12.5px;
    }

    .ku-about-panel {
        padding: 20px 17px;
    }

    .ku-about-panel-head h3 {
        font-size: 19px;
    }

    .ku-about-mission-list li {
        font-size: 12px;
    }

}

/* =========================================================
   KAKATIYA UNIFORMS
   OUR SERVICES
   ========================================================= */

.ku-services-section {
    position: relative;
    overflow: hidden;

    padding: 60px 0px;

    background:
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 48%,
            #f5f9ff 100%
        );
}


/* =========================================================
   BACKGROUND SHAPES
   ========================================================= */

.ku-services-bg-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.ku-services-shape-1 {
    width: 430px;
    height: 430px;

    top: -220px;
    left: -180px;

    border: 1px solid rgba(0, 51, 158, 0.07);

    box-shadow:
        0 0 0 45px rgba(0, 51, 158, 0.025),
        0 0 0 90px rgba(0, 51, 158, 0.018);
}


.ku-services-shape-2 {
    width: 350px;
    height: 350px;

    right: -190px;
    bottom: -200px;

    background: rgba(0, 80, 190, 0.035);
}


/* =========================================================
   CONTAINER
   ========================================================= */

.ku-services-container {
    position: relative;

    z-index: 2;

    /*width: min(1180px, calc(100% - 40px));*/

    margin: 0 auto;
}


/* =========================================================
   HEADING
   ========================================================= */

.ku-services-heading {
    max-width: 720px;

    margin: 0 auto 40px;

    text-align: center;
}


.ku-services-eyebrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 7px 15px;

    margin-bottom: 14px;

    color: #00339e;

    background: #eaf2ff;

    border: 1px solid #d8e6fb;

    border-radius: 100px;

    font-size: 10px;

    font-weight: 750;

    letter-spacing: 2px;
}


.ku-services-heading h2 {
    margin: 0;

    color: #101f3d;

    font-size: clamp(35px, 4vw, 48px);

    line-height: 1.1;

    font-weight: 750;

    letter-spacing: -1.5px;
}


.ku-services-heading h2 span {
    color: #00339e;
}


.ku-services-title-line {
    width: 58px;
    height: 3px;

    margin: 18px auto 18px;

    background: #00339e;

    border-radius: 50px;
}


.ku-services-heading p {
    margin: 0 auto;

    color: #66748b;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   SERVICES GRID
   ========================================================= */

.ku-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.ku-service-card {
    position: relative;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e6ecf5;

    border-radius: 22px;

    box-shadow:
        0 10px 35px rgba(20, 53, 105, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.ku-service-card:hover {
    transform: translateY(-7px);

    border-color: #d2e0f5;

    box-shadow:
        0 22px 50px rgba(20, 53, 105, 0.14);
}


/* =========================================================
   IMAGE
   ========================================================= */

.ku-service-image-wrap {
    position: relative;

    height: 235px;

    overflow: hidden;

    background: #dce8f8;
}


.ku-service-img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.5s ease;
}


.ku-service-card:hover .ku-service-img {
    transform: scale(1.055);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.ku-service-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03) 25%,
            rgba(0, 22, 70, 0.70) 100%
        );
}


/* =========================================================
   NUMBER
   ========================================================= */

.ku-service-number {
    position: absolute;

    top: 17px;
    right: 17px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    color: #ffffff;

    background: rgba(0, 51, 158, 0.82);

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 13px;

    backdrop-filter: blur(8px);

    font-size: 13px;

    font-weight: 750;
}


/* =========================================================
   SERVICE ICON
   ========================================================= */

.ku-service-icon {
    position: absolute;

    left: 23px;
    bottom: 21px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 53px;
    height: 53px;

    color: #00339e;

    background: #ffffff;

    border-radius: 15px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15);

    font-size: 20px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.ku-service-content {
    position: relative;

    padding: 27px 25px 29px;
}


.ku-service-label {
    display: block;

    margin-bottom: 6px;

    color: #8491a5;

    font-size: 9px;

    font-weight: 750;

    letter-spacing: 1.6px;
}


.ku-service-content h3 {
    margin: 0;

    color: #00339e;

    font-size: 22px;

    line-height: 1.25;

    font-weight: 750;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.ku-service-divider {
    width: 38px;
    height: 2px;

    margin: 15px 0 18px;

    background: #00339e;

    border-radius: 50px;
}


/* =========================================================
   LIST
   ========================================================= */

.ku-service-list {
    display: flex;

    flex-direction: column;

    gap: 13px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.ku-service-list li {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #5a687d;

    font-size: 16px;

    line-height: 1.6;
}


.ku-service-check {
    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;

    margin-top: 1px;

    color: #00339e;

    background: #edf4ff;

    border: 1px solid #d9e7fb;

    border-radius: 50%;

    font-size: 8px;
}


/* =========================================================
   TOP ACCENT
   ========================================================= */

.ku-service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 3px;

    z-index: 5;

    background:
        linear-gradient(
            90deg,
            #00339e,
            #4e8de8,
            transparent
        );

    opacity: 0;

    transition: opacity 0.3s ease;
}


.ku-service-card:hover::before {
    opacity: 1;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .ku-services-section {
        padding: 40px 0px;
    }

    .ku-services-grid {
        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }

    .ku-service-card:last-child {
        grid-column: 1 / -1;

        max-width: 500px;

        width: 100%;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .ku-services-section {
        padding: 40px 0px;
    }

  

    .ku-services-heading {
        margin-bottom: 35px;
    }


    .ku-services-eyebrow {
        padding: 6px 12px;

        margin-bottom: 12px;

        font-size: 8px;

        letter-spacing: 1.5px;
    }


    .ku-services-heading h2 {
        font-size: 31px;

        letter-spacing: -0.7px;
    }


    .ku-services-title-line {
        width: 45px;

        height: 2px;

        margin: 14px auto 15px;
    }


    .ku-services-heading p {
        font-size: 12.5px;

        line-height: 1.7;
    }


    .ku-services-grid {
        grid-template-columns: 1fr;

        gap: 17px;
    }


    .ku-service-card:last-child {
        grid-column: auto;

        max-width: none;
    }


    .ku-service-image-wrap {
        height: 210px;
    }


    .ku-service-content {
        padding: 23px 20px 25px;
    }


    .ku-service-label {
        font-size: 8px;

        letter-spacing: 1.4px;
    }


    .ku-service-content h3 {
        font-size: 20px;
    }


    .ku-service-divider {
        margin: 13px 0 16px;
    }


    .ku-service-list {
        gap: 11px;
    }


    .ku-service-list li {
        font-size: 12px;

        line-height: 1.6;
    }


    .ku-service-icon {
        left: 18px;
        bottom: 18px;

        width: 48px;
        height: 48px;

        border-radius: 13px;

        font-size: 18px;
    }


    .ku-service-number {
        top: 15px;
        right: 15px;

        width: 39px;
        height: 39px;

        border-radius: 11px;

        font-size: 11px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .ku-services-section {
        padding: 40px 0px;
    }





    .ku-services-heading h2 {
        font-size: 28px;
    }


    .ku-service-image-wrap {
        height: 190px;
    }


    .ku-service-content {
        padding: 21px 17px 23px;
    }


    .ku-service-content h3 {
        font-size: 19px;
    }


    .ku-service-list li {
        font-size: 11.5px;
    }

}

/* =========================================================
   KAKATIYA UNIFORMS
   THE KAKATIYA UNIFORMS PROMISE
   ========================================================= */

.ku-promise-section {
    position: relative;

    overflow: hidden;

    padding: 60px 0px;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(48, 112, 215, 0.30),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #002776 0%,
            #003da8 48%,
            #002b84 100%
        );
}


/* =========================================================
   CONTAINER
   ========================================================= */

.ku-promise-container {
    position: relative;

    z-index: 3;

    /*width: min(1180px, calc(100% - 40px));*/

    margin: 0 auto;
}


/* =========================================================
   DECORATIVE GLOW
   ========================================================= */

.ku-promise-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(2px);
}


.ku-promise-glow-left {
    left: -270px;
    top: -180px;

    background:
        radial-gradient(
            circle,
            rgba(107, 173, 255, 0.22) 0%,
            transparent 68%
        );
}


.ku-promise-glow-right {
    right: -270px;
    bottom: -240px;

    background:
        radial-gradient(
            circle,
            rgba(104, 170, 255, 0.18) 0%,
            transparent 68%
        );
}


/* =========================================================
   BACKGROUND PATTERN
   ========================================================= */

.ku-promise-pattern {
    position: absolute;

    inset: 0;

    opacity: 0.12;

    pointer-events: none;

    background-image:
        linear-gradient(
            30deg,
            rgba(255, 255, 255, 0.08) 12%,
            transparent 12.5%,
            transparent 87%,
            rgba(255, 255, 255, 0.08) 87.5%,
            rgba(255, 255, 255, 0.08)
        ),
        linear-gradient(
            150deg,
            rgba(255, 255, 255, 0.08) 12%,
            transparent 12.5%,
            transparent 87%,
            rgba(255, 255, 255, 0.08) 87.5%,
            rgba(255, 255, 255, 0.08)
        );

    background-size: 80px 140px;

    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 90%
        );
}


/* =========================================================
   HEADING
   ========================================================= */

.ku-promise-heading {
    max-width: 720px;

    margin: 0 auto 40px;

    text-align: center;
}


.ku-promise-eyebrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 7px 16px;

    margin-bottom: 15px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 100px;

    backdrop-filter: blur(10px);

    font-size: 9px;

    font-weight: 750;

    letter-spacing: 2px;
}


.ku-promise-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.12;

    font-weight: 750;

    letter-spacing: -1.3px;
}


.ku-promise-heading h2 span {
    display: block;

    color: #a9ceff;
}


.ku-promise-line {
    width: 58px;
    height: 3px;

    margin: 18px auto;

    background: #ffffff;

    border-radius: 50px;
}


.ku-promise-heading p {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   GRID
   ========================================================= */

.ku-promise-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 23px;
}


/* =========================================================
   CARD
   ========================================================= */

.ku-promise-card {
    position: relative;

    overflow: hidden;

    min-height: 300px;

    padding: 27px 27px 30px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.14),
            rgba(255, 255, 255, 0.065)
        );

    border: 1px solid rgba(255, 255, 255, 0.17);

    border-radius: 22px;

    backdrop-filter: blur(14px);

    box-shadow:
        0 20px 50px rgba(0, 15, 60, 0.20);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}


.ku-promise-card:hover {
    transform: translateY(-7px);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.19),
            rgba(255, 255, 255, 0.08)
        );

    border-color:
        rgba(255, 255, 255, 0.32);
}


/* =========================================================
   FEATURED CARD
   ========================================================= */

.ku-promise-card-featured {
    transform: translateY(-10px);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.20),
            rgba(255, 255, 255, 0.085)
        );

    border-color:
        rgba(255, 255, 255, 0.30);

    box-shadow:
        0 28px 65px rgba(0, 15, 60, 0.27);
}


.ku-promise-card-featured:hover {
    transform: translateY(-17px);
}


/* =========================================================
   CARD TOP
   ========================================================= */

.ku-promise-card-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 30px;
}


.ku-promise-number {
    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;

    font-weight: 750;

    letter-spacing: 1.5px;
}


/* =========================================================
   ICON
   ========================================================= */

.ku-promise-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    color: #00339e;

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.16);

    font-size: 25px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.ku-promise-card-content {
    position: relative;

    z-index: 2;
}


.ku-promise-card-content h3 {
    /*max-width: 270px;*/

    margin: 0;

    color: #ffffff;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 750;
}


.ku-promise-card-line {
    width: 38px;
    height: 2px;

    margin: 16px 0 18px;

    background: #9bc7ff;

    border-radius: 50px;
}


.ku-promise-card-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   CARD DECORATION
   ========================================================= */

.ku-promise-card-corner {
    position: absolute;

    right: -65px;
    bottom: -65px;

    width: 160px;
    height: 160px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;
}


.ku-promise-card-corner::after {
    content: "";

    position: absolute;

    inset: 25px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;
}


/* =========================================================
   BOTTOM TRUST STRIP
   ========================================================= */

.ku-promise-bottom {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    width: fit-content;

    margin: 38px auto 0;

    padding: 13px 22px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.13);

    border-radius: 100px;

    backdrop-filter: blur(10px);
}


.ku-promise-bottom-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    color: #00339e;

    background: #ffffff;

    border-radius: 50%;

    font-size: 20px;
}


.ku-promise-bottom strong {
    display: block;

    color: #ffffff;

    font-size: 14px;

    font-weight: 750;
}


.ku-promise-bottom span {
    display: block;

    margin-top: 2px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .ku-promise-section {
        padding: 40px 0px;
    }


    .ku-promise-grid {
        grid-template-columns: 1fr 1fr;

        gap: 18px;
    }


    .ku-promise-card-featured {
        transform: none;
    }


    .ku-promise-card-featured:hover {
        transform: translateY(-7px);
    }


    .ku-promise-card:last-child {
        grid-column: 1 / -1;

        max-width: 470px;

        width: 100%;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .ku-promise-section {
        padding: 40px 0px;
    }

/*
    .ku-promise-container {
        width: min(100% - 30px, 600px);
    }*/


    .ku-promise-heading {
        margin-bottom: 36px;
    }


    .ku-promise-eyebrow {
        padding: 6px 13px;

        margin-bottom: 12px;

        font-size: 8px;

        letter-spacing: 1.5px;
    }


    .ku-promise-heading h2 {
        font-size: 30px;

        letter-spacing: -0.7px;
    }


    .ku-promise-heading h2 span {
        display: inline;
    }


    .ku-promise-line {
        width: 45px;

        height: 2px;

        margin: 14px auto;
    }


    .ku-promise-heading p {
        font-size: 12px;
    }


    .ku-promise-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .ku-promise-card,
    .ku-promise-card:last-child {
        grid-column: auto;

        max-width: none;

        min-height: auto;

        padding: 23px 21px 25px;
    }


    .ku-promise-card:hover,
    .ku-promise-card-featured:hover {
        transform: translateY(-4px);
    }


    .ku-promise-card-top {
        margin-bottom: 22px;
    }


    .ku-promise-icon {
        width: 53px;
        height: 53px;

        border-radius: 15px;

        font-size: 21px;
    }


    .ku-promise-card-content h3 {
        max-width: 100%;

        font-size: 19px;
    }


    .ku-promise-card-line {
        margin: 13px 0 14px;
    }


    .ku-promise-card-content p {
        font-size: 11.5px;

        line-height: 1.65;
    }


    .ku-promise-bottom {
        width: calc(100% - 10px);

        margin-top: 28px;

        padding: 11px 15px;

        justify-content: flex-start;

        border-radius: 16px;
    }


    .ku-promise-bottom-icon {
        width: 34px;
        height: 34px;

        flex: 0 0 auto;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .ku-promise-section {
        padding: 40px 0px;
    }


 /*   .ku-promise-container {
        width: calc(100% - 26px);
    }*/


    .ku-promise-heading h2 {
        font-size: 27px;
    }


    .ku-promise-card {
        padding: 21px 18px 23px;
    }


    .ku-promise-card-content h3 {
        font-size: 18px;
    }


    .ku-promise-card-content p {
        font-size: 11px;
    }


    .ku-promise-bottom span {
        font-size: 8px;
    }

}
/* =========================================================
   KAKATIYA UNIFORMS
   HOW IT WORKS SECTION
========================================================= */

.how-it-works-section {
    position: relative;
    padding: 60px 0px;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(0, 51, 158, 0.07),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 75%,
            rgba(255, 111, 0, 0.06),
            transparent 25%
        ),
        #f7f9fc;
    overflow: hidden;
}


/* =========================================================
   BACKGROUND SHAPES
========================================================= */

.how-work-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.how-work-shape-one {
    width: 320px;
    height: 320px;
    top: -150px;
    left: -150px;
    border: 55px solid rgba(0, 51, 158, 0.035);
}

.how-work-shape-two {
    width: 280px;
    height: 280px;
    bottom: -130px;
    right: -120px;
    border: 45px solid rgba(255, 111, 0, 0.035);
}


/* =========================================================
   CONTAINER
========================================================= */

.how-it-works-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.how-work-heading {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}

.how-work-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 15px;
    border-radius: 30px;
    background: rgba(0, 51, 158, 0.07);
    color: #00339e;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 1.8px;
    margin-bottom: 15px;
}

.how-work-heading h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 750;
    letter-spacing: -1.2px;
}

.how-work-heading h2 span {
    color: #00339e;
}

.how-work-title-line {
    position: relative;
    width: 58px;
    height: 4px;
    margin: 19px auto 17px;
    border-radius: 20px;
    background: #ff7200;
}

.how-work-title-line::before,
.how-work-title-line::after {
    content: "";
    position: absolute;
    top: 1px;
    width: 5px;
    height: 2px;
    border-radius: 5px;
    background: #00339e;
}

.how-work-title-line::before {
    left: -10px;
}

.how-work-title-line::after {
    right: -10px;
}

.how-work-subtitle {
    margin: 0;
    color: #687386;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================================
   INTRO BOX
========================================================= */

.how-work-intro {
    max-width: 950px;
    margin: 0 auto 40px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 22px;
    background: #ffffff;
    border: 1px solid rgba(0, 51, 158, 0.08);
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(13, 35, 75, 0.07);
}

.how-work-intro-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00339e;
    color: #ffffff;
    font-size: 21px;
    box-shadow: 0 10px 25px rgba(0, 51, 158, 0.20);
}

.how-work-intro-content {
    min-width: 0;
}

.how-work-intro-label {
    display: block;
    margin-bottom: 7px;
    color: #ff7200;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 1.3px;
}

.how-work-intro-content p {
    margin: 0;
    color: #596579;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   GUIDE TITLE
========================================================= */

.how-work-guide-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 40px;
}

.how-work-guide-title h3 {
    margin: 0;
    color: #172033;
    font-size: 22px;
    font-weight: 750;
    text-align: center;
}

.how-guide-line {
    width: 55px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        #cbd5e1
    );
}

.how-guide-line:last-child {
    background: linear-gradient(
        to left,
        transparent,
        #cbd5e1
    );
}


/* =========================================================
   STEP GRID
========================================================= */

.how-work-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* =========================================================
   STEP CARD
========================================================= */

.how-step-card {
    position: relative;
    min-height: 100%;
    padding: 26px 25px 27px;
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20, 39, 75, 0.055);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.how-step-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        #00339e,
        #2865d5,
        #ff7200
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.how-step-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 51, 158, 0.16);
    box-shadow: 0 22px 50px rgba(20, 39, 75, 0.11);
}

.how-step-card:hover::before {
    transform: scaleX(1);
}


/* =========================================================
   STEP TOP
========================================================= */

.how-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}


/* =========================================================
   STEP NUMBER
========================================================= */

.how-step-number {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00339e;
    color: #ffffff;
    box-shadow: 0 9px 22px rgba(0, 51, 158, 0.19);
    position: relative;
}

.how-step-number span {
    font-size: 15px;
    font-weight: 750;
    letter-spacing: 0.5px;
}

.how-step-number::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: #ff7200;
    border: 2px solid #ffffff;
}


/* =========================================================
   STEP ICON
========================================================= */

.how-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00339e;
    background: #f0f5ff;
    border: 1px solid #e0e9fc;
    font-size: 18px;
    transition: 0.35s ease;
}

.how-step-card:hover .how-step-icon {
    background: #00339e;
    color: #ffffff;
    transform: rotate(-5deg);
}


/* =========================================================
   STEP CONTENT
========================================================= */

.how-step-label {
    display: block;
    margin-bottom: 7px;
    color: #ff7200;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 1.4px;
}

.how-step-content h3 {
    margin: 0 0 17px;
    color: #00339e;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 750;
}

.how-step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-step-content li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 11px;
    color: #657084;
    font-size: 16px;
    line-height: 1.65;
}

.how-step-content li:last-child {
    margin-bottom: 0;
}

.how-step-content li i {
    flex-shrink: 0;
    margin-top: 4px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 114, 0, 0.10);
    color: #ff7200;
    font-size: 7px;
}


/* =========================================================
   ARROW
========================================================= */

.how-step-arrow {
    position: absolute;
    right: 21px;
    bottom: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f7fc;
    color: #00339e;
    font-size: 10px;
    transition: 0.3s ease;
}

.how-step-card:hover .how-step-arrow {
    background: #00339e;
    color: #ffffff;
    transform: translateX(4px);
}


/* =========================================================
   BOTTOM TRUST STRIP
========================================================= */

.how-work-bottom {
    margin-top: 35px;
    padding: 19px 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #00339e;
    border-radius: 16px;
    box-shadow: 0 16px 35px rgba(0, 51, 158, 0.16);
}

.how-bottom-item {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-right: 1px dashed rgba(255, 255, 255, 0.28);
}

.how-bottom-item:last-child {
    border-right: 0;
}

.how-bottom-item i {
    color: #ff9a4d;
    font-size: 16px;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .how-it-works-section {
        padding: 40px 0;
    }

    .how-work-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-work-bottom {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 14px;
    }

    .how-bottom-item:nth-child(2) {
        border-right: 0;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .how-it-works-section {
        padding: 40px 0;
    }

    .how-work-heading {
        margin-bottom: 30px;
    }

    .how-work-heading h2 {
        font-size: 31px;
        letter-spacing: -0.6px;
    }

    .how-work-subtitle {
        font-size: 14px;
    }

    .how-work-intro {
        padding: 21px;
        gap: 15px;
        border-radius: 15px;
        margin-bottom: 38px;
    }

    .how-work-intro-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 13px;
        font-size: 17px;
    }

    .how-work-intro-label {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .how-work-intro-content p {
        font-size: 12px;
        line-height: 1.65;
    }

    .how-work-guide-title {
        gap: 10px;
    }

    .how-work-guide-title h3 {
        font-size: 19px;
    }

    .how-guide-line {
        width: 35px;
    }

    .how-work-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .how-step-card {
        padding: 22px;
        border-radius: 17px;
    }

    .how-step-top {
        margin-bottom: 20px;
    }

    .how-step-content h3 {
        font-size: 17px;
    }

    .how-step-content li {
        font-size: 12px;
    }

    .how-work-bottom {
        padding: 18px 12px;
        border-radius: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .how-it-works-section {
        padding: 40px 0px;
    }

    .how-work-heading {
        padding: 0 8px;
    }

    .how-work-eyebrow {
        font-size: 9px;
        padding: 6px 12px;
        letter-spacing: 1.3px;
    }

    .how-work-heading h2 {
        font-size: 27px;
        line-height: 1.18;
    }

    .how-work-title-line {
        margin-top: 15px;
        margin-bottom: 13px;
    }

    .how-work-subtitle {
        font-size: 13px;
    }

    .how-work-intro {
        display: block;
        text-align: center;
        padding: 22px 18px;
    }

    .how-work-intro-icon {
        margin: 0 auto 14px;
    }

    .how-work-intro-label {
        margin-bottom: 10px;
    }

    .how-work-guide-title {
        margin-bottom: 23px;
    }

    .how-work-guide-title h3 {
        font-size: 17px;
        white-space: nowrap;
    }

    .how-guide-line {
        width: 22px;
    }

    .how-step-card {
        padding: 20px 18px 23px;
    }

    .how-step-number {
        width: 47px;
        height: 47px;
        border-radius: 13px;
    }

    .how-step-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .how-step-content h3 {
        font-size: 16px;
        padding-right: 25px;
    }

    .how-step-content li {
        font-size: 11.5px;
        line-height: 1.6;
        gap: 8px;
    }

    .how-step-arrow {
        right: 16px;
        bottom: 17px;
        width: 27px;
        height: 27px;
    }

    .how-work-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 13px 8px;
    }

    .how-bottom-item {
        padding: 10px 5px;
        font-size: 9px;
        line-height: 1.4;
    }

    .how-bottom-item:nth-child(1),
    .how-bottom-item:nth-child(3) {
        border-right: 1px dashed rgba(255, 255, 255, 0.28);
    }

    .how-bottom-item:nth-child(2),
    .how-bottom-item:nth-child(4) {
        border-right: 0;
    }

    .how-bottom-item:nth-child(-n+2) {
        border-bottom: 1px dashed rgba(255, 255, 255, 0.28);
    }

    .how-bottom-item i {
        font-size: 13px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .how-work-heading h2 {
        font-size: 24px;
    }

    .how-work-intro-content p {
        font-size: 12px;
    }

    .how-work-guide-title h3 {
        font-size: 15px;
    }

    .how-step-content h3 {
        font-size: 15px;
    }

    .how-step-content li {
        font-size: 11px;
    }

}

/* =========================================================
   KAKATIYA UNIFORMS
   KEY FEATURES
   ========================================================= */

.ku-key-features-section {
    position: relative;
    overflow: hidden;

    padding: 60px 0px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 100%
        );
}


/* =========================================================
   CONTAINER
   ========================================================= */

.ku-key-container {
    position: relative;
    z-index: 2;

    /*width: min(1180px, calc(100% - 40px));*/

    margin: 0 auto;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.ku-key-bg {
    position: absolute;

    pointer-events: none;

    border-radius: 50%;
}


.ku-key-bg-one {
    width: 420px;
    height: 420px;

    top: -220px;
    right: -180px;

    border: 1px solid rgba(0, 51, 158, 0.06);

    box-shadow:
        0 0 0 55px rgba(0, 51, 158, 0.025),
        0 0 0 110px rgba(0, 51, 158, 0.015);
}


.ku-key-bg-two {
    width: 280px;
    height: 280px;

    left: -170px;
    bottom: -150px;

    background:
        radial-gradient(
            circle,
            rgba(0, 80, 190, 0.07),
            transparent 70%
        );
}


/* =========================================================
   HEADING
   ========================================================= */

.ku-key-heading {
    max-width: 700px;

    margin: 0 auto 40px;

    text-align: center;
}


.ku-key-eyebrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 7px 15px;

    margin-bottom: 14px;

    color: #00339e;

    background: #edf4ff;

    border: 1px solid #dbe8fa;

    border-radius: 100px;

    font-size: 9px;

    font-weight: 750;

    letter-spacing: 2px;
}


.ku-key-heading h2 {
    margin: 0;

    color: #17233b;

    font-size: clamp(35px, 4vw, 49px);

    line-height: 1.1;

    font-weight: 750;

    letter-spacing: -1.4px;
}


.ku-key-heading h2 span {
    color: #00339e;
}


.ku-key-line {
    width: 58px;
    height: 3px;

    margin: 18px auto;

    background: #00339e;

    border-radius: 50px;
}


.ku-key-heading p {
    margin: 0;

    color: #718096;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   GRID
   ========================================================= */

.ku-key-grid {
    display: grid;

    grid-template-columns:
        repeat(12, 1fr);

    gap: 20px;
}


/* =========================================================
   CARD BASE
   ========================================================= */

.ku-key-card {
    position: relative;

    overflow: hidden;

    /*min-height: 245px;*/

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e6ecf5;

    border-radius: 21px;

    box-shadow:
        0 12px 35px rgba(18, 55, 105, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.ku-key-card:hover {
    transform: translateY(-6px);

    border-color: #cfdff5;

    box-shadow:
        0 22px 45px rgba(18, 55, 105, 0.12);
}


/* =========================================================
   CARD POSITIONS
   ========================================================= */

.ku-key-card-large {
    grid-column: span 7;
}


.ku-key-card:nth-child(2) {
    grid-column: span 5;
}


.ku-key-card:nth-child(3) {
    grid-column: span 5;
}


.ku-key-card-wide {
    grid-column: span 7;
}


/* =========================================================
   CARD TOP
   ========================================================= */

.ku-key-card-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 15px;
}


.ku-key-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 62px;
    height: 62px;

    background:
        linear-gradient(
            145deg,
            #edf4ff,
            #f7faff
        );

    border: 1px solid #dce9fb;

    border-radius: 17px;

    font-size: 26px;

    box-shadow:
        0 9px 22px rgba(0, 51, 158, 0.08);
}


.ku-key-number {
    color: #c2cad7;

    font-size: 11px;

    font-weight: 750;

    letter-spacing: 1.5px;
}


/* =========================================================
   CONTENT
   ========================================================= */

.ku-key-card-content {
    position: relative;

    z-index: 2;
}


.ku-key-card-content h3 {
    max-width: 450px;

    margin: 0 0 12px;

    color: #00339e;

    font-size: 22px;

    line-height: 1.3;

    font-weight: 750;
}


.ku-key-card-content p {
    max-width: 500px;

    margin: 0;

    color: #68768b;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   CARD DECORATION
   ========================================================= */

.ku-key-card-decoration {
    position: absolute;

    right: -65px;
    bottom: -70px;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(0, 51, 158, 0.07);

    border-radius: 50%;
}


.ku-key-card-decoration::after {
    content: "";

    position: absolute;

    inset: 27px;

    border: 1px solid rgba(0, 51, 158, 0.05);

    border-radius: 50%;
}


/* =========================================================
   SUPPORT CARD
   ========================================================= */

.ku-key-card-support {
    grid-column: 1 / -1;

    display: flex;

    align-items: center;

    min-height: 150px;

    padding: 25px 32px;

    background:
        linear-gradient(
            105deg,
            #f2f7ff 0%,
            #ffffff 55%,
            #f4f8ff 100%
        );

    border-color: #dbe7f8;
}


.ku-key-support-icon {
    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 70px;
    height: 70px;

    margin-right: 23px;

    background: #00339e;

    border-radius: 20px;

    font-size: 28px;

    box-shadow:
        0 12px 25px rgba(0, 51, 158, 0.20);
}


.ku-key-support-content {
    position: relative;

    z-index: 2;
}


.ku-key-support-content > span {
    display: block;

    margin-bottom: 5px;

    color: #8290a4;

    font-size: 10px;

    font-weight: 750;

    letter-spacing: 1.8px;
}


.ku-key-support-content h3 {
    margin: 0 0 7px;

    color: #00339e;

    font-size: 22px;

    font-weight: 750;
}


.ku-key-support-content p {
    margin: 0;

    color: #68768b;

    font-size: 16px;

    line-height: 1.6;
}


.ku-key-support-badge {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-left: auto;

    color: #00339e;

    background: #ffffff;

    border: 1px solid #dce7f6;

    border-radius: 14px;

    font-size: 17px;

    box-shadow:
        0 8px 20px rgba(0, 51, 158, 0.07);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .ku-key-features-section {
        padding: 40px 0px;
    }


    .ku-key-grid {
        grid-template-columns: 1fr 1fr;
    }


    .ku-key-card-large,
    .ku-key-card:nth-child(2),
    .ku-key-card:nth-child(3),
    .ku-key-card-wide {
        grid-column: span 1;
    }


    .ku-key-card-support {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .ku-key-features-section {
        padding: 40px 0px;
    }


    /*.ku-key-container {*/
    /*    width: min(100% - 30px, 600px);*/
    /*}*/


    .ku-key-heading {
        margin-bottom: 30px;
    }


    .ku-key-eyebrow {
        padding: 6px 13px;

        font-size: 8px;

        letter-spacing: 1.5px;
    }


    .ku-key-heading h2 {
        font-size: 31px;

        letter-spacing: -0.7px;
    }


    .ku-key-line {
        width: 45px;

        height: 2px;

        margin: 14px auto;
    }


    .ku-key-heading p {
        font-size: 14px;
    }


    .ku-key-grid {
        display: flex;

        flex-direction: column;

        gap: 15px;
    }


    .ku-key-card,
    .ku-key-card-large,
    .ku-key-card-wide {
        min-height: auto;

        padding: 22px 20px;
    }


    .ku-key-card:hover {
        transform: translateY(-3px);
    }


    .ku-key-card-top {
        margin-bottom: 22px;
    }


    .ku-key-icon {
        width: 53px;
        height: 53px;

        border-radius: 15px;

        font-size: 22px;
    }


    .ku-key-card-content h3 {
        font-size: 18px;

        margin-bottom: 9px;
    }


    .ku-key-card-content p {
        font-size: 11.5px;

        line-height: 1.65;
    }


    .ku-key-card-support {
        display: block;

        min-height: auto;

        padding: 22px 20px;
    }


    .ku-key-support-icon {
        width: 52px;
        height: 52px;

        margin: 0 0 18px;

        border-radius: 15px;

        font-size: 21px;
    }


    .ku-key-support-content h3 {
        font-size: 18px;
    }


    .ku-key-support-content p {
        font-size: 11.5px;
    }


    .ku-key-support-badge {
        display: none;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .ku-key-features-section {
        padding: 40px 0px;
    }


    /*.ku-key-container {*/
    /*    width: calc(100% - 26px);*/
    /*}*/


    .ku-key-heading h2 {
        font-size: 28px;
    }


    .ku-key-card {
        padding: 20px 17px;
    }


    .ku-key-card-content h3 {
        font-size: 17px;
    }


    .ku-key-card-content p,
    .ku-key-support-content p {
        font-size: 11px;
    }

}

/* =========================================================
   TESTIMONIAL CAROUSEL FIX
   3 CARDS DESKTOP
   2 CARDS TABLET
   1 CARD MOBILE
   ========================================================= */


.ku-testimonials-section {
    position: relative;
    overflow: hidden;

    padding: 0px 0 60px;

    background:
        linear-gradient(
            180deg,
            #f7faff 0%,
            #ffffff 100%
        );
}


/* =========================================================
   CONTAINER
   ========================================================= */

.ku-testimonial-container {
    position: relative;
    z-index: 2;

    /*width: min(1120px, calc(100% - 40px));*/

    margin: 0 auto;
}


/* =========================================================
   BACKGROUND ORBS
   ========================================================= */

.ku-testimonial-orb {
    position: absolute;

    pointer-events: none;

    border-radius: 50%;
}


.ku-testimonial-orb-1 {
    width: 420px;
    height: 420px;

    top: -230px;
    right: -180px;

    border: 1px solid rgba(0, 51, 158, 0.07);

    box-shadow:
        0 0 0 55px rgba(0, 51, 158, 0.025),
        0 0 0 110px rgba(0, 51, 158, 0.012);
}


.ku-testimonial-orb-2 {
    width: 300px;
    height: 300px;

    bottom: -210px;
    left: -170px;

    background:
        radial-gradient(
            circle,
            rgba(0, 51, 158, 0.06),
            transparent 70%
        );
}


/* =========================================================
   HEADING
   ========================================================= */

.ku-testimonial-heading {
    max-width: 680px;

    margin: 0 auto 40px;

    text-align: center;
}


.ku-testimonial-eyebrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 7px 15px;

    margin-bottom: 15px;

    color: #00339e;

    background: #edf4ff;

    border: 1px solid #dce8fa;

    border-radius: 100px;

    font-size: 9px;

    font-weight: 750;

    letter-spacing: 2px;
}


.ku-testimonial-heading h2 {
    margin: 0;

    color: #17233b;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    font-weight: 750;

    letter-spacing: -1.3px;
}


.ku-testimonial-heading h2 span {
    color: #00339e;
}


.ku-testimonial-line {
    width: 58px;
    height: 3px;

    margin: 18px auto;

    background: #00339e;

    border-radius: 50px;
}


.ku-testimonial-heading p {
    margin: 0;

    color: #748197;

    font-size: 16px;

    line-height: 1.7;
}



.ku-testimonial-slider {
    position: relative;
    /*padding: 5px 58px 15px;*/
    overflow: hidden;
}

.ku-testimonial-track {
    display: flex;
    width: 100%;
    overflow: visible;
    will-change: transform;
}

.ku-testimonial-slide {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    min-width: 33.333333%;

    padding: 0 9px;

    box-sizing: border-box;
}


/* =========================================================
   CARD
   ========================================================= */

.ku-testimonial-card {
    position: relative;
    overflow: hidden;

    width: 100%;
    min-height: 330px;

    margin: 0;

    padding: 30px 28px;

    background: #ffffff;

    border: 1px solid #e4ebf5;

    border-radius: 24px;

    /*box-shadow:*/
    /*    0 15px 45px rgba(16, 51, 101, 0.08);*/

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.ku-testimonial-card:hover {
    transform: translateY(-5px);

    border-color: #d3e1f5;

    box-shadow:
        0 22px 55px rgba(16, 51, 101, 0.13);
}


/* =========================================================
   TOP
   ========================================================= */

.ku-testimonial-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 25px;
}

.ku-testimonial-quote-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    color: #ffffff;

    background: #00339e;

    border-radius: 14px;

    font-size: 17px;
}

.ku-testimonial-rating {
    display: flex;
    align-items: center;

    gap: 3px;

    padding: 7px 10px;

    background: #f7f9fd;

    border: 1px solid #e7edf6;

    border-radius: 100px;
}

.ku-testimonial-rating i {
    color: #f4b400;
    font-size: 10px;
}


/* =========================================================
   BODY
   ========================================================= */

.ku-testimonial-body {
    position: relative;
    z-index: 2;

    min-height: 130px;

    padding-right: 5px;
}

.ku-testimonial-body p {
    margin: 0;

    color: #46556b;

    font-size: 16px;

    line-height: 1.75;

    font-weight: 500;
}


/* =========================================================
   USER
   ========================================================= */

.ku-testimonial-user {
    display: flex;
    align-items: center;

    margin-top: 20px;

    padding-top: 18px;

    border-top: 1px solid #edf1f7;
}

.ku-testimonial-avatar {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    margin-right: 13px;

    overflow: hidden;

    background: #edf4ff;

    border: 3px solid #ffffff;

    border-radius: 50%;

    box-shadow:
        0 7px 18px rgba(0, 51, 158, 0.12);
}

.ku-testimonial-avatar img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.ku-testimonial-user-info {
    min-width: 0;
}

.ku-testimonial-user-info h3 {
    margin: 0 0 4px;

    color: #00339e;

    font-size: 16px;

    line-height: 1.3;

    font-weight: 750;
}

.ku-testimonial-user-info span {
    display: block;

    color: #7b8799;

    font-size: 12px;

    line-height: 1.4;
}


/* =========================================================
   CARD NUMBER
   ========================================================= */

.ku-testimonial-card-number {
    position: absolute;

    right: 17px;
    bottom: 8px;

    color: #f0f3f8;

    font-size: 55px;

    line-height: 1;

    font-weight: 900;

    pointer-events: none;
}


/* =========================================================
   ARROWS
   ========================================================= */

.ku-testimonial-arrow {
    position: absolute;

    top: 50%;

    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    margin-top: -22px;

    color: #00339e;

    background: #ffffff;

    border: 1px solid #dce6f3;

    border-radius: 50%;

    box-shadow:
        0 10px 25px rgba(16, 51, 101, 0.12);

    cursor: pointer;

    transition: all 0.25s ease;
}

.ku-testimonial-arrow:hover {
    color: #ffffff;

    background: #00339e;

    transform: scale(1.08);
}

.ku-testimonial-prev {
    left: 4px;
}

.ku-testimonial-next {
    right: 4px;
}


/* =========================================================
   DOTS
   ========================================================= */

.ku-testimonial-dots {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 22px;
}

.ku-testimonial-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    background: #c8d1df;

    border: 0;

    border-radius: 50%;

    cursor: pointer;

    transition:
        width 0.25s ease,
        background 0.25s ease;
}

.ku-testimonial-dot.active {
    width: 27px;

    background: #00339e;

    border-radius: 20px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .ku-testimonial-slide {
        flex: 0 0 50%;
        width: 50%;
        min-width: 50%;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {
     .ku-testimonials-section {
        padding: 0px 0 40px;
    }



    .ku-testimonial-heading {
        margin-bottom: 30px;
    }


    .ku-testimonial-eyebrow {
        padding: 6px 13px;

        font-size: 8px;

        letter-spacing: 1.5px;
    }


    .ku-testimonial-heading h2 {
        font-size: 28px;

        letter-spacing: -0.7px;
    }


    .ku-testimonial-line {
        width: 45px;

        height: 2px;

        margin: 14px auto;
    }


    .ku-testimonial-heading p {
        font-size: 14px;
    }


    /*.ku-testimonial-slider {*/
    /*    padding: 5px 0 10px;*/
    /*}*/

    .ku-testimonial-slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;

        padding: 0 2px;
    }

    .ku-testimonial-card {
        min-height: 350px;

        padding: 27px 22px;

        border-radius: 21px;
    }

    .ku-testimonial-arrow {
        display: none;
    }

    .ku-testimonial-body {
        min-height: 125px;
    }

    .ku-testimonial-body p {
        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .ku-testimonial-card {
        padding: 24px 18px;
    }

    .ku-testimonial-body p {
        font-size: 12px;
    }

}

/* =========================================================
   KAKATIYA UNIFORMS
   FAQ SECTION
   ========================================================= */

.ku-faq-section {
    position: relative;
    overflow: hidden;

    padding: 0px 0 60px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 100%
        );
}


/* =========================================================
   CONTAINER
   ========================================================= */

.ku-faq-container {
    position: relative;
    z-index: 2;

    /*width: min(1140px, calc(100% - 40px));*/

    margin: 0 auto;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.ku-faq-bg {
    position: absolute;

    pointer-events: none;

    border-radius: 50%;
}


.ku-faq-bg-one {
    width: 430px;
    height: 430px;

    top: -250px;
    right: -190px;

    border: 1px solid rgba(0, 51, 158, 0.06);

    box-shadow:
        0 0 0 55px rgba(0, 51, 158, 0.025),
        0 0 0 110px rgba(0, 51, 158, 0.012);
}


.ku-faq-bg-two {
    width: 300px;
    height: 300px;

    left: -180px;
    bottom: -180px;

    background:
        radial-gradient(
            circle,
            rgba(0, 51, 158, 0.06),
            transparent 70%
        );
}


/* =========================================================
   HEADING
   ========================================================= */

.ku-faq-heading {
    max-width: 700px;

    margin: 0 auto 40px;

    text-align: center;
}


.ku-faq-eyebrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 7px 15px;

    margin-bottom: 15px;

    color: #00339e;

    background: #edf4ff;

    border: 1px solid #dce8fa;

    border-radius: 100px;

    font-size: 9px;

    font-weight: 750;

    letter-spacing: 2px;
}


.ku-faq-heading h2 {
    margin: 0;

    color: #17233b;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    font-weight: 750;

    letter-spacing: -1.3px;
}


.ku-faq-heading h2 span {
    color: #00339e;
}


.ku-faq-line {
    width: 58px;
    height: 3px;

    margin: 18px auto;

    background: #00339e;

    border-radius: 50px;
}


.ku-faq-heading p {
    margin: 0;

    color: #748197;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.ku-faq-layout {
    display: grid;

    grid-template-columns:
        310px 1fr;

    gap: 50px;

    align-items: start;
}


/* =========================================================
   LEFT INTRO
   ========================================================= */

.ku-faq-intro {
    position: sticky;

    top: 30px;
}


.ku-faq-intro-card {
    position: relative;

    overflow: hidden;

    padding: 31px 27px;

    background:
        linear-gradient(
            145deg,
            #00339e 0%,
            #064bbd 100%
        );

    border-radius: 25px;

    box-shadow:
        0 22px 55px rgba(0, 51, 158, 0.18);
}


.ku-faq-intro-card::before {
    content: "";

    position: absolute;

    width: 170px;
    height: 170px;

    right: -80px;
    top: -75px;

    border: 1px solid rgba(255, 255, 255, 0.14);

    border-radius: 50%;
}


.ku-faq-intro-card::after {
    content: "";

    position: absolute;

    width: 115px;
    height: 115px;

    right: -50px;
    top: -48px;

    border: 1px solid rgba(255, 255, 255, 0.10);

    border-radius: 50%;
}


.ku-faq-big-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    margin-bottom: 25px;

    color: #00339e;

    background: #ffffff;

    border-radius: 16px;

    font-size: 23px;
}


.ku-faq-small-label {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 10px;

    font-weight: 750;

    letter-spacing: 1.8px;
}


.ku-faq-intro-card h3 {
    margin: 0 0 11px;

    color: #ffffff;

    font-size: 22px;

    font-weight: 750;
}


.ku-faq-intro-card > p {
    margin: 0;

    color: rgba(255, 255, 255, 0.76);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   MINI POINTS
   ========================================================= */

.ku-faq-mini-points {
    display: flex;

    flex-direction: column;

    gap: 11px;

    margin-top: 15px;

    padding-top: 15px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


.ku-faq-mini-points div {
    display: flex;

    align-items: center;

    gap: 10px;
}


.ku-faq-mini-points i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 19px;
    height: 19px;

    color: #00339e;

    background: #ffffff;

    border-radius: 50%;

    font-size: 12px;
}


.ku-faq-mini-points span {
    color: rgba(255, 255, 255, 0.84);

    font-size: 14px;

    font-weight: 600;
}


/* =========================================================
   FAQ LIST
   ========================================================= */

.ku-faq-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================================
   FAQ ITEM
   ========================================================= */

.ku-faq-item {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e4eaf3;

    border-radius: 17px;

    box-shadow:
        0 8px 28px rgba(20, 54, 100, 0.045);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.ku-faq-item.active {
    border-color: #cdddf2;

    box-shadow:
        0 13px 35px rgba(20, 54, 100, 0.08);
}


/* =========================================================
   QUESTION
   ========================================================= */

.ku-faq-question {
    display: flex;

    align-items: center;

    width: 100%;

    padding: 21px 22px;

    color: #17233b;

    background: transparent;

    border: 0;

    text-align: left;

    cursor: pointer;
}


.ku-faq-question-number {
    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 35px;
    height: 35px;

    margin-right: 15px;

    color: #00339e;

    background: #edf4ff;

    border-radius: 11px;

    font-size: 14px;

    font-weight: 750;
}


.ku-faq-question-text {
    flex: 1;

    color: #1c2940;

    font-size: 18px;

    font-weight: 750;

    line-height: 1.4;
}


.ku-faq-plus {
    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 31px;
    height: 31px;

    margin-left: 15px;

    color: #00339e;

    background: #f3f7fc;

    border-radius: 50%;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.ku-faq-plus i {
    font-size: 14px;

    transition:
        transform 0.3s ease;
}


.ku-faq-item.active .ku-faq-plus {
    color: #ffffff;

    background: #00339e;

    transform: rotate(45deg);
}


/* =========================================================
   ANSWER
   ========================================================= */

.ku-faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows 0.35s ease;
}


.ku-faq-item.active .ku-faq-answer {
    grid-template-rows: 1fr;
}


.ku-faq-answer-inner {
    min-height: 0;

    overflow: hidden;

    padding: 0 27px;

    transition:
        padding 0.35s ease;
}


.ku-faq-item.active .ku-faq-answer-inner {
    padding-top: 2px;

    padding-bottom: 25px;
}


/* =========================================================
   ANSWER CONTENT
   ========================================================= */

.ku-faq-single {
    padding-left: 50px;
}


.ku-faq-single strong {
    display: block;

    margin-bottom: 7px;

    color: #00339e;

    font-size: 14px;

    line-height: 1.6;

    font-weight: 750;
}


.ku-faq-single p {
    margin: 0;

    color: #69778c;

    font-size: 14px;

    line-height: 1.75;
}


.ku-faq-divider {
    height: 1px;

    margin: 18px 0;

    background: #edf1f6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .ku-faq-section {
        padding: 0px 0 40px;
    }


    .ku-faq-layout {
        grid-template-columns: 250px 1fr;

        gap: 28px;
    }


    .ku-faq-intro-card {
        padding: 27px 22px;
    }


    .ku-faq-intro-card h3 {
        font-size: 22px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .ku-faq-section {
        padding: 0px 0 40px;
    }


    /*.ku-faq-container {*/
    /*    width: calc(100% - 30px);*/
    /*}*/


    .ku-faq-heading {
        margin-bottom: 30px;
    }


    .ku-faq-eyebrow {
        padding: 6px 13px;

        font-size: 8px;

        letter-spacing: 1.5px;
    }


    .ku-faq-heading h2 {
        font-size: 28px;

        letter-spacing: -0.7px;
    }


    .ku-faq-line {
        width: 45px;

        height: 2px;

        margin: 14px auto;
    }


    .ku-faq-heading p {
        font-size: 14px;
    }


    .ku-faq-layout {
        display: flex;

        flex-direction: column;

        gap: 20px;
    }


    .ku-faq-intro {
        position: static;

        width: 100%;
    }


    .ku-faq-intro-card {
        padding: 23px 20px;

        border-radius: 20px;
    }


    .ku-faq-big-icon {
        width: 48px;
        height: 48px;

        margin-bottom: 18px;

        border-radius: 14px;

        font-size: 19px;
    }


    .ku-faq-intro-card h3 {
        font-size: 21px;
    }


    .ku-faq-intro-card > p {
        font-size: 14px;
    }


    .ku-faq-mini-points {
        flex-direction: row;

        flex-wrap: wrap;

        gap: 8px 16px;

        margin-top: 15px;

        padding-top: 15px;
    }


    .ku-faq-mini-points span {
        font-size: 9.5px;
    }


    .ku-faq-list {
        width: 100%;

        gap: 10px;
    }


    .ku-faq-question {
        padding: 16px 14px;
    }


    .ku-faq-question-number {
        width: 31px;
        height: 31px;

        margin-right: 10px;

        border-radius: 9px;

        font-size: 12px;
    }


    .ku-faq-question-text {
        font-size: 14px;
    }


    .ku-faq-plus {
        width: 28px;
        height: 28px;

        margin-left: 8px;
    }


    .ku-faq-plus i {
        font-size: 10px;
    }


    .ku-faq-answer-inner {
        padding-left: 17px;
        padding-right: 17px;
    }


    .ku-faq-item.active .ku-faq-answer-inner {
        padding-top: 2px;

        padding-bottom: 20px;
    }


    .ku-faq-single {
        padding-left: 41px;
    }


    .ku-faq-single strong {
        font-size: 12px;
    }


    .ku-faq-single p {
        font-size: 12px;

        line-height: 1.7;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    /*.ku-faq-container {*/
    /*    width: calc(100% - 24px);*/
    /*}*/


    .ku-faq-heading h2 {
        font-size: 28px;
    }


    .ku-faq-intro-card {
        padding: 21px 17px;
    }


    .ku-faq-question {
        padding: 14px 11px;
    }


    .ku-faq-question-number {
        width: 28px;
        height: 28px;

        margin-right: 8px;
    }


    .ku-faq-question-text {
        font-size: 14px;
    }


    .ku-faq-single {
        padding-left: 36px;
    }

}

/* ============CONTACT SECTION=========== */

.ku-contact-section {
    position: relative;
    overflow: hidden;
    padding: 0px 0 60px;

    background:
        linear-gradient(
            180deg,
            #f7faff 0%,
            #ffffff 100%
        );
}


.ku-contact-container {
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.ku-contact-glow {
    position: absolute;

    pointer-events: none;

    border-radius: 50%;
}


.ku-contact-glow-one {
    width: 420px;
    height: 420px;

    top: -230px;
    right: -180px;

    border: 1px solid rgba(0, 51, 158, 0.06);

    box-shadow:
        0 0 0 50px rgba(0, 51, 158, 0.018),
        0 0 0 100px rgba(0, 51, 158, 0.009);
}


.ku-contact-glow-two {
    width: 330px;
    height: 330px;

    bottom: -210px;
    left: -170px;

    background:
        radial-gradient(
            circle,
            rgba(0, 51, 158, 0.055),
            transparent 70%
        );
}

.ku-contact-heading {
    max-width: 700px;

    margin: 0 auto 40px;

    text-align: center;
}


.ku-contact-eyebrow {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 7px 15px;

    margin-bottom: 15px;

    color: #00339e;

    background: #edf4ff;

    border: 1px solid #dce8fa;

    border-radius: 100px;

    font-size: 10px;

    font-weight: 750;

    letter-spacing: 2px;
}


.ku-contact-heading h2 {
    margin: 0;

    color: #17233b;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.1;

    font-weight: 750;

    letter-spacing: -1.3px;
}


.ku-contact-heading h2 span {
    color: #00339e;
}


.ku-contact-line {
    width: 58px;
    height: 3px;

    margin: 18px auto;

    background: #00339e;

    border-radius: 50px;
}


.ku-contact-heading p {
    max-width: 620px;

    margin: 0 auto;

    color: #748197;

    font-size: 16px;

    line-height: 1.75;
}

.ku-contact-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 28px;

    align-items: stretch;
}

.ku-contact-form-card {
    position: relative;

    padding: 34px;

    background: #ffffff;

    border: 1px solid #e1e8f2;

    border-radius: 25px;

    box-shadow:
        0 20px 55px rgba(20, 54, 100, 0.075);
}


.ku-contact-form-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 35px;
    right: 35px;

    height: 3px;

    background: #00339e;

    border-radius:
        0 0 20px 20px;
}


.ku-contact-card-top {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 29px;
}


.ku-contact-mini-label {
    display: block;

    margin-bottom: 6px;

    color: #7c8a9e;

    font-size: 10px;

    font-weight: 750;

    letter-spacing: 1.7px;
}


.ku-contact-card-top h3,
.ku-contact-info-header h3 {
    margin: 0;

    color: #17233b;

    font-size: 22px;

    line-height: 1.2;

    font-weight: 750;
}


.ku-contact-form-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 49px;
    height: 49px;

    color: #ffffff;

    background: #00339e;

    border-radius: 15px;

    box-shadow:
        0 10px 25px rgba(0, 51, 158, 0.18);
}


.ku-form-group {
    margin-bottom: 17px;
}


.ku-form-group label {
    display: block;

    margin: 0 0 7px 2px;

    color: #344158;

    font-size: 14px;

    font-weight: 750;
}


.ku-input-wrap {
    position: relative;
}


.ku-input-wrap > i {
    position: absolute;

    top: 50%;
    left: 16px;

    z-index: 2;

    color: #8290a4;

    font-size: 14px;

    transform: translateY(-50%);

    pointer-events: none;

    transition:
        color 0.2s ease;
}


.ku-input-wrap input,
.ku-input-wrap textarea {
    display: block;

    width: 100%;

    padding: 12px 15px 12px 42px;

    color: #26344c;

    background: #f8fafd;

    border: 1px solid #e0e7f0;

    border-radius: 12px;

    outline: none;

    font-family: inherit;

    font-size: 14px;

    line-height: 1.5;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.ku-input-wrap input {
    height: 45px;
}


.ku-input-wrap textarea {
    min-height: 76px;

    resize: vertical;
}


.ku-input-wrap input::placeholder,
.ku-input-wrap textarea::placeholder {
    color: #a0aaba;
}


.ku-input-wrap input:focus,
.ku-input-wrap textarea:focus {
    background: #ffffff;

    border-color: #9db8e4;

    box-shadow:
        0 0 0 3px rgba(0, 51, 158, 0.07);
}


.ku-input-wrap:focus-within > i {
    color: #00339e;
}


.ku-textarea-wrap > i {
    top: 17px;

    transform: none;
}

.ku-contact-submit {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    min-height: 48px;

    margin-top: 6px;

    padding: 8px 9px 8px 20px;

    color: #ffffff;

    background: #00339e;

    border: 0;

    border-radius: 13px;

    font-family: inherit;

    font-size: 14px;

    font-weight: 750;

    cursor: pointer;

    box-shadow:
        0 12px 28px rgba(0, 51, 158, 0.17);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.ku-contact-submit:hover {
    background: #002b85;

    transform: translateY(-2px);

    box-shadow:
        0 16px 32px rgba(0, 51, 158, 0.22);
}


.ku-contact-submit i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    color: #00339e;

    background: #ffffff;

    border-radius: 9px;

    font-size: 14px;

    transition:
        transform 0.25s ease;
}


.ku-contact-submit:hover i {
    transform: translateX(3px);
}


.ku-contact-info-card {
    position: relative;

    overflow: hidden;

    padding: 34px;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #00339e 0%,
            #064bbd 100%
        );

    border-radius: 25px;

    box-shadow:
        0 22px 55px rgba(0, 51, 158, 0.18);
}


.ku-contact-info-card::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    top: -145px;
    right: -115px;

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(255,255,255,0.025);
}


.ku-contact-info-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -95px;
    bottom: -95px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}

.ku-contact-info-header {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 26px;
}


.ku-contact-info-header .ku-contact-mini-label {
    color: rgba(255,255,255,0.58);
}


.ku-contact-info-header h3 {
    color: #ffffff;
}


.ku-contact-live {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 6px 9px;

    color: rgba(255,255,255,0.82);

    background: rgba(255,255,255,0.10);

    border: 1px solid rgba(255,255,255,0.13);

    border-radius: 100px;

    font-size: 8px;

    font-weight: 700;
}


.ku-contact-live span {
    width: 6px;
    height: 6px;

    background: #ffffff;

    border-radius: 50%;
}


.ku-contact-info-item {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 20px;
}


.ku-contact-icon {
    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    color: #00339e;

    background: #ffffff;

    border-radius: 12px;

    font-size: 20px;

    box-shadow:
        0 7px 18px rgba(0,0,0,0.08);
}


.ku-whatsapp-icon {
    color: #168c4a;
}


.ku-contact-details {
    min-width: 0;

    padding-top: 2px;
}


.ku-contact-details > span {
    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,0.57);

    font-size: 10px;

    font-weight: 750;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}


.ku-contact-details p {
    margin: 0;

    color: rgba(255,255,255,0.91);

    font-size: 14px;

    line-height: 1.65;

    word-break: break-word;
}


.ku-contact-details p + p {
    margin-top: 3px;
}

.ku-contact-hours {
    position: relative;
    z-index: 2;

    display: flex;

    gap: 13px;

    margin-top: 25px;

    padding: 17px;

    background: rgba(255,255,255,0.09);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 15px;
}


.ku-hours-icon {
    flex: 0 0 auto;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    color: #00339e;

    background: #ffffff;

    border-radius: 10px;

    font-size: 20px;
}


.ku-contact-hours h4 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 750;
}


.ku-contact-hours p {
    margin: 0;

    color: rgba(255,255,255,0.7);

    font-size: 12px;

    line-height: 1.7;
}


.ku-contact-hours p + p {
    margin-top: 2px;
}

.ku-contact-support {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-top: 17px;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,0.13);
}


.ku-contact-support > i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: rgba(255,255,255,0.72);

    font-size: 20px;
}


.ku-contact-support p {
    margin: 0;

    color: rgba(255,255,255,0.68);

    font-size: 14px;

    line-height: 1.7;
}


@media (max-width: 991px) {

    .ku-contact-section {
        padding: 0px 0 40px;
    }


    .ku-contact-grid {
        gap: 20px;
    }


    .ku-contact-form-card,
    .ku-contact-info-card {
        padding: 27px;
    }


    .ku-contact-card-top h3,
    .ku-contact-info-header h3 {
        font-size: 21px;
    }

}


@media (max-width: 767px) {

    .ku-contact-section {
        padding: 0px 0 40px;
    }
    .ku-contact-heading {
        margin-bottom: 30px;
    }


    .ku-contact-eyebrow {
        padding: 6px 13px;

        font-size: 8px;

        letter-spacing: 1.5px;
    }


    .ku-contact-heading h2 {
        font-size: 28px;

        letter-spacing: -0.7px;
    }


    .ku-contact-line {
        width: 45px;

        height: 2px;

        margin: 14px auto;
    }


    .ku-contact-heading p {
        font-size: 14px;
    }


    .ku-contact-grid {
        display: flex;

        flex-direction: column;

        gap: 18px;
    }


    .ku-contact-form-card,
    .ku-contact-info-card {
        width: 100%;

        padding: 23px 19px;

        border-radius: 21px;
    }


    .ku-contact-form-card::before {
        left: 25px;
        right: 25px;
    }


    .ku-contact-card-top h3,
    .ku-contact-info-header h3 {
        font-size: 20px;
    }


    .ku-contact-form-icon {
        width: 43px;
        height: 43px;

        border-radius: 13px;
    }


    .ku-contact-info-header {
        margin-bottom: 23px;
    }


    .ku-contact-info-item {
        gap: 11px;

        margin-bottom: 18px;
    }


    .ku-contact-icon {
        width: 38px;
        height: 38px;

        border-radius: 11px;

        font-size: 11px;
    }


    .ku-contact-details p {
        font-size: 10px;
    }


    .ku-contact-hours {
        padding: 14px;

        margin-top: 21px;
    }


    .ku-contact-support p {
        font-size: 8.5px;
    }

}



@media (max-width: 400px) {
    .ku-contact-heading h2 {
        font-size: 28px;
    }


    .ku-contact-form-card,
    .ku-contact-info-card {
        padding: 20px 16px;
    }


    .ku-contact-card-top h3,
    .ku-contact-info-header h3 {
        font-size: 18px;
    }


    .ku-contact-live {
        display: none;
    }


    .ku-input-wrap input {
        height: 43px;
    }

}

/* =========================================================
   KAKATIYA UNIFORMS
   CTA / READY TO ORDER SECTION
========================================================= */

.cta-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0px;
    background: #00339e;
    isolation: isolate;
}

/* -----------------------------------------
   BACKGROUND GLOW / SHAPES
----------------------------------------- */

.cta-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -280px;
    left: -180px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    z-index: -1;
}

.cta-section::after {
    content: "";
    position: absolute;
    width: 720px;
    height: 720px;
    right: -360px;
    bottom: -470px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    z-index: -1;
}

.cta-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.cta-bg-shape-one {
    width: 190px;
    height: 190px;
    top: 50px;
    right: 13%;
    background: rgba(255, 255, 255, 0.045);
}

.cta-bg-shape-two {
    width: 90px;
    height: 90px;
    left: 12%;
    bottom: 45px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* -----------------------------------------
   CONTENT
----------------------------------------- */

.cta-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* -----------------------------------------
   BADGE
----------------------------------------- */

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 17px;
    margin-bottom: 22px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-badge-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #ffffff;
}

/* -----------------------------------------
   HEADING
----------------------------------------- */

.cta-content h2 {
    margin: 0 0 18px;
    color: #ffffff;

    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -1.8px;
}

/* -----------------------------------------
   DESCRIPTION
----------------------------------------- */

.cta-content > p {
    max-width: 650px;
    margin: 0 auto 32px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

/* -----------------------------------------
   CTA BUTTON
----------------------------------------- */

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    min-height: 58px;
    padding: 7px 8px 7px 27px;

    color: #00339e;
    background: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 100px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 750;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.cta-button:hover {
    color: #00339e;
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

.cta-button-icon {
    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: #00339e;

    border-radius: 50%;

    transition: transform 0.25s ease;
}

.cta-button:hover .cta-button-icon {
    transform: translateX(3px);
}

/* -----------------------------------------
   TRUST ITEMS
----------------------------------------- */

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;

    margin-top: 38px;
}

.cta-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;
    font-weight: 600;
}

.cta-trust i {
    color: #ffffff;
    font-size: 14px;
}

/* -----------------------------------------
   RESPONSIVE — TABLET
----------------------------------------- */

@media (max-width: 991px) {

    .cta-section {
        padding: 40px 0px;
    }

    .cta-content h2 {
        font-size: clamp(32px, 4vw, 32px);
    }

    .cta-content > p {
        font-size: 17px;
        max-width: 600px;
    }

    .cta-bg-shape-one {
        right: -50px;
    }
}

/* -----------------------------------------
   RESPONSIVE — MOBILE
----------------------------------------- */

@media (max-width: 767px) {

    .cta-section {
        padding: 40px 0px;
    }

    .cta-section::before {
        width: 360px;
        height: 360px;
        top: -190px;
        left: -170px;
    }

    .cta-section::after {
        width: 480px;
        height: 480px;
        right: -270px;
        bottom: -330px;
    }

    .cta-bg-shape-one {
        width: 120px;
        height: 120px;
        right: -30px;
        top: 35px;
    }

    .cta-bg-shape-two {
        width: 65px;
        height: 65px;
        left: -15px;
        bottom: 25px;
    }

    .cta-badge {
        font-size: 11px;
        padding: 7px 14px;
        margin-bottom: 18px;
    }

    .cta-content h2 {
        font-size: 28px;
        letter-spacing: -1px;
        margin-bottom: 15px;
    }

    .cta-content > p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 27px;
    }

    .cta-button {
        min-height: 55px;
        padding-left: 22px;
        font-size: 15px;
    }

    .cta-button-icon {
        width: 41px;
        height: 41px;
    }

    .cta-trust {
        gap: 13px 18px;
        margin-top: 30px;
    }

    .cta-trust span {
        font-size: 12px;
    }
}

/* -----------------------------------------
   SMALL MOBILE
----------------------------------------- */

@media (max-width: 420px) {

    .cta-section {
        padding: 30px 0px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content > p {
        font-size: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 285px;
        justify-content: space-between;
    }

    .cta-trust {
        flex-direction: column;
        gap: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .cta-button,
    .cta-button-icon {
        transition: none;
    }
}

.page-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-content {
    text-align: center;
}

.page-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: #00339e;
    border-radius: 50%;
    animation: pageLoaderSpin 0.8s linear infinite;
    margin: 0 auto 14px;
}

.page-loader-text {
    font-size: 14px;
    font-weight: 600;
    color: #00339e;
}

@keyframes pageLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}