﻿/*
    ============================
        Girfa IT Services
         www.girfa.co.in
    ============================
*/
:root {
    --g-red-light: #9f2c45;
    --g-red-dark: #880a26;
    --g-pink:#fef6f3;
    --g-gray: #fff5f7;
}
.g-center{
    display:block;margin:auto;
}
.g-center-inline{
    display:block;text-align:center;
}

#fade {
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 200%;
    background-color: #ababab;
    z-index: 1151;
    -moz-opacity: 0.8;
    opacity: .20;
    filter: alpha(opacity=80);
}

#modal {
    display: none;
    position: absolute;
    top: 75%;
    left: 48%;
    z-index: 1002;
    text-align: center;
}

.fileUpload {
    position: relative;
    overflow: hidden;
    /*margin: 10px;*/
    margin-top: 0px;
}
    .fileUpload input.upload {
        position: absolute;
        top: 0;
        right: 0;
        margin: 0;
        padding: 0;
        font-size: 20px;
        cursor: pointer;
        opacity: 0;
        filter: alpha(opacity=0);
    }

.g-form {
}

    .g-form input[type=text], [type=email], [type=password], [type=number], [type=date], textarea {
        border: solid #ababab 1px !important;
        border-radius: 0px;
        margin-bottom: 10px !important;
        width: 100%;
    }

    .g-form select {
        padding: 2px;
        border: solid #ababab 1px !important;
        border-radius: 0px;
        width: 100%;
        margin-bottom: 10px !important;
    }

@media (max-width:700px) {
    .g-form input {
        width: 100%;
        display: block;
        margin: auto;
    }
}

.g-mandate {
    font-weight: bold;
    color: red;
}

.g-drop-shadow {
    -webkit-box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.75);
    box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.75);
}
.g-bold {
    font-weight: bolder;
}

.g-web-show {
    display: block;
}

@media(max-width:700px) {
    .g-web-show {
        display: none !important;
    }
}

.g-mob-show {
    display: none;
}

@media(max-width:700px) {
    .g-mob-show {
        display: block !important;
    }
}

