* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--primary: #2D5A87;
	--secondary: #4A7C8A;
	--accent: #6B9B7A;
	--light: #ffece2;
	--dark: #2A2A3E;
	--gradient-1: linear-gradient(135deg, #2D5A87 0%, #4A7C8A 100%);
	--gradient-2: linear-gradient(135deg, #F1E5AC 0%, #4a90e2 100%);
}
body {
	/* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
	font-family: "Noto Serif", serif;
	
	line-height: 1.6;
	color: var(--dark);
	background: var(--light);
	overflow-x: hidden;
}

/* floating card start here   */
/* Floating Card */
.middle-card{
    margin: auto;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: repeat(5,1fr);
    overflow: hidden;
}

/* Items */
.card-item{
    padding: 30px 20px;
    text-align: center;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hidden{
    display: none;
}

.card-item h3{
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
    margin: 0;
}

/* Divider */
.card-item:not(:last-child)::after{
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    width: 2px;
    height: 50%;
    background: #d9d9d9;
}

/* Tablet */
@media(max-width:991px){
    .middle-card{
        grid-template-columns: repeat(2,1fr);
        border-radius: 30px;
    }

    .card-item:nth-child(2)::after,
    .card-item:nth-child(4)::after{
        display:none;
    }
}

/* Mobile */
@media(max-width:576px){
    .middle-card{
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .card-item{
        border-bottom: 1px solid #eee;
    }

    .card-item:last-child{
        border-bottom: none;
    }

    .card-item::after{
        display:none;
    }
}

/* floating card ends here  */

/* home about section starts here  */
/* ==========================
   ABOUT SECTION
========================== */

.nhs-about-section{
    padding: 50px 20px;
}

.nhs-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* LEFT IMAGE */

.nhs-image-area{
    flex:0 0 42%;
}

.nhs-circle-image{
    width:600px;
    height:400px;
    /* border-radius:50%; */
    overflow:hidden;
    position:relative;

    /* White Inner Border */
    border:8px solid #ffffff;

    /* Shadow */
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.nhs-circle-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* RIGHT CONTENT */

.nhs-content-area{
    flex:1;
}

.nhs-subtitle{
    display:inline-block;
    color:#8d4e31;
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
    font-family:cursive;
}

.nhs-title{
    font-size:35px;
    line-height:1.15;
    font-weight:700;
    margin-bottom:25px;
}

.nhs-description{
    font-size:17px;
    line-height:1.8;
    color:#666;
    margin-bottom:30px;
}

/* FEATURES */

.nhs-features{
    list-style:none;
    padding:0;
    margin:0 0 35px;
}

.nhs-features li{
    position:relative;
    padding-left:32px;
    margin-bottom:15px;
    font-size:17px;
    color:#444;
}

.nhs-features li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#1f5c2d;
    font-weight:700;
    font-size:22px;
}

/* BUTTON */

.nhs-btn{
    display:inline-block;
    padding:16px 35px;
    background:#8d4e31;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:0.3s;
}

.nhs-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(247,147,30,0.3);
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .nhs-container{
        flex-direction:column;
        text-align:center;
    }

    .nhs-image-area{
        flex:unset;
    }

    .nhs-circle-image{
        width:500px;
        height:350px;
        margin:auto;
    }

    .nhs-features li{
        text-align:left;
    }

    .nhs-title{
        font-size:40px;
    }
}

@media(max-width:576px){

    .nhs-about-section{
        padding:70px 15px;
    }

    .nhs-circle-image{
        width:300px;
        height:250px;
    }

    .nhs-title{
        font-size:30px;
    }

    .nhs-description{
        font-size:15px;
    }

    .nhs-btn{
        width:100%;
        text-align:center;
    }
}

/* home about section ends here  */


/* counter box styling starts here  */
/* ==========================
   ARCCS COUNTER SECTION
========================== */

.arccs-counter-section{
    background:#8d4e31;
    padding:20px 20px;
    color:#fff;
}

.arccs-counter-header{
    text-align:center;
    margin-bottom:60px;
}

.arccs-counter-header h2{
    font-size:42px;
    margin:0 0 15px;
    font-weight:700;
}

.arccs-counter-header p{
    font-size:18px;
    opacity:0.9;
    max-width:700px;
    margin:auto;
}

.arccs-counter-row{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
}

.arccs-counter-box{
    flex:1;
    text-align:center;
    padding:20px 15px;
    border-right:1px solid rgba(255,255,255,0.2);
}

.arccs-counter-box:last-child{
    border-right:none;
}

.arccs-counter{
    font-size:56px;
    margin:0 0 12px;
    font-weight:700;
}

.arccs-counter-box span{
    display:block;
    font-size:15px;
    letter-spacing:1px;
    text-transform:uppercase;
    line-height:1.6;
}

/* Tablet */

@media (max-width:991px){

    .arccs-counter-row{
        flex-wrap:wrap;
    }

    .arccs-counter-box{
        width:50%;
        flex:none;
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,0.2);
    }
}

/* Mobile */

@media (max-width:576px){

    .arccs-counter-header h2{
        font-size:32px;
    }

    .arccs-counter{
        font-size:42px;
    }

    .arccs-counter-box{
        width:100%;
    }
}
/* counter box styling ends here  */



/* premium products section in home page  */
/* ===========================
   CARD SECTION
=========================== */

.crdx-section{
    padding:20px 20px;
}

.crdx-container{
    max-width:1200px;
    margin:auto;
}

/* Header */

.crdx-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.crdx-subtitle{
    display:inline-block;
    margin-bottom:15px;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#4a90e2;
}

.crdx-title{
    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;
    color:#222;
}

.crdx-description{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* Grid */

.crdx-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.crdx-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
	padding: 15px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    transition:
    transform .4s ease,
    box-shadow .4s ease;
}

.crdx-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

/* Image */

.crdx-image-wrapper{
    overflow:hidden;
}

.crdx-image{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
	border-radius: 24px;

    transition:transform .6s ease;
}

.crdx-card:hover .crdx-image{
    transform:scale(1.08);
}

/* Content */

.crdx-content{
    padding:25px;
}

.crdx-card-title{
    font-size:24px;
    font-weight:700;
    color:#222;
    margin-bottom:15px;
}

.crdx-card-description{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

/* Button */

.crdx-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 28px;

    border-radius:50px;

    text-decoration:none;

    background:#8d4e31;
    color:#fff;

    font-weight:600;

    transition:all .3s ease;
}

.crdx-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(74,144,226,.35);
}

/* Tablet */

@media(max-width:991px){

    .crdx-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .crdx-title{
        font-size:38px;
    }
}

/* Mobile */

@media(max-width:768px){

    .crdx-grid{
        grid-template-columns:1fr;
    }

    .crdx-title{
        font-size:30px;
    }

    .crdx-section{
        padding:70px 20px;
    }
}
/* end of premium products section in home page  */

/* start of slogan section in home page  */

.slogan-section {
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url("../images/slogan.jpeg");
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 0px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
	margin-top: 20px;
}

/* Dark Overlay */
.page-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

/* Heading Style */
.slogan-section h2{
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* Tablet */
@media(max-width:768px){
    .slogan-section{
        min-height: 250px;
        padding: 0 25px;
    }

    .slogan-section h2{
        line-height: 1.4;
    }
}

/* Mobile */
@media(max-width:576px){
    .slogan-section{
        min-height: 220px;
        padding: 0 20px;
    }

    .slogan-section h2{
        font-size: 1.8rem;
    }
}

/* end of slogan section in home page  */


/* homepage testimonial section starts here  */
.arcx-testimonial-section{
    padding:0px 20px;
    overflow:hidden;
}

.arcx-testimonial-container{
    max-width:1300px;
    margin:auto;
	padding-bottom: 40px;
}

.arcx-testimonial-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:arcxScroll 25s linear infinite;
}

.arcx-testimonial-track.arcx-stop{
    animation-play-state:paused;
}

.arcx-testimonial-card{
    width:300px;
    min-height:250px;
    background:#fff;
    border-radius:20px;
    padding:70px 25px 25px;
    position:relative;
    text-align:center;
    flex-shrink:0;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.4s;
}

.arcx-testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.arcx-user-image{
    width:110px;
    height:110px;
    border-radius:50%;
    overflow:hidden;
    position:absolute;
    top:-55px;
    left:50%;
    transform:translateX(-50%);
    border:5px solid #fff;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.arcx-user-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.arcx-user-name{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#222;
}

.arcx-user-designation{
    /* display:block; */
    display:none;
    margin-top:8px;
    color:#777;
    font-size:15px;
}

.arcx-user-review{
    margin-top:20px;
    height:160px;
    overflow-y:auto;
    padding-right:5px;
    color:#555;
    line-height:1.7;
    text-align:center;
}

/* Scrollbar */

.arcx-user-review::-webkit-scrollbar{
    width:5px;
}

.arcx-user-review::-webkit-scrollbar-thumb{
    background:#ccc;
    border-radius:10px;
}

.arcx-rating{
    margin-top:20px;
    font-size:22px;
    color:#ffc107;
}

@keyframes arcxScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Tablet */

@media(max-width:991px){

    .arcx-testimonial-card{
        width:320px;
    }
}

/* Mobile */

@media(max-width:767px){

    .arcx-testimonial-card{
        width:280px;
    }

    .arcx-user-review{
        height:140px;
    }
}
/* homepage testimoonial section ends here  */

/* footer section start css  */

/* ==========================
   FOOTER
========================== */

.footer{
    background:#8d4e31;
    color:#ffffff;
    padding:70px 0 0;
}

.footer .container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* Grid */

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
    gap:50px;
    padding-bottom:50px;
}

