




        /* Bottom Feature Grid */
        .feature-grid {
            position: absolute;
            bottom: 0;
            width: 100%;
            display: flex;
            z-index: 2;
        }

        .feature-box {
            flex: 1;
            padding: 35px;
            text-align: center;
            text-decoration: none;
            color: white;
            font-size: 32px;
            font-weight: 800;
            font-style: italic;
            transition: 0.3s;
        }

        .dark-gray {
            background-color: #262626;
        }

        .iron-red {
            background-color: #D32F2F;
        }

        .feature-box:hover {
            opacity: 0.9;
        }

        /* Accessibility Icon */
        .accessibility-icon {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #D32F2F;
            border-radius: 50%;
            padding: 10px;
            z-index: 100;
        }

        .top-bar {
            background-color: #c30d0d;
            color: white;
            text-align: center;
            word-spacing: 4px;
            padding: 15px 15px;
            font-size: 16px;
            font-style: italic;
            cursor: pointer;
            line-height: 1.9;
            word-wrap: break-word;
        }

        .top-bar a {
            color: white;
            font-weight: bold;
        }

        /* Hover effect */
        .top-bar:hover {
            text-decoration: underline;
        }

        /* Responsive Adjustments */
        @media (max-width: 600px) {
            .top-bar {
                font-size: 12px;
                padding: 8px 10px;
            }
        }

        @media (max-width: 400px) {
            .top-bar {
                font-size: 11px;
            }
        }




/* header css start  */


        /* --- Base Styles (No Change) --- */
        .main-header {
            background: white;
            padding: 20px 0;
            width: 100%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 100;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 30px;
        }

        .logo img {
            height: 60px;
            display: block;
        }

        .nav-menu>ul {
            list-style: none;
            display: flex;
            gap: 60px;
            margin: 0;
            padding: 0;
        }

        .nav-menu ul li {
            position: relative;
        }

        .nav-menu ul li a {
            text-decoration: none;
            color: rgb(40, 40, 40);

            font-size: 20px;
            display: block;
            font-family: 'Montserrat', sans-serif;
            padding: 10px 0;
            line-height: 29px;
            font-weight: 600;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 260px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            margin: 0;
            list-style: none;
            z-index: 1000;
            border-top: 2px solid #333;
        }

        .dropdown-content li {
            display: block;
            width: 100%;
        }

        .dropdown-content li a {
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            margin-left: 10px;
        }

        .dropdown-content li a:hover {
            background-color: #f5f5f5;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        .contact-btn {
            border: 2.0px solid #333;
            padding: 12px 50px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .contact-btn:hover {
            background-color: #333;
            color: #fff;
        }

        /* --- Responsive Styling --- */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle .bar {
            height: 3px;
            width: 25px;
            background-color: #333;
            margin: 4px 0;
            transition: 0.4s;
        }

        @media (max-width: 992px) {
            .menu-toggle {
                display: flex;
                order: 2;
            }

            .container {
                padding: 0 20px;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                display: block;
            }

            .nav-menu ul {
                flex-direction: column;
                gap: 0;
                padding: 20px;
            }

           
            .nav-menu .dropdown-content {
                position: static;
                box-shadow: none;
                border-top: none;
                padding-left: 20px;
                display: none;
            }

            
            .nav-menu .dropdown:hover .dropdown-content {
                display: block;
            }

            .contact-btn {
                display: none;
            }

            .logo {
                flex: 1;
            }
        }
   


        /* header css end  */




          /* banner section start   */


          
/* ===== HERO SECTION ===== */

.hero-section{
position:relative;
height:80vh;
width:100%;
overflow:visible;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:white;
}

#bg-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-1;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
z-index:0;
}

.hero-content{
position:relative;
z-index:1;
text-align:center;
margin-bottom:100px;
}

.hero-logo{
width:400px;
margin-top:-60px;
}

.hero-section h1{
font-size:60px;
font-weight:800;
font-style:italic;
line-height:1.1;
text-transform:uppercase;
}