.g-img-border-radius {
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
}
.g-img-padding-border{
    border:solid 1px #ababab;
    padding:7px;
}
.g-list{

}
.g-list li{
    list-style:disc !important;
    margin-left:1% !important;
}
.g-bg-section {
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.g-bg-color-gray{
    background-color: var(--g-gray) !important;
}
.g-bg-color-red{
    background-color: var(--g-red-light) !important;
}
.g-bg-color-white{
    background-color: white;
}
.g-bg-color-pink{
    background-color: var(--g-pink)  !important;
}
.g-p-border-top-bottom {
    border-top: solid 1px black;
    border-bottom: solid 1px black;
    padding : 20px;
}

.g-font1 {
    font-family: 'Dosis', sans-serif !important;
}

.g-font2 {
    font-family: 'Josefin Sans', sans-serif !important;
}

.g-font3 {
    font-family: 'Source Sans Pro', sans-serif !important;
}

.g-panel-blue{
    padding: 20px;
    background-color: #001a39;
    color:white;
    margin: 1% !important;
}

.g-p-justify{

}
.g-p-justify p {
	text-align:justify;
}

.g-border-gradient {
	border: 5px solid transparent;
	border-image: linear-gradient(to right, #ff9900,#28166f );
	border-image-slice: 1;
}

.g-color-white{
    color:white !important;
}
.g-color-red{
    color: var(--g-red-dark) !important;
}
.g-color-black{
    color: black;
}
.g-color-gray{
    color: rgb(36, 36, 36);
}
.g-bgcolor-red-light{
    background-color: var(--g-red-light) !important;   
}
.g-heading{
  font-weight: 600 !important;
  
}
.g-sub-heading{
  font-weight: 600 !important;
  font-size: 28px !important;

}
/*========= Image 3d =========*/
.image-3d-wrapper {
    perspective: 1000px;
    display: inline-block;
}

    .image-3d-wrapper img {
        width: 300px; /* Adjust as needed */
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        transform-style: preserve-3d;
        border-radius: 10px;
    }

    .image-3d-wrapper:hover img {
        transform: rotateY(10deg) rotateX(10deg) scale(1.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
/*========= // Image 3d =========*/

/*=========  Home Page Product Section =========*/
        .products-section {
            background: #9f2c45;
            padding: 60px;
        }

        .section-title {
            color: #fff;
            font-size: 32px;
            margin-bottom: 30px;
        }

        /* Main 12-column grid */
        .products-layout {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 20px;
        }

        .p-col-3 {
            grid-column: span 3;
        }

        .p-col-6 {
            grid-column: span 6;
        }

        /* Right side nested grid */
        .right-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 20px;
        }

        /* Product card */
        .g-product-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            
        }

            .g-product-card img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.4s ease;
            }

            /* Dark overlay for readability */
            .g-product-card::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient( to bottom, rgba(0,0,0,0.2), rgba(88, 88, 88, 0.75) );
                opacity: 0;
                transition: opacity 0.4s ease;
                z-index: 1;
            }

            .g-product-card:hover::before {
                opacity: 1;
            }

            .g-product-card:hover img  {
              
                transform: scale(1.08);
            }
 .g-product-card:hover p{
  display: block;
transform: translateY(0);

 }
  .g-product-card:hover h3{
font-weight: 600 !important;

 }
        /* Text overlay */
        .p-overlay {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            color: #fff;
            z-index: 2;
        }
         .p-overlay h3 {
        font-size: 18px;
        font-weight: 900;
        src: url('/fonts/helvetica.ttf') format('truetype') !important;
        font-weight: 500 !important;
        }
       
      
            .p-overlay h3 {
                font-size: 15px !important;
                margin-bottom: 6px;
            }

            .p-overlay p {
                font-size: 12px;
                line-height: 1.4;
             display: none;
                transform: translateY(10px);
                transition: all 0.3s ease;
               
            }

        .product-card:hover {
            opacity: 1;
            transform: translateY(0);
            
        }
.p-overlay p:hover {
    opacity: 1;
    transform: translateY(0);
}
        /* Responsive */
        @media (max-width: 992px) {
            .products-layout {
                grid-template-columns: repeat(1, 1fr);
            }

            .p-col-3,
            .p-col-6 {
                grid-column: span 1;
            }

            .right-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }

    /*========= // Home Page Product Section =========*/
    /*=========  Home Contact =========*/
      .home-sale{
           padding:10px;
       }
           .home-sale:hover {
               background-color: #9f2c45;
               color: white;
               border-radius: 20px;
           }
       .home-sale i{
           display:block;
           margin-bottom: 10px;                      
       }
        .home-sale h4{
           font-size: 18px !important; 
           display: block !important;
           font-weight:800 ;
           
       }
       .home-sale p{
        font-size: 17px;
       }
       /*========= // Home Contact =========*/
       /*=========  Footer =========*/
            .g-footer {
            background-color: #e7e7e7;padding-top:30px;padding-bottom:30px;padding-left: 30px;padding-right:30px;
        }
        .g-footer a{
            color:#1b1b1b;
            text-decoration:none;
            padding-left:2px;padding-bottom:3px;font-size:14px;
        }
        .g-footer h4{
            font-size:large;margin-top:20px;
        }
            .g-footer input,button {
                padding: 10px;
                border-radius: 20px;
                border: none;
                -webkit-box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.75);
                -moz-box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.75);
                box-shadow: 1px 1px 8px 0px rgba(0,0,0,0.75);
            }
            .g-footer button {
                background-color: #04a592;color:white;padding-left:20px;padding-right:20px;border:none;border-radius:20px;padding-top:8px;padding-bottom:8px;
            }
            /*========= // Footer =========*/