/* Logo */


.footer-logo{
    max-width:180px;
    height:auto;
    object-fit:contain;
}

.footer-column p{
    line-height:1.8;
    font-size:15px;
    margin:0;
}

/* Headings */

.footer-column h4{
    font-size:20px;
    margin-bottom:25px;
    position:relative;
}

.footer-column h4::after{
    content:"";
    width:40px;
    height:2px;
    background:#ffffff;
    position:absolute;
    left:0;
    bottom:-8px;
}

/* Lists */

.footer-column ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-column ul li{
    margin-bottom:14px;
}

.footer-column ul li a{
    text-decoration:none;
    color:rgba(255,255,255,0.85);
    transition:all 0.3s ease;
}

.footer-column ul li a:hover{
    color:#f1c232;
    padding-left:5px;
}

.footer-column ul li{
    color:rgba(255,255,255,0.85);
    line-height:1.7;
}

/* Bottom */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.15);
    text-align:center;
    padding:20px 0;
    margin-top:10px;
}

.footer-bottom p{
    margin:0;
    font-size:14px;
    color:rgba(255,255,255,0.75);
}

/* ==========================
   TABLET
========================== */

@media (max-width:991px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

    .footer{
        padding-top:60px;
    }

}

/* ==========================
   MOBILE
========================== */