/* ===== CATEGORY CONTAINER ===== */

.category-container{
position:absolute;
bottom:-360px;
display:flex;
gap:40px;
width:100%;
max-width:1200px;
padding:0 20px;
z-index:10;
}

/* ===== CARD ===== */

.card{
flex:1;
width:50%;
display:flex;
flex-direction:column;
box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

/* ===== HEADER ===== */

.card-header{
padding:25px;
text-align:center;
}

.card-header h2{
margin:0;
font-style:italic;
font-size:36px;
}

.card-header p{
margin:5px 0 0;
font-size:17px;
opacity:0.9;
}

/* ===== LEFT CARD ===== */

.left-card .card-header{
background:#333;
}

/* ===== RIGHT CARD ===== */

.right-card .card-header{
background:#c0392b;
}

/* ===== GRID BODY ===== */

.grid-body{
display:grid;
grid-template-columns:repeat(3,1fr);
background:#fff;
color:#333;
grid-auto-rows:190px;
}

.right-card .grid-body{
grid-template-columns:repeat(2,1fr);
grid-auto-rows:127px;
}

/* ===== GRID ITEMS ===== */

.grid-item{
padding:20px;
border:1px solid #eee;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
font-weight:bold;
min-height:120px;
cursor:pointer;
transition:background 0.3s;
font-style:italic;
}

.grid-item:hover{
background:#f5f5f5;
}

/* ===== IMAGE FIX ===== */

.grid-item img{
width:100%;
max-width:auto;
height:190px;
object-fit:cover;
margin-bottom:0px;
}

/* ===== FOOTER ===== */

.card-footer{
padding:18px;
text-align:center;
font-weight:bold;
cursor:pointer;
color:white;
font-size:18px;
}

.left-card .card-footer{
background:#222;
}

.right-card .card-footer{
background:#a93226;
}
/* ===== TABLET ===== */

@media (max-width:1024px){

.hero-logo{
width:280px;
margin-top:-40px;
}

.hero-section h1{
font-size:48px;
}

.category-container{
bottom:-380px;
gap:25px;
}

.grid-item img{
height:150px;
}

}


/* ===== MOBILE ===== */

@media (max-width:768px){

.hero-section{
height:auto;
padding:100px 0 40px;
}

.hero-logo{
width:220px;
margin-top:0;
}

.hero-section h1{
font-size:32px;
line-height:1.2;
}

.category-container{
position:relative;
bottom:0;
flex-direction:column;
gap:30px;
margin-top:40px;
}

.card{
width:100%;
}

.grid-body{
grid-template-columns:repeat(2,1fr);
grid-auto-rows:150px;
}

.right-card .grid-body{
grid-template-columns:repeat(2,1fr);
grid-auto-rows:140px;
}

.grid-item{
font-size:16px;
padding:15px;
}

.grid-item img{
height:130px;
}

.card-header h2{
font-size:26px;
}

}


/* ===== SMALL MOBILE ===== */

@media (max-width:480px){

.hero-section h1{
font-size:26px;
}

.hero-logo{
width:180px;
}

.grid-body{
grid-template-columns:1fr;
}

.right-card .grid-body{
grid-template-columns:1fr;
}

.grid-item{
font-size:15px;
}

.grid-item img{
height:120px;
}

.card-header{
padding:18px;
}

.card-header h2{
font-size:22px;
}

}


/* banner section end    */


/* testimonial section start    */

     
        .testimonial-section {
            padding: 60px 20px;
       
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
            font-family: 'Arial', sans-serif;
        }

        .testimonial-container {
            width: 100%;
           margin-top:300px;
            max-width: 1200px;
            display: flex;
            align-items: center;
            gap: 40px;
            perspective: 1000px;
        }

     
        .owner-photo-container {
            flex: 0 0 450px;
            height: 450px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            transform-style: preserve-3d;
        }

        .owner-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* HOVER ANIMATION */
        .testimonial-container:hover .owner-photo-container {
            transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
            box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
        }

        /* Text content settings */
        .testimonial-content {
            flex: 1;
            border-left: 4px solid #e0e0e0;
            padding: 10px 0 10px 40px;
            text-align: left;
        }

        .quote-text {
            font-size: 24px;
            font-weight: 300;
            color: #555555;
            line-height: 1.5;
            margin-bottom: 25px;
            letter-spacing: 0.5px;
        }

        .quote-author {
            font-size: 22px;
            font-weight: 800;
            font-style: italic;
            color: #333333;
            margin: 0;
        }

        /* --- Responsive Adjustments --- */

        /* Tablet Devices (max-width: 1024px) */
        @media (max-width: 1024px) {
            .owner-photo-container {
                flex: 0 0 350px;
                /* Size reduced for tablets */
                height: 350px;
            }

            .quote-text {
                font-size: 20px;
            }
        }

        /* Mobile Devices (max-width: 768px) */
        @media (max-width: 768px) {
            .testimonial-container {
                flex-direction: column;
                gap: 30px;
                margin-top:-100px
            }

            .owner-photo-container {
                flex: 0 0 280px;
                /* Square size for mobile */
                width: 280px;
                height: 280px;
            }

            .testimonial-content {
                border-left: none;
                border-top: 4px solid #e0e0e0;
                padding: 20px 0 0 0;
                text-align: center;
            }

            .quote-text {
                font-size: 18px;
                padding: 0 10px;
            }

            .quote-author {
                font-size: 18px;
            }

           
            .testimonial-container:hover .owner-photo-container {
                transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
          
        }
    

        /* Very Small Devices (max-width: 480px) */
        @media (max-width: 480px) {
            .owner-photo-container {
                flex: 0 0 220px;
                width: 220px;
                height: 220px;
            }

            .testimonial-section {
                padding: 40px 15px;
                margin-top:-100px
            }

            .quote-text {
                font-size: 16px;
            }
             .testimonial-container {
                flex-direction: column;
                gap: 30px;
                margin-top:50px
            }
        }
    }

    /* testimonial section end     */



        .body-tc-canopy-section {
            font-family: 'Montserrat', sans-serif;
            background: #f6f6f6;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 100px;
         
        }

        /* ===== Main Section ===== */
        .tc-canopy-section {
            display: flex;
            background: #f2f2f2;
            max-width: 1200px;
            min-height: 500px;
            width: 100%;
            padding: 0 40px;
            gap: 50px;
            align-items: center;
        }

        /* ===== Image Grid ===== */
        .tc-image-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            flex: 1.2;
            align-items: start;
        }

        .tc-img-box img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        
        .tc-img-box:nth-child(1) {
            height: 320px;
            margin-top: -40px;
        }

        .tc-img-box:nth-child(2) {
            height: 360px;
            margin-top: -40px;
        }

        .tc-img-box:nth-child(3) {
            height: 320px;
            margin-top: -30px;
        }

        .tc-img-box:nth-child(4) {
            height: 320px;
            margin-top: 0px;
        }

        /* ===== Right Content ===== */
        .tc-content-area {
            flex: 1;
        }

        .tc-title {
            font-size: 42px;
          
            font-style: italic;
            color: #333;
            margin-top: -110px;
            letter-spacing: -1px;
            line-height: 2;
            font-weight: normal;
        }

        /* ===== Feature List ===== */
        .tc-feature-list {
            list-style: none;
            position: relative;
            margin-bottom: 40px;
            padding: 0;
        }

        .tc-feature-list::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 15px;
            bottom: 45px;
            width: 2px;
            background: #8b2318;
            z-index: 0;
        }

        .tc-feature-list li {
            position: relative;
            margin-top: 40px;
            z-index: 1;
            display: flex;
            align-items: center;
            margin-bottom: 5px;
        }

        .tc-check-icon {
            background: #8b2318;
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 14px;
            margin-right: 25px;
            flex-shrink: 0;
            border: 2px solid #8b2318;
            box-shadow: inset 0 0 0 2px #edebe4;
        }

        .tc-feature-text {
            font-size: 20px;
            font-weight: 700;
            font-style: italic;
            color: #444;
            text-align: left;
        }

        /* ===== Description ===== */
        .tc-description {
            font-size: 17px;
            font-weight: 600;
            font-style: italic;
            color: #555;
            margin-bottom: 40px;
            line-height: 1.5;
            max-width: 90%;
        }

        /* ===== Button ===== */
        .tc-quote-btn {
            display: inline-block;
            background: #2e2e2e;
            color: #fff;
            padding: 18px 45px;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1.5px;
            transition: all .3s ease;
        }

        .tc-quote-btn:hover {
            background: #000;
            transform: translateY(-2px);
        }

        /* ===== Responsive Adjustments ===== */

      /* ===== Tablet ===== */