/*========= Bread Crumb =========*/            
.inner-page-banner-area {
  text-align: left;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: block;

  padding: 50px 0 100px;
}
.inner-page-banner-area:after {
  position: absolute;
  content: "";
  
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.inner-page-banner-area .pagination-area {
  position: relative;
  z-index: 1;
}
.inner-page-banner-area .pagination-area h1 {
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 35px;
  color: #0e0d0dff;
}
.inner-page-banner-area h3{
    color:#9f2c45;font-weight:600;
}
.inner-page-banner-area input {
    background-color: #9f2c45 !important;border: 2px solid #ffffff;padding: 10px 40px;color: #ffffff;font-size: 16px;cursor: pointer;border-radius: 25px;
}
@media (min-width: 480px) and (max-width: 767px) {
  .inner-page-banner-area .pagination-area h1 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 479px) {
  .inner-page-banner-area .pagination-area h1 {
    font-size: 25px;
  }
}
.inner-page-banner-area .pagination-area ul li {
  display: inline-block;
  color: #FFFFFF;
  font-size: 14px;
}
.inner-page-banner-area .pagination-area ul li a {
  color: #fdc800;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.inner-page-banner-area .pagination-area ul li a:hover {
  color: #FFFFFF;
}            
/*========= // Bread Crumb =========*/    
/*========= About Us =========*/            
.about-section {
  background:var(--g-red-light);
  padding: 60px;
  color: #fff;
}

.about-grid {
  padding-left: 5%;
  padding-right: 5%;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 40px;
}

.about-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(200px, auto);
  gap: 20px;
}

.who-card {
  background: #fff;
  color: #9c2b3d;
  padding: 20px;
  border-radius: 20px;
  height: 350px;
  width: 98%;
}

.who-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.who-card .arrow {
  font-size: 20px;
  display: inline-block;
  margin-top: -20px;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
   height: 350px;
   
}

.image-card.full {
  
  grid-column: span 2;
  
}

.image-card img {
  
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-right h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-right p {
  line-height: 1.7;
  margin-bottom: 10px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 30px;
}

.feature span {
  font-size: 17px;
  margin-bottom: 0px;
  font-weight: 600;
  margin-left: 10px;
  
  display: block;
}

.feature p {
  font-size: 15px;
  line-height: 1.5;
  margin-left: 10px;
  font-weight: 10;
  
}
.feature {
  position: relative;
  padding-left: 30px;
}
.feature img{
  width: 30px;
}

.feature-icon {
  position: absolute;
  left: 0;
  top: 0px;
  font-size: 25px;
  color: #fff;
  
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .features {
    grid-template-columns: 1fr;
  }
}
/*========= // About Us =========*/    
/*=========  Marquee =========*/   
.vertical-marquee {
  height: 500px;               /* visible area */
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  flex-direction: column;
  animation: scrollUp 15s linear infinite;
}

.marquee-track img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 8px;
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}

/*========= // Marquee =========*/        
.g-btn-white{
    background-color: var(--g-red-light) ;padding: 10px 40px;color: #ffffff;font-size: 16px;cursor: pointer;border-radius: 25px;
    border: 2px solid var(--g-red-light) ;font-weight: 400;
}    
.g-btn-white:hover{
    background-color:#fff;border: 2px solid var(--g-red-light) !important;
    color:var(--g-red-dark);
}  
.g-btn-redbg{
  background-color: #9f2c45 !important;border: 3px solid #ffffff;padding: 10px 40px;color: #ffffff;font-size: 16px;cursor: pointer;border-radius: 25px;font-weight: 100 !important;
}
.g-btn-redbg:hover{
  background-color: white !important;
  border: 3px solid #880a26;
  color:#880a26
}
/*================== Principal Commitment ==================*/
.flex-container {
        display: flex;
        /* Enables flexbox */
        gap: 10px;
        /* Adds space between the divs */
        justify-content: center;
        /* Centers items horizontally */
        background-color: #fff5f7;
        padding: 20px;        
      }

      .flex-container>div {
       
        color: black;
        padding: 20px;
        font-size: 20px;
        border-radius: 8px;
        flex: 1;
        /* Makes all divs equal width */
        text-align: center;
      }
       .flex-container>div:hover {
        background-color: #9c2b3d;
      color: white;
        
        
      }
      .flex-container h4{
        font-size: 20px;
        font-weight: 900;
      }
          .flex-container p {
        font-size: 14px;
        font-weight: normal;
              
      }
      .flex-container>div:hover  svg path {
        
        fill: #fff;
  stroke: #fff;
  
      }