@media (max-width:767px){

    .footer-grid{
        grid-template-columns:1fr;
        gap:35px;
        text-align:center;
    }

    .footer-column h4::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer-logo{
        margin:0 auto 20px;
        display:block;
    }

    .footer-column ul li a:hover{
        padding-left:0;
    }

    .footer{
        padding-top:50px;
    }

    .footer-bottom{
        padding:18px 0;
    }

}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width:480px){

    .footer-column h4{
        font-size:18px;
    }

    .footer-column p,
    .footer-column ul li,
    .footer-column ul li a{
        font-size:14px;
    }

    .footer-logo{
        max-width:150px;
    }

}
/* footer section end css  */

/* all page upper hero section  */
 
.prdpg-hero{
    position:relative;
    height:60vh;
    width:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    overflow:hidden;

    background-image:url("../images/About Us.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}


/* Overlay */

.prdpg-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

/* Content */

.prdpg-content{
    position:relative;
    z-index:2;
    text-align:center;
    padding:20px;
}

.prdpg-title{
    color:#fff;
    font-size:64px;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.1;
}

.prdpg-breadcrumb{
    color:rgba(255,255,255,0.9);
    font-size:18px;
    letter-spacing:1px;
}

/* Responsive */

@media(max-width:991px){

    .prdpg-title{
        font-size:48px;
    }
}

@media(max-width:768px){

    .prdpg-hero{
        height:50vh;
    }

    .prdpg-title{
        font-size:36px;
    }

    .prdpg-breadcrumb{
        font-size:16px;
    }
}

/* all page upper hero section ends here  */


/* about uss page section 1 started  */

/* ==========================
   FEATURE SECTION
========================== */

.ip-feature-section{
    padding:50px 20px;
}

.ip-feature-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:10px;
}

/* Content Area */

.ip-feature-content{
    text-align: left;
}

.ip-feature-content h2{
    font-size:clamp(2rem,4vw,3rem);
    color:#222;
    margin-bottom:25px;
    line-height:1.2;
}

.ip-feature-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

/* Image Area */

.ip-feature-image{
    flex:0 0 30%;
    overflow:hidden;
    border-radius:24px;
    position:relative;
    cursor:pointer;
}

.ip-feature-image img{
    width:100%;
    display:block;
    border-radius:24px;
    transition:all .5s ease;
}

/* Hover Effect */

.ip-feature-image:hover img{
    transform:scale(1.08) rotate(2deg);
    filter:brightness(1.08);
}

/* Optional Overlay Glow */

.ip-feature-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0)
    );
    opacity:0;
    transition:.4s;
    pointer-events:none;
}