@media (max-width:1024px){

.tc-canopy-section{
flex-direction:column;
padding:60px 30px;
gap:40px;
text-align:center;
}

.tc-image-grid{
width:100%;
grid-template-columns:1fr 1fr;
}

.tc-img-box:nth-child(n){
margin-top:0 !important;
height:240px;
}

.tc-content-area{
width:100%;
}

.tc-title{
font-size:34px;
margin-top:0;
line-height:1.4;
}

.tc-description{
max-width:100%;
}

.tc-feature-list li{
justify-content:center;
}

.tc-feature-list::before{
display:none;
}

}


/* ===== Mobile ===== */

@media (max-width:768px){

.body-tc-canopy-section{
margin-top:50px;
padding:0 15px;
}

.tc-canopy-section{
flex-direction:column;
padding:40px 20px;
gap:30px;
text-align:center;
}

.tc-image-grid{
grid-template-columns:1fr 1fr;
gap:12px;
}

.tc-img-box:nth-child(n){
height:160px;
margin-top:0 !important;
}

.tc-title{
font-size:26px;
margin-top:0;
line-height:1.3;
}

.tc-feature-list{
margin-bottom:30px;
}

.tc-feature-list li{
justify-content:center;
margin-top:25px;
}

.tc-feature-text{
font-size:17px;
}

.tc-description{
font-size:15px;
line-height:1.6;
max-width:100%;
}

.tc-quote-btn{
padding:14px 30px;
font-size:13px;
}

}