/*================== // Principal Commitment ==================*/
/*==================  Row-col ==================*/
.g-container {
    padding-left: 45px;
    padding-right: 45px
}
@media(max-width:700px) {
    .g-container {
        padding-left: 30px;
        padding-right: 30px
    }
}
.g-container2{
    max-width:1200px; margin:auto; padding:0 20px;
}
.g-row {
    display: flex;
    flex-wrap: wrap;
    margin: -12px; /* negative to balance inner padding (gutters) */
}
.g-col-md-4, .g-col-md-8,g-col-md-6,g-col-md-2,g-col-md-5,g-col-md-7,g-col-md-9 {
    width: 100%; /* default for mobile */
}
@media (min-width: 768px) {
    .g-col-md-2 {
        width: 16.666%;
        padding: 1%;
    }
    .g-col-md-4 {
        width: 33.333%;
        padding:1%;
    }
    .g-col-md-5 {
        width: 41.6665%;
        padding: 1%;
    }
    .g-col-md-6 {
        width: 50%;
        padding: 1%;
    }
    .g-col-md-7 {
        width: 58.3331%;
        padding: 1%;
    }
    /* 4/12 */
    .g-col-md-8 {
        width: 66.666%;
        padding: 1%;
    }
    /* 8/12 */
    .g-col-md-3 {
        width: 25%;
        padding: 1%;
    }
    .g-col-md-9 {
        width: 74.666%;
        padding: 1%;
    }
}
/*================== // Row-col ==================*/
/*==================  marquee ==================*/
.g-marquee {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
}

.g-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 15s linear infinite;
}