.ip-feature-image:hover::after{
    opacity:1;
}

/* Tablet */

@media (max-width: 992px){

    .ip-feature-container{
        gap:40px;
    }

    .ip-feature-content{
        flex:0 0 65%;
    }

    .ip-feature-image{
        flex:0 0 35%;
    }
}

/* Mobile */

@media (max-width: 768px){

    .ip-feature-container{
        flex-direction:column-reverse;
        text-align:center;
    }

    .ip-feature-content,
    .ip-feature-image{
        flex:0 0 100%;
        width:100%;
    }

    .ip-feature-image{
        max-width:400px;
        margin:auto;
    }

    .ip-feature-section{
        padding:80px 20px;
    }

    .ip-feature-content h2{
        margin-top:10px;
    }
}

/* about us page sefction 1 ended  */


/* about us page section 2 started  */
/* ==========================
   IMAGE LEFT SECTION
========================== */

.ip-feature-left-section{
    padding:10px 20px;
}

.ip-feature-left-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

/* Image */

.ip-feature-left-image{
    flex:0 0 30%;
    width:350px;
    height:350px;
    /* border-radius:50%; */
    border-radius: 24px;
    overflow:hidden;
    position:relative;
    cursor:pointer;
    margin:auto;
    aspect-ratio:1/1;
}

.ip-feature-left-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    /* border-radius:50%; */
    border-radius: 24px;
    transition:all .5s ease;
}

/* Hover Effect */

.ip-feature-left-image:hover img{
    transform:scale(1.1);
    filter:brightness(1.08);
}   

.ip-feature-left-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.2),
        rgba(255,255,255,0)
    );
    opacity:0;
    transition:.4s ease;
}

.ip-feature-left-image:hover::after{
    opacity:1;
}

/* Content */

.ip-feature-left-content{
    flex:0 0 70%;
}

.ip-feature-left-content h2{
    font-size:clamp(2rem,4vw,3rem);
    color:#222;
    margin-bottom:25px;
    line-height:1.2;
}

.ip-feature-left-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

/* Tablet */

@media(max-width:992px){

    .ip-feature-left-container{
        gap:40px;
    }

    .ip-feature-left-image{
        flex:0 0 35%;
    }

    .ip-feature-left-content{
        flex:0 0 65%;
    }
}