/* ===== Small Mobile ===== */

@media (max-width:480px){

.tc-image-grid{
grid-template-columns:1fr;
}

.tc-img-box:nth-child(n){
height:200px;
}

.tc-title{
font-size:22px;
}

.tc-feature-text{
font-size:15px;
}

.tc-check-icon{
width:26px;
height:26px;
font-size:12px;
margin-right:12px;
}

.tc-description{
font-size:14px;
}

}





   .custom-hopper-wrapper {
            font-family: 'Montserrat', sans-serif;
            background-color: #ffffff;
            display: flex;
            justify-content: center;
            padding: 80px 20px;
        }

        .custom-hopper-inner {
            display: flex;
            max-width: 1200px;
            width: 100%;
            gap: 60px;
            align-items: center;
        }

        /* Left Side: Text Content */
        .custom-content-box {
            flex: 1;
            text-align: right;
        }

        .custom-main-title {
            font-size: 38px;
            font-weight: 800;
            font-style: italic;
            color: #333;
            margin-bottom: 50px;
            text-transform: uppercase;
        }

        .custom-feature-list {
            list-style: none;
            position: relative;
            margin-bottom: 40px;
            padding: 0;
        }

        /* Vertical line behind icons */
        .custom-feature-list::after {
            content: '';
            position: absolute;
            right: 24px; /* Center of the 50px icon */
            top: 10px;
            bottom: 30px;
            width: 2px;
            background-color: #8b2318;
            z-index: 1;
        }

        .custom-feature-item {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-bottom: 35px;
        }

        .custom-feature-label {
            font-size: 22px;
            font-weight: 700;
            font-style: italic;
            color: #333;
            margin-right: 30px;
        }

        .custom-icon-circle {
            background-color: #8b2318;
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            flex-shrink: 0;
            border: 3px solid white; /* White ring effect */
            box-shadow: 0 0 0 1px #8b2318; /* Outer thin border */
        }

        .custom-sub-desc {
            font-size: 18px;
            font-weight: 700;
            font-style: italic;
            color: #444;
            margin-bottom: 40px;
            line-height: 1.4;
            max-width: 400px;
            margin-left: auto; /* Keeps it right aligned */
        }

        .custom-action-btn {
            display: inline-block;
            background-color: #262626;
            color: white;
            padding: 16px 45px;
            text-decoration: none;
            font-weight: 800;
            font-size: 15px;
            text-transform: uppercase;
            transition: 0.3s ease;
        }

        .custom-action-btn:hover {
            background-color: #000;
            transform: translateY(-2px);
        }

        /* Right Side: Image Grid */
        .custom-image-mosaic {
            flex: 1.2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .custom-img-card {
            width: 100%;
            height: 240px;
            overflow: hidden;
            background-color: #eee;
        }

        .custom-img-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .custom-hopper-inner {
                flex-direction: column;
                text-align: center;
            }
            .custom-content-box {
                text-align: center;
            }
            .custom-feature-item {
                justify-content: center;
            }
            .custom-feature-label {
                margin-right: 15px;
                font-size: 18px;
            }
            .custom-feature-list::after {
                display: none;
            }
            .custom-sub-desc {
                margin: 0 auto 30px;
            }
        }

        @media (max-width: 580px) {
            .custom-image-mosaic {
                grid-template-columns: 1fr;
            }
            .custom-main-title {
                font-size: 28px;
            }
        }
    


             /* General Setup */



        .new-arrival-wrap {
            margin-top: 300px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding: 10px 20px;
            background-color: #f8f8f8;
        }

        .hero-heading {
            font-size: 36px;
            font-style: italic;
            font-weight: 800;
            color: #333;
            margin-bottom: 20px;
        }

        .intro-text {
            font-size: 18px;
            color: #555;
            max-width: 800px;
            margin: 0 auto 50px auto;
            line-height: 1.6;
        }

        .intro-text a {
            color: #c44d3a;
            text-decoration: underline;
        }

        /* Grid Layout */
        .items-flex-row {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 0;
            position: relative;
        }

        .item-unit {
            flex: 1;
            padding: 0 40px;
        }

        .thumb-holder {
            width: 250px;
            height: 180px;
            margin: 0 auto 20px auto;
            overflow: hidden;
        }

        .thumb-holder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .item-title {
            font-size: 22px;
            font-style: italic;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }

        .item-caption {
            font-size: 16px;
            color: #c44d3a;
            margin-bottom: 30px;
            min-height: 50px;
        }

        /* Vertical Line */
        .middle-line {
            width: 1px;
            background-color: #ccc;
            height: 350px;
            align-self: center;
        }

        /* Button Style */
        .action-link {
            display: inline-block;
            background-color: #2469b4;
            color: #fff;
            padding: 12px 40px;
            text-decoration: none;
            font-size: 16px;
            border-radius: 2px;
            transition: background 0.3s ease;
        }

        .action-link:hover {
            background-color: #1a4e8a;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .items-flex-row {
                flex-direction: column;
            }

            .middle-line {
                display: none;
            }

            .item-unit {
                margin-bottom: 40px;
            }
        }



           .visit-footer-wrap {
            padding: 80px 20px;
            background-color: #ffffff;
            text-align: center;
            font-family: 'Arial', sans-serif;
        }

        .visitor-msg-title {
            font-size: 28px;
            color: #444444;
            font-weight: 700;
            font-style: italic;
            line-height: 1.4;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .brand-img-holder {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .main-brand-gfx {
            max-width: 300px;
            height: auto;
            display: block;
        }

        /* Responsive adjustment */
        @media (max-width: 768px) {
            .visitor-msg-title {
                font-size: 22px;
            }

            .main-brand-gfx {
                max-width: 220px;
            }
        }