.g-marquee-track img {
  height: auto;
  margin-right: 40px; /* spacing between repeats */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*================== // marquee ==================*/
/*==================  poppins ==================*/
@font-face {
    font-family: 'MyFont';
    src: url('/fonts/poppins.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'MyFont';
    src: url('/fonts/helvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
/*================== // poppins ==================*/
/*==================  Home Slider ==================*/
.home-slider{
  top:400px;position:absolute;padding-left: 50px;z-index: 2000;
}
.home-slider input{
  background-color: #9f2c45;color:white;border:none;padding:10px 20px;border-radius:25px;cursor:pointer;font-weight: 600;
}
.home-slider span{
  color:white;font-weight: 550;
  font-size: 25px;padding: 0px;
}
.home-slider p{
  color:white;font-weight: 500;
}

@media(max-width:700px) {
    .home-slider {
      top:70px !important;
      padding-left: 20px
    }
    .home-slider h1{
  font-size: larger;
}
.home-slider p{
  font-weight: 300;
  font-size: 12px;
}
.home-slider input{
 padding:7px 15px;border-radius:20px;font-weight: 300;
}
}

@media(max-width:1024px) {
    .home-slider {
      top:50px !important;
      padding-left: 20px
    }
   
}


@media(max-width:1920px) {
    .home-slider {
      top:350px !important;
      padding-left: 20px
    }
   
}

/*================== // Home Slider ==================*/
/*==================  Icon Size ==================*/
.g-ico-size{
  font-size: 25px !important;
}

.icon-svg  {
  height: 40px;width: 40px;
  margin-bottom: 10px;
  
}
.icon-svg path {
  
  transition: fill 0.3s ease;
}

.icon-svg:hover path {
   stroke: rgb(255, 255, 255);
  cursor: pointer;
}
.g-ico-img{
    width: 20px;;
}
/*================== // Icon Size ==================*/
.g-psize{
  font-size: 25px;
}
.g-color-gray{
  background-color: #fff5f7;
}
/*==================  Full Screen  ==================*/
.g-full-screen{
  min-height: 100vh;
  align-items: center !important;
    display: flex;
     flex-wrap: wrap;
}
@media(max-width: 767px) {
    .g-full-screen{
      min-height: 80vh;
  }
   
}
/*================== // Full Screen  ==================*/
/*==================  Menu  ==================*/
.g-mob-menu-bg{
  background-color: var(--g-red-light);
}

@media(max-width: 767px) {
    .g-mob-menu-bg{
      background-color:#f1f2f4;
  }
   
}
/*================== // Menu  ==================*/
/*==================  Imaging Solution  ==================*/
/* Section background */
.product-section {
    background: #9f2c45;
    padding: 40px 0;
    font-family: Arial, Helvetica, sans-serif, sans-serif;
}

/* Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
}

.product-tabs .tab {
    background: #e9e9e9;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    border-right: 1px solid #ccc;
    position: relative;
}

.product-tabs .tab:last-child {
    border-right: none;
}

.product-tabs .tab.active {
    background: #ffffff;
    color: #000;
    /*font-weight: 600;*/
}

/* Triangle */
.product-tabs .tab.active::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}

/* Card */
.product-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff5f7;
    border-radius: 16px;
    padding: 30px;
    margin-top: 20px;
}

/* Grid */
.product-grid {
    display: flex;
    gap: 30px;
   
}

@media (max-width: 767px) {
    .product-grid {
        display: block;
        width: 100%;
          flex-direction: column;

    }
}/* Images */

.image-area {
    margin-left: 5%;
    width: 30%;
     min-width: 0;
   
     
}

 .content-area {
    width: 70% !important;
     min-width: 0;
}
@media (max-width: 767px) {
    .image-area {
        margin-left: 0%;
        width: 100%;
    }
}
.main-image {
    padding: 0px;
    width: 100%;
    border-radius: 10px;
    display: block;margin: auto;;
    
}
@media (max-width: 767px) {
   .main-image {
    
     display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain;
    
}
}
.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.thumbs img {
    width:130px;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid transparent;
    overflow: hidden;
}

.thumbs img:hover {
    border-color: #8b1d2c;
}

/* Content */
.content-area {
    width: 50%;
    
}


@media (max-width: 767px) {
    
.thumbs img {
     width: 65px;
        max-width: 24%;
}

    .content-area {
        width: 100%;
        
    }
     .content-area p {
        
    font-size: 15px !important;
    
        
    }
     .product-grid {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .image-area,
    .content-area {
        width: 100%;
        min-width: 0;
    }
}
.content-area h2 {
    
    margin-bottom: 15px;
}

.content-area p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
    word-wrap: break-word !important;
    overflow-wrap: anywhere;
    white-space: normal;
    
}

/* Button */
.enquire-btn {
    display: block;
   text-align: center;
   margin: 0% 20%;
    padding: 10px 26px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    margin-left: 30px;
    
}
/*================== // Imaging Solution  ==================*/
/*==================  Feature Product  ==================*/
.g-feature-product {
    
   border: solid 1px var(--g-red-dark);
   border-radius: 20px;
   background-color: #fdfdfe;
}

@media (max-width: 767px) {
    .g-feature-product {
       margin-top: 20px;
    }
}
.g-feature-product img {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.g-feature-product span{
    display: block;text-align: center;font-weight: bolder;padding: 3px;margin-top: 10px;
}
.g-feature-product p{
    font-size: 18px;padding:0px 20px;text-align: center;margin-top: 15px;;
}
.g-feature-product div{
   width: 100px;
             /* important so border is visible */
    border-top: 1px solid rgb(109, 109, 109);
    margin: 8px auto 0;     /* centers inside parent */
}
/*================== // Feature Product  ==================*/
/*==================  Cosmetic Product  ==================*/
    
        .cosmetic-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;padding: 0px;
            border-radius: 0px;
        }

@media (max-width: 767px) {
    .cosmetic-card {
       margin-top:20px;
    }
}
        .cosmetic-card img {
            width: 100%;
            
            display: block;
               
        }

        /* Overlay */
         .cosmetic-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: 0.4s ease;
        }

        /* Hover trigger */
        .cosmetic-card:hover .cosmetic-overlay {
            opacity: 1;
        }

        /* Title */
        .cosmetic-card h4 {
            color: #fff;
            margin-bottom: 10px;
            font-size: 18px;
        }

        /* Button */
        .view-btn {
            color: #fff;
            border: 1px solid #fff;
            padding: 6px 14px;
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .view-btn:hover {
            background: #fff;
            color: #000;
        }

        /* Corner brackets */
        .corner {
            position: absolute;
            width: 80px;
            height: 80px;
            border: 5px solid #fff;
        }

        .tl {
            top: 10px;
            left: 10px;
            border-right: none;
            border-bottom: none;
        }

        .tr {
            top: 10px;
            right: 10px;
            border-left: none;
            border-bottom: none;
        }

        .bl {
            bottom: 10px;
            left: 10px;
            border-right: none;
            border-top: none;
        }

        .br {
            bottom: 10px;
            right: 10px;
            border-left: none;
            border-top: none;
        }
    
/*================== // Cosmetic Product  ==================*/
/*==================   Product Laparoscopy  ==================*/

        .g-product-laparo-card {
            
            background: #fff;
            border-radius: 6px;
            padding: 15px;
            
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        }
@media (max-width: 767px) {
    .g-product-laparo-card {
        margin-bottom: 15px;
    }
}
        /* Title */
        .g-product-laparo-title {
            font-weight: 700;
            font-size: 15px;
            margin-bottom: 12px;
        }

        /* Body */
        .g-product-laparo-body {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
        }

        /* Features */
        .g-product-laparo-features p {
            font-size: 11px;
            margin: 5px 0;
            color: #333;
            
        }

        /* Image */
        .g-product-laparo-image img {
            max-width: 300px;
            width: 100%;
            height: auto;
        }

        /* Buttons */
        .g-product-laparo-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .g-product-laparo-actions a {
            flex: 1;
            text-align: center;
            padding: 8px 0;
            font-size: 13px;
            border-radius: 4px;
            text-decoration: none;
        }

        .g-laparo-btn-enquire {
            background: #9c2743;
            color: #fff;
        }

        .g-laparo-btn-view {
            background: #777;
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .g-product-laparo-body {
                flex-direction: column;
                text-align: center;
            }

            .g-product-laparo-image img {
                max-width: 150px;
            }
        }
    
/*================== //  Product Laparoscopy  ==================*/
/*==================   Product Monitor  ==================*/

.monitor-section {
    display: flex;
    gap: 40px;
    background: #fff3f5;
    padding: 40px;
    border-radius: 24px;
}

/* LEFT IMAGE */
.monitor-image-box {
    width: 45%;
}

.monitor-image-box img {
    width: 100%;
    border-radius: 14px;
}

/* RIGHT CONTENT */
.monitor-content {
    width: 55%;
}

.monitor-content h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.desc {
    color: #555;
    margin-bottom: 28px;
    font-size: 15px;
}

/* SIZE BUTTON GRID */
.size-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

/* BUTTON BASE */
.size-btn {
    margin-right: 100px;
    display: flex;
    align-items: center;
    height: 80px;
    border: 1.5px solid #8d0f2a;
    background: transparent;
    color: #8d0f2a;
    cursor: pointer;

    /* KEY SHAPE */
    border-radius: 40px 14px 14px 40px;
    padding-right: 22px;
    gap: 14px;

    font-weight: 600;
 padding-left: 0 !important;      /* icon touches left edge */
    padding-right: 22px;
    align-items: center;
    font-size: 30px;
   
}


/* ICON */
.icon-wrap {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
     margin-left: 0;
     border:solid 1px #8d0f2a;
}

.icon-wrap img {
    width: 75px;
    height: 75px; 
    border-radius: 50%;
     
}

/* ACTIVE STATE */
.size-btn.active {
    background: #8d0f2a;
    color: #fff;
}

.size-btn.active .icon-wrap {
    background: #fff;
}

/* ENQUIRE BUTTON */
.enquire-btn {
    background: #8d0f2a;
    color: #fff;
    padding: 14px 34px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
}

/*================== //  Product Monitor  ==================*/
/*==================   Instrument slide   ==================*/
.g-slider-box {
    position: relative;
   
    
  
    overflow: hidden;
    background: #fff5f5;
    border-radius: 12px;
      width: 100vw;
    height: 100vh;
}

.g-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.g-slide.g-active {
    display: block;
}

.g-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #8b1d3d;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 25px;
    cursor: pointer;
    z-index: 10;
}