/* Mobile */

@media(max-width:768px){

    .ip-feature-left-container{
        flex-direction:column;
        text-align:center;
    }

    .ip-feature-left-image,
    .ip-feature-left-content{
        width:100%;
        flex:0 0 100%;
    }

    .ip-feature-left-image{
        width:280px;
        height:280px;
        flex:none;
    }

    .ip-feature-left-section{
        padding:80px 20px;
    }
}
/* about us page section 2 ended  */


/* about us page section 3 started  */
/* ==========================
   FEATURE SECTION
========================== */

.ip-feature-section{
    padding:50px 20px;
}

.ip-feature-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:10px;
}

/* Content Area */

.ip-feature-content{
    text-align: left;
}

.ip-feature-content h2{
    font-size:clamp(2rem,4vw,3rem);
    color:#222;
    margin-bottom:25px;
    line-height:1.2;
}

.ip-feature-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:20px;
}

/* Image Area */

.ip-feature-image{
    flex:0 0 30%;
    overflow:hidden;
    border-radius:24px;
    position:relative;
    cursor:pointer;
}

.ip-feature-image img{
    width:100%;
    display:block;
    border-radius:24px;
    transition:all .5s ease;
}

/* Hover Effect */

.ip-feature-image:hover img{
    transform:scale(1.08) rotate(2deg);
    filter:brightness(1.08);
}

/* Optional Overlay Glow */

.ip-feature-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,0.15),
        rgba(255,255,255,0)
    );
    opacity:0;
    transition:.4s;
    pointer-events:none;
}

.ip-feature-image:hover::after{
    opacity:1;
}

/* Tablet */

@media (max-width: 992px){

    .ip-feature-container{
        gap:40px;
    }

    .ip-feature-content{
        flex:0 0 65%;
    }

    .ip-feature-image{
        flex:0 0 35%;
    }
}

/* Mobile */

@media (max-width: 768px){

    .ip-feature-container{
        flex-direction:column-reverse;
        text-align:center;
    }

    .ip-feature-content,
    .ip-feature-image{
        flex:0 0 100%;
        width:100%;
    }

    .ip-feature-image{
        max-width:400px;
        margin:auto;
    }

    .ip-feature-section{
        padding:80px 20px;
    }

    .ip-feature-content h2{
        margin-top:10px;
    }
}
/* about us page section 3 ended  */


/* about us page section 4 started   */
/* ==========================
   DUAL CARD SECTION
========================== */

.ip-dual-card-section{
    padding:10px 20px;
}

.ip-dual-card-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
}

/* Cards */

.ip-dual-card{
    flex:1;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
}

/* Different Colors */

.ip-card-left{
    background:linear-gradient(
        135deg,
        #fdf7ee,
        #fffaf4
    );
}

.ip-card-right{
    background:linear-gradient(
        135deg,
        #f2f8ff,
        #fcfdff
    );
}

/* Heading */

.ip-dual-card h3{
    font-size:28px;
    margin-bottom:18px;
    color:#222;
}

/* Description */

.ip-dual-card p{
    font-size:17px;
    line-height:1.8;
    color:#666;
    margin:0;
}

/* Hover Effect */

.ip-dual-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* Decorative Circle */

.ip-dual-card::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    top:-90px;
    right:-90px;
    background:rgba(255,255,255,0.4);
    transition:.5s ease;
}

.ip-dual-card:hover::before{
    transform:scale(1.3);
}

/* Tablet */

@media(max-width:992px){

    .ip-dual-card-container{
        gap:25px;
    }

    .ip-dual-card{
        padding:35px;
    }
}

/* Mobile */

@media(max-width:768px){

    .ip-dual-card-section{
        padding:80px 20px;
    }

    .ip-dual-card-container{
        flex-direction:column;
    }

    .ip-dual-card{
        width:100%;
        padding:30px;
    }

    .ip-dual-card h3{
        font-size:24px;
    }

    .ip-dual-card p{
        font-size:16px;
    }
}
/* about us page section 4 ended  */