.g-left {
    
    left: 0px;
    margin-left: 10px;
    
}

.g-right {
    right: 0px;
    margin-right: 15px;
}


/*================== //  Instrument slide   ==================*/
/*==================   Language Drop down menu   ==================*/

.g-lang-switcher {
    position: relative;
    display: inline-block;
}

/* hide checkbox */
.g-lang-toggle {
    display: none;
}

.g-lang-globe {
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

/* dropdown default hidden */
.g-lang-dropdown {
    display: none;
    position: absolute;
   
    top: 100px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    list-style: none;
    padding: 6px 0;
    min-width: 140px;
    z-index: 9999;
}

/* 🔑 show dropdown on click */
.g-lang-toggle:checked + .g-lang-globe + .g-lang-dropdown {
    display: block;
}

.g-lang-item {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    font-size: 13px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.g-lang-item:hover {
    background: #f3f3f3;
}

.g-lang-flag {
    width: 18px;
    height: 12px;
    margin-right: 8px;
    object-fit: cover;
}
/*================== //  Language Drop down menu   ==================*/
/*==================   Gallery  ==================*/

        .g-responsive-image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 12px;
        }

        /* Equal height card */
        .g-responsive-item {
            height: 180px; /* 👈 change once, all equal */
            overflow: hidden;
            border-radius: 10px;
        }

            /* Image fill without distortion */
            .g-responsive-item img {
                width: 100%;
                height: 100%;
                object-fit: cover; /* 🔑 crop, don't stretch */
                display: block;
            }

    /*================== Award   ==============================*/
    
        .g-award {
            width: 100%;
            background: #fff;
        }

        /* TEXT FIRST */
        .g-award-text {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px 20px;
            text-align: center;
        }

        .g-award-title {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .g-award-person {
            font-size: 18px;
            color: #555;
            margin-bottom: 15px;
        }

        .g-award-desc {
            font-size: 16px;
            line-height: 1.7;
            color: #333;
        }

        /* IMAGE AREA */
        .g-award-view {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .g-award-images {
            height: 100%;
        }

        .g-award-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 0.7s ease;
        }

            .g-award-img.active {
                opacity: 1;
            }

        /* ARROWS */
        .g-award-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            background: rgba(0,0,0,0.4);
            color: #fff;
            border: none;
            font-size: 28px;
            padding: 14px 18px;
            cursor: pointer;
        }

        .g-left {
            left: 20px;
        }

        .g-right {
            right: 20px;
        }

        .g-award-arrow.hidden {
            display: none;
        }

    

/*==================   Product Laparoscopy  ==================*/

        .g-lapro-wrap {
            background: #fff4f6;
            padding: 30px 20px;
        }

        .g-lapro-inner {
            max-width: 1400px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* Images */
        .g-lapro-main-img img {
            width: 100%;
            border-radius: 12px;
            transition: opacity 0.3s ease;
        }

        .g-lapro-thumbs {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 20px;
        }

        .g-lapro-thumb {
            width: 100%;
            cursor: pointer;
            border-radius: 10px;
            opacity: 0.6;
            transition: all 0.3s ease;
        }

            .g-lapro-thumb:hover,
            .g-lapro-thumb.active {
                opacity: 1;
                outline: 2px solid #8b102a;
            }

        /* Content */
        .g-lapro-content h1 {
            font-size: 40px;
            margin-bottom: 15px;
            font-weight:200;
        }
.g-lapro-content h3 {
          font-size: 18px;;
            font-weight:bold
        }
        .g-lapro-content p {
            font-size: 15px;
            color: #444;
            margin-bottom: 20px;
        }

        .g-lapro-content ul {
            padding-left: 18px;
            margin-bottom: 25px;
        }

        .g-lapro-content li {
            font-size: 15px;
            margin-bottom: 8px;
        }
        .g-lapro-content li strong,strong {
           font-weight: bold;
        }

                .g-lapro-btn {
                    display: block;
                    width: fit-content;
                    margin: 30px auto 0;
                    background: #8b102a;
                    color: #fff;
                    padding: 12px 30px;
                    border-radius: 30px;
                    text-decoration: none;
                }
                .g-lapro-btn:hover {
                  
                    background: #fdfbfb;
                    color: #8b102a;
                    border:solid 1px #8b102a;
                }

        /* Responsive */
        @media (max-width: 900px) {
            .g-lapro-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .g-lapro-content h1 {
                font-size: 26px;
            }
        }

    
/*================== //  Product Laparoscopy  ==================*/
.g-h1{
    color: #9f2c45;
    font-weight:bold;
    font-size: 40px;
    letter-spacing: 1px;
}
.g-sub-heading{
    font-size: 30px;
    color:#1a1a1a;
    font-weight: bold;
}

/*==================  Breadcrumb  ==================*/
/* MAIN HEADER */
.g-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    gap: 40px;
    background-color: #fef6f3;
    
}

/* LEFT TEXT */
.g-header-content {
   flex: 3;
    max-width: 850px !important;
    padding: 80px 0 80px 8%; /* left spacing only */
}

.g-header-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
      font-weight: bold;
}