/* ==========================
   GALLERY PREVIEW SECTION
========================== */

.ip-gallery-preview-section{
    padding:10px 20px 80px;
}

.ip-gallery-preview-container{
    max-width:1200px;
    margin:0 auto;
}

.ip-gallery-preview-header{
    text-align:center;
    margin-bottom:28px;
}

.ip-gallery-preview-header h2{
    font-size:clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom:10px;
    color:#222;
}

.ip-gallery-preview-header p{
    color:#666;
    max-width:700px;
    margin:0 auto;
    line-height:1.7;
}

.ip-gallery-preview-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:20px;
}

.ip-gallery-preview-card{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 14px 32px rgba(0,0,0,0.08);
    border:1px solid #efefef;
}

.ip-gallery-preview-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    transition:transform .35s ease;
}

.ip-gallery-preview-card:hover img{
    transform:scale(1.06);
}

.ip-gallery-preview-button-wrap{
    text-align:center;
    margin-top:24px;
}

@media(max-width:992px){
    .ip-gallery-preview-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media(max-width:576px){
    .ip-gallery-preview-section{
        padding:10px 16px 60px;
    }

    .ip-gallery-preview-grid{
        grid-template-columns:1fr;
    }

    .ip-gallery-preview-card img{
        height:200px;
    }
}

/* single page css starts here  */
/* ==========================
   DRIED FIGS SUPPLY SECTION
========================== */

.adf-figs-supply-section{
    padding:10px 20px;
    padding-bottom: 40px;
}

.adf-figs-supply-container{
    max-width:1200px;
    margin:auto;
}

/* Header */

.adf-figs-header{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
}

.adf-figs-header h2{
    font-size:clamp(2rem,4vw,3rem);
    color:#222;
    margin-bottom:20px;
    line-height:1.2;
}

.adf-figs-header p{
    font-size:17px;
    line-height:1.9;
    color:#666;
}

/* Cards */

.adf-figs-cards{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
    gap:30px;
    align-items:stretch;
}

.adf-figs-card{
    padding:35px;
    border-radius:24px;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:all .4s ease;
    height:100%;
    display:flex;
    flex-direction:column;
}

.adf-figs-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

/* Top Accent */

.adf-figs-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    /* background:#8ac908; */
}

/* Card Heading */

.adf-figs-card h3{
    font-size:24px;
    color:#222;
    margin-bottom:15px;
    line-height:1.3;
}

/* Card Text */

.adf-figs-card p{
    color:#666;
    line-height:1.8;
    margin:0;
    font-size:16px;
}

.content-wrapper{
    padding: 20px 180px;
    background: url(../images/dryfruit_bg.jpeg);
    background-size: cover;
    background-position: center;
}

.content-under-wrapper{
    border: 8px solid rgb(255, 255, 255);
    overflow: hidden;
    background: #850b0b1f;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tablet */

@media(max-width:992px){

    .adf-figs-cards{
        grid-template-columns:repeat(2,1fr);
    }

    .content-wrapper{
        padding: 20px 100px;
    }

}

/* Mobile */


@media(max-width:768px){

    .adf-figs-cards{
        grid-template-columns:1fr;
        gap:20px;
    }

    .adf-figs-card{
        padding:25px;
    }

    .adf-figs-card h3{
        font-size:20px;
    }

    .adf-figs-card p{
        font-size:15px;
        line-height:1.7;
    }

    .content-wrapper{
        padding: 20px 35px;
    }

}
/* single page css ends here  */


/* contact form styling starts here  */
.contact-wrapper {
  width: 100%;
  max-width: 600px;
  padding: 20px;
}

.contact-form {
  background: #ffece2;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ffece2;
  border-radius: 10px;
  outline: none;
  transition: 0.3s;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8d4e31;
  box-shadow: 0 0 5px rgba(255, 122, 89, 0.3);
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #8d4e31;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 600px) {
  .contact-form {
    padding: 20px;
  }
}
/* contact form styling ends here  */