.g-header-content h3 {
    font-size: 35px;
    margin-bottom: 20px;
    color:#9f2c45;
    font-weight: bold;
}
.g-header-content p {
    font-size: 22px;
    margin-bottom: 30px;
}

/* BUTTON */
.g-header-btn {
    display: inline-block;
     background-color: #9f2c45 !important;border: 3px solid #ffffff;padding: 10px 40px;color: #ffffff;font-size: 16px;cursor: pointer;border-radius: 25px;font-weight: 600 !important;
}
.g-header-btn:hover {
    background-color: white !important;
  border: 3px solid #880a26;
  color:#880a26
}
/* RIGHT IMAGE */
.g-header-image {
       flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 1%;
}

.g-header-image img {
   width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* MOBILE */
@media (max-width: 768px) {
    .g-header {
        flex-direction: column;
        text-align: center;
    }

    .g-header-image {
        display: none; /* hide image on mobile */
    }

    .g-header-content h1 {
        font-size: 32px;
    }
}
/*==================   // Breadcrumb  ==================*/
.g-strong{}
.g-strong strong {
    font-weight: 700 !important;
    color: #000;
}
/*==================    Home Slider   ==================*/
.g-home-slide-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.g-home-slide-slider {
    display: flex;
    align-items: center;
    transition: transform 0.5s ease;
}

.g-home-slide {
    min-width: 70%;
    margin: 0 15px;
    transition: opacity 0.4s ease;
    opacity: 0.5;
    position: relative;
}

.g-home-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1));
    border-radius: 10px;
}

.g-home-slide-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    color: #fff;
    max-width: 500px;
}

.g-home-slide-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.g-home-slide-content p {
    font-size: 16px;
    margin-bottom: 15px;
}

.g-home-slide-btn {
    display: inline-block;
    background: #b3002d;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
}

/* REMOVE SCALE — keep same size */
.g-home-slide.active {
    opacity: 1;
}

.g-home-slide img,
.g-home-slide video {
    display: block;
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 10px;
    
}

/* Indicators */
.g-home-slide-indicators {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.g-home-slide-indicators span {
    width: 40px;
    height: 4px;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

.g-home-slide-indicators span.active {
    background: #b3002d;
}


/*==================   // Home Slider   ==================*/