/* ===================================== Index Page ============================================= */
.body {
    margin: 0%;
    width: 100%;
}

/* Hover-activated dropdown */
.hover-dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* Prevents jump */
}

.navbar .dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown-menu li a:hover {
    background-color: #0A6DD3;
    color: white;
}

.rotate-btn .rotate-icon {
    transform: rotate(-35deg);
    /* Rotate to mimic a cross direction */
}

.header .btn {
    border: 1px solid #0D5BB5;
    border-radius: 50px;
    background-color: #0D5BB5;
}

/* Fixing image display */
.carousel-item {
    height: 100vh;
    /* Full-screen height */
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-weight: bold;
}

/* Dots Indicator Styling */
.carousel-indicators button {
    background-color: white !important;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.wel-msg img {
    width: 100%;
    height: 100%;
}

.wel-msg h1 {
    font-family: 'Boska';
    font-style: normal;
    font-weight: 500;
    font-size: 52px;
    line-height: 120%;
}

.wel-msg p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #515158;
    text-align: justify;
}

.wel-msg .btn {
    border: 1px solid #0D5BB5;
    border-radius: 50px;
    color: #0D5BB5;
    font-size: 15px;
}

.manufacturing-section h1 {
    font-family: 'Boska', serif;
    font-weight: 500;
    font-size: 50px;
    line-height: 1.2;
    text-align: center;
}

.manufacturing-section p {
    color: #515158;
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
}

.manufacturing-section .info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.manufacturing-section .info .col-8,
.manufacturing-section .info .col-4 {
    padding: 10px;
}

.manufacturing-section .info span {
    display: block;
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
}

.manufacturing-section .info p {
    text-align: left;
}

@media screen and (max-width: 480px) {
    .manufacturing-section .info {
        flex-direction: column;
        text-align: center;
    }

    .manufacturing-section .info .col-8,
    .manufacturing-section .info .col-4 {
        width: 100%;
        padding: 10px 0;
    }

    .manufacturing-section .info p {
        padding: 0 15px;
        text-align: center;
    }
}

@media screen and (min-width: 481px) and (max-width: 600px) {
    .manufacturing-section .info {
        flex-direction: column;
    }

    .manufacturing-section .info .col-8,
    .manufacturing-section .info .col-4 {
        width: 100%;
    }

    .manufacturing-section .info p {
        padding: 0 20px;
    }
}

@media screen and (min-width: 601px) and (max-width: 768px) {
    .manufacturing-section .info {
        flex-direction: column;
    }

    .manufacturing-section .info .col-8,
    .manufacturing-section .info .col-4 {
        width: 100%;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .manufacturing-section .info {
        flex-direction: row;
    }

    .manufacturing-section .info .col-8 {
        width: 65%;
    }

    .manufacturing-section .info .col-4 {
        width: 35%;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
    .manufacturing-section .info .col-8 {
        width: 65%;
    }

    .manufacturing-section .info .col-4 {
        width: 35%;
    }
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
    .manufacturing-section .info .col-8 {
        width: 68%;
    }

    .manufacturing-section .info .col-4 {
        width: 30%;
    }
}

@media screen and (min-width: 1441px) and (max-width: 5000px) {
    .manufacturing-section .info .col-8 {
        width: 70%;
    }

    .manufacturing-section .info .col-4 {
        width: 28%;
    }
}

 .crafting h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }
    
    .crafting p {
      font-size: 1.1rem;
      color: #666;
      margin-bottom: 2rem;
    }
    
    .letter-container {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
      padding: 40px 0;
    }
    
    .letter-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      position: relative;
    }
    
    .letter-box {
      width: 120px;
      height: 160px;
      font-size: 120px;
      font-weight: 900;
      color: transparent;
      -webkit-background-clip: text;
      background-clip: text;
      background-size: cover;
      background-position: center;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      z-index: 1;
    }
    
    .letter-preview {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 80px;
      object-fit: cover;
      opacity: 0;
      transition: all 0.3s ease;
      z-index: 10;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      border-radius: 4px;
      pointer-events: none;
    }
    
    .letter-item:hover .letter-preview {
      opacity: 1;
      width: 150px;
      height: 150px;
      text-align: center;
      justify-content: center;
      margin-left: 18%;
    }
    
    .category-label {
      position: relative;
      font-size: 14px;
      color: #bbb;
      margin-right: 30px;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      text-align: center;
      white-space: nowrap;
      padding: 15px 0;
    }
    
    .category-label::before,
    .category-label::after {
      content: "";
      position: absolute;
      left: 50%;
      width: 1px;
      height: 20px;
      background-color: #bbb;
      transform: translateX(-50%);
    }
    
    .category-label::before {
      top: -10px;
    }
    
    .category-label::after {
      bottom: -10px;
    }
    
    .letter-box[data-letter="G"] {
      background-image: url('../image/G W O S D WORD IMAGE/GVT _ PGVT - WORD IMAGE.png');
    }
    
    .letter-box[data-letter="W"] {
      background-image: url('../image/G W O S D WORD IMAGE/WALL TILES - - WORD IMAGE.png');
    }
    
    .letter-box[data-letter="O"] {
      background-image: url('../image/G W O S D WORD IMAGE/OUTDOOR PARKING - - WORD IMAGE.png');
    }
    
    .letter-box[data-letter="S"] {
      background-image: url('../image/G W O S D WORD IMAGE/SLAB - - WORD IMAGE.png');
    }
    
    .letter-box[data-letter="D"] {
      background-image: url('../image/G W O S D WORD IMAGE/DECORATIVE - - WORD IMAGE.png');
    }
    
    /* Media Queries */
    @media screen and (max-width: 480px) {
      .crafting h1 {
        font-size: 1.5rem;
        padding: 0 10px;
      }
      
      .crafting p {
        font-size: 0.9rem;
        padding: 0 10px;
        line-height: 1.4;
      }
      
      .letter-container {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
      }
      
      .letter-item {
        flex-direction: column;
        width: 100%;
        margin-bottom: 30px;
      }
      
      .letter-box {
        width: 80px;
        height: 100px;
        font-size: 80px;
        margin-top: 10px;
      }
      
      .letter-preview {
        width: 120px; /* Increased width for better visibility */
        height: 90px; /* Increased height for better visibility */
        top: -100px; /* Position above the letter */
        left: 35%;
        transform: translateX(-50%);
        opacity: 0;
        transition: all 0.3s ease;
        border-radius: 4px;
        object-fit: cover;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .letter-item:hover .letter-preview {
        opacity: 1;
        width: 180px; /* Slightly larger on hover */
        height: 120px; /* Slightly larger on hover */
        margin-top: 0; /* Reset margin */
        margin-right: 0; /* Reset margin */
        top: 70px; /* Adjust position to account for increased height */
    }
      
      .category-label {
        writing-mode: horizontal-tb;
        transform: none;
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 12px;
        white-space: normal;
        padding: 0 15px;
      }
      
      .category-label::before,
      .category-label::after {
        width: 15px;
        height: 1px;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
      }
      
      .category-label::before {
        left: -15px;
      }
      
      .category-label::after {
        right: -15px;
      }
    }
    
    @media screen and (min-width: 481px) and (max-width: 600px) {
      .crafting h1 {
        font-size: 1.7rem;
      }
      
      .crafting p {
        font-size: 1rem;
      }
      
      .letter-container {
        gap: 30px;
      }
      
      .letter-box {
        width: 70px;
        height: 90px;
        font-size: 70px;
      }
      
      .letter-preview {
        width: 90px;
        height: 60px;
      }
      
      .letter-item:hover .letter-preview {
        width: 150px;
        height: 120px;
      }
      
      .category-label {
        font-size: 12px;
        margin-right: 25px;
      }
    }
    
    @media screen and (min-width: 601px) and (max-width: 768px) {
      .crafting h1 {
        font-size: 2rem;
      }
      
      .letter-box {
        width: 80px;
        height: 100px;
        font-size: 80px;
      }
      
      .letter-preview {
        width: 100px;
        height: 70px;
      }
      
      .letter-item:hover .letter-preview {
        width: 160px;
        height: 120px;
      }
      
      .category-label {
        font-size: 12px;
      }
    }
    
    @media screen and (min-width: 769px) and (max-width: 1024px) {
      .letter-box {
        width: 90px;
        height: 120px;
        font-size: 90px;
      }
      
      .letter-preview {
        width: 110px;
        height: 80px;
      }
      .letter-item{
        width: 25%;
      }
      .letter-item:hover .letter-preview {
        width: 180px;
        height: 120px;
      }
      
      .category-label {
        font-size: 13px;
      }
    }
    
    @media screen and (min-width: 1025px) and (max-width: 1280px) {
      .letter-box {
        width: 100px;
        height: 140px;
        font-size: 100px;
      }
      
      .letter-preview {
        width: 120px;
        height: 90px;
      }
      .letter-item{
        width: 16%;
      }
      .letter-item:hover .letter-preview {
        width: 160px;
        height: 110px;
      }
      
      .category-label {
        font-size: 14px;
      }
    }
    
    @media screen and (min-width: 1281px) and (max-width: 1440px) {
      .letter-box {
        width: 110px;
        height: 150px;
        font-size: 110px;
      }
      
      .letter-preview {
        width: 130px;
        height: 100px;
      }
      
      .letter-item:hover .letter-preview {
        width: 150px;
        height: 120px;
      }
      
      .category-label {
        font-size: 15px;
      }
    }



/* Existing base styles remain the same */
.products h1 {
    font-family: 'Boska';
    font-style: normal;
    font-weight: 500;
    font-size: 50px;
    line-height: 120%;
    text-align: center;
}

.products p {
    color: #515158;
}

.products .p1 span {
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 15px;
    color: #0D5BB5;
}

.products .p1 h5 {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 39px;
    line-height: 140%;
    color: #27272A;
}

.products .p1 p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    text-align: justify;
}

.products .p1 .btn {
    border: 1px solid #0D5BB5;
    border-radius: 50px;
    color: #0D5BB5;
    font-size: 15px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.products .p1 .btn:hover {
    background-color: #0D5BB5;
    color: white;
}

.products .p1 .op {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 140%;
    color: #27272A;
}

/* Mobile and Tablet (768px and below) - Image first, then content */
@media screen and (max-width: 768px) {
    .products h1 {
        font-size: 32px;
        margin-top: 20px !important;
    }
    
    .products .col-md-12.text-center p {
        font-size: 15px;
        padding: 0 15px;
    }

    .products .p1 {
        flex-direction: column !important;
        padding: 0 15px !important;
        display: flex !important;
    }

    /* Force image to come first in mobile view */
    .products .p1 > .col-md-7 {
        order: 1 !important;
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 20px;
    }

    .products .p1 > .col-md-5 {
        order: 2 !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .products .p1 h5 {
        font-size: 24px;
        margin-top: 10px;
    }

    .products .p1 p {
        font-size: 15px;
        line-height: 130%;
    }

    .products .p1 .btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .products .p1 img {
        max-width: 100%;
        height: auto;
    }
    
    .products .pb-5 {
        padding-bottom: 2rem !important;
    }
}

/* Larger devices (769px and above) - Original layout */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .products h1 {
        font-size: 40px;
    }
    
    .products .col-md-12.text-center p {
        font-size: 17px;
    }

    .products .p1 {
        flex-direction: row !important;
    }

    .products .p1 > div {
        padding: 20px !important;
    }

    .products .p1 h5 {
        font-size: 28px;
    }

    .products .p1 p {
        font-size: 16px;
    }

    .products .p1 .btn {
        font-size: 15px;
    }
    
    .products .p1 img {
        height: auto !important;
    }
}

/* Extra large devices (large laptops and desktops) */
@media screen and (min-width: 1025px) and (max-width: 1280px) {
    .products h1 {
        font-size: 42px;
    }

    .products .p1 h5 {
        font-size: 32px;
    }

    .products .p1 p {
        font-size: 18px;
    }

    .products .p1 .btn {
        font-size: 16px;
    }
    
    .products .p1 > div {
        padding: 25px !important;
    }
}

/* XXL devices (larger desktops) */
@media screen and (min-width: 1281px) and (max-width: 1440px) {
    .products h1 {
        font-size: 45px;
    }

    .products .p1 h5 {
        font-size: 34px;
    }

    .products .p1 p {
        font-size: 19px;
    }

    .products .p1 .btn {
        font-size: 16px;
    }
}

/* XXXL devices (largest screens) */
@media screen and (min-width: 1441px) {
    .products h1 {
        font-size: 50px;
    }

    .products .p1 h5 {
        font-size: 36px;
    }

    .products .p1 p {
        font-size: 20px;
    }

    .products .p1 .btn {
        font-size: 17px;
    }
}

/* Additional improvements for all devices */
.products .p1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.products .p1 > div {
    flex: 1;
    min-width: 300px;
}

.products .p1 img {
    object-fit: cover;
    border-radius: 8px;
}
.export p {
    color: #515158;
}

.export .btn {
    border: 1px solid #0D5BB5;
    border-radius: 50px;
    color: #0D5BB5;
    font-size: 15px;
}

.export .d-inline-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.export .col-md-2 {
    margin-bottom: 30px;
}

@media screen and (max-width: 480px) {
    .export .d-inline-flex {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* Centers the items */
    }

    .export .col-md-2 {
        width: 100% !important;
        text-align: center;
    }

    .export .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .fors {
        width: 100%;
        text-align: center;

    }
}

@media screen and (min-width: 481px) and (max-width: 600px) {
    .export .d-inline-flex {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* Centers the items */
    }

    .fors {
        width: 100%;
        text-align: center;

    }

    .export .col-md-2 {
        width: 100% !important;
        text-align: center;
    }

    .export .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media screen and (min-width: 601px) and (max-width: 768px) {
    .export .d-inline-flex {
        flex-direction: row;
        justify-content: space-between;
    }

    .export .col-md-2 {
        width: 48% !important;
    }

    .export .btn {
        font-size: 15px;
        padding: 12px 24px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .export .d-inline-flex {
        flex-direction: row;
        justify-content: space-between;
    }

    .export .col-md-2 {
        width: 19% !important;
    }

    .export .btn {
        font-size: 16px;
        padding: 14px 28px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
    .export .d-inline-flex {
        flex-direction: row;
        justify-content: space-between;
    }

    .export .col-md-2 {
        width: 19% !important;
    }

    .export .btn {
        font-size: 16px;
        padding: 14px 28px;
    }
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
    .export .d-inline-flex {
        flex-direction: row;
        justify-content: space-between;
    }

    .export .col-md-2 {
        width: 19% !important;
    }

    .export .btn {
        font-size: 16px;
        padding: 14px 28px;
    }
}

@media screen and (min-width: 1441px) and (max-width: 5000px) {
    .export .d-inline-flex {
        flex-direction: row;
        justify-content: space-between;
    }

    .export .col-md-2 {
        width: 19% !important;
    }

    .export .btn {
        font-size: 16px;
        padding: 14px 28px;
    }
}

.footer {
    background-color: #27272A;
    color: #DDDDE3;
}

.footer .btn {
    border: 1px solid #0D5BB5;
    border-radius: 50px;
    color: white;
    font-size: 15px;
    background-color: #0D5BB5;
}

.footer .rights {
    background-color: #38383D;
}

/* =====================================About Us Page ============================================= */

.about-section h1 {
    font-family: 'Boska';
    font-style: normal;
    font-weight: 500;
    font-size: 52px;
    line-height: 120%;
}

.about-section span {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 40%;
}

.about-section p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: #515158;
    padding-top: 1%;
}

.about-section .info p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: #515158;
    padding-top: 1%;
    width: 91%;
}

.why-choose-section .info {
    background: #FFFFFF;
    border: 1.5px solid #EBEBF0;
    box-shadow: 2px 12px 20px rgba(0, 0, 0, 0.04);
    border-radius: 0px;
    width: 32%;
    margin: 0 auto 20px auto;
    padding: 20px;
    padding-left: 2%;
    text-align: center;
}

.why-choose-section .info hr {
    width: 94%;
    margin: 10px auto;
}

.why-choose-section h1 {
    font-family: 'Boska';
    font-style: normal;
    font-weight: 500;
    font-size: 52px;
    line-height: 120%;
}

.why-choose-section span {
    font-family: 'Montserrat';
    font-style: italic;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #27272A;
}

.why-choose-section p {
    color: #515158;
}

.why-choose-section .info p {
    width: 90%;
    margin: 0 auto;
}

/* Responsive Breakpoints */
@media screen and (max-width: 480px) {
    .why-choose-section .d-inline-flex {
        flex-direction: column !important;
        align-items: center;
    }

    .why-choose-section .info {
        width: 100%;
    }

    .why-choose-section h1 {
        font-size: 28px;
    }

    .why-choose-section span {
        font-size: 16px;
    }
}

@media screen and (min-width: 481px) and (max-width: 600px) {
    .why-choose-section .d-inline-flex {
        flex-direction: column !important;
        align-items: center;
    }

    .why-choose-section .info {
        width: 90%;
    }
}

@media screen and (min-width: 601px) and (max-width: 768px) {
    .why-choose-section .d-inline-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .why-choose-section .info {
        width: 45%;
        margin: 10px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .why-choose-section .d-inline-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .why-choose-section .info {
        width: 30%;
        margin: 10px;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
    .why-choose-section .info {
        width: 30%;
    }
}

@media screen and (min-width: 1281px) and (max-width: 1440px) {
    .why-choose-section .info {
        width: 30%;
    }
}

@media screen and (min-width: 1441px) and (max-width: 5000px) {
    .why-choose-section .info {
        width: 30%;
    }
}

/* General Styling */
.crafting-section {
    background-color: #F0F8FF;
}

.crafting-section h1,
.why-choose-section h1 {
    font-family: 'Boska';
    font-style: normal;
    font-weight: 500;
    font-size: 52px;
    line-height: 120%;
    text-align: center;
    margin-bottom: 30px;
}

.why-choose-section .info,
.crafting-section .info {
    background: #FFFFFF;
    border: 1.5px solid #EBEBF0;
    border-radius: 0px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.crafting-section .info span,
.why-choose-section .info span {
    font-weight: bold;
    font-size: larger;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.why-choose-section .info h2 {
    font-size: 36px;
    color: #007bff;
}

.why-choose-section hr {
    width: 40px;
    border: 2px solid #007bff;
    margin: 10px auto;
}

/* Responsive Styling */

/* Small phones */
@media screen and (max-width: 480px) {

    .why-choose-section .d-inline-flex,
    .crafting-section .d-inline-flex {
        flex-direction: column !important;
        align-items: center;
    }

    .why-choose-section .info,
    .crafting-section .info {
        width: 90% !important;
        margin-bottom: 20px;
    }

    .crafting-section h1,
    .why-choose-section h1 {
        font-size: 28px;
    }
}

/* Mobile landscape */
@media screen and (min-width: 481px) and (max-width: 600px) {

    .why-choose-section .d-inline-flex,
    .crafting-section .d-inline-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .why-choose-section .info,
    .crafting-section .info {
        width: 90% !important;
        margin-bottom: 20px;
    }
}

/* Tablets */
@media screen and (min-width: 601px) and (max-width: 768px) {

    .why-choose-section .d-inline-flex,
    .crafting-section .d-inline-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .why-choose-section .info,
    .crafting-section .info {
        width: 45% !important;
        margin: 10px;
    }
}

/* Tablets and small laptops */
@media screen and (min-width: 769px) and (max-width: 1024px) {

    .why-choose-section .info,
    .crafting-section .info {
        width: 30% !important;
        margin: 10px;
    }
}

/* Standard laptops */
@media screen and (min-width: 1025px) and (max-width: 1280px) {

    .why-choose-section .info,
    .crafting-section .info {
        width: 30%;
    }
}

/* Large laptops */
@media screen and (min-width: 1281px) and (max-width: 1440px) {

    .why-choose-section .info,
    .crafting-section .info {
        width: 30%;
    }
}

/* Extra large screens */
@media screen and (min-width: 1441px) and (max-width: 5000px) {

    .why-choose-section .info,
    .crafting-section .info {
        width: 30%;
    }
}

.manufacturing-section h1 {
    font-family: 'Boska';
    font-style: normal;
    font-weight: 500;
    font-size: 52px;
    line-height: 120%;
}

.manufacturing-section p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: #515158;
    padding-top: 1%;
}

.manufacturing-section .info {
    width: 80%;
    margin: 0 auto;
    /* background-color: pink; */
}

.manufacturing-section .info span {
    font-weight: normal;
    font-size: larger;
    padding-left: 7px;
}

.title {
    font-family: 'Boska';
    font-style: normal;
    font-weight: 500;
    font-size: 72px;
}

.title p {
    color: #515158;
}



.carousel-inner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: rgba(0, 0, 0, 0.7);
}

.carousel-item {
    height: 450px;
}

.carousel-item .row>div {
    padding: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

.fa-arrow-left,
.right-arrow {
    font-size: 2rem;
    color: #000;
    background: #fff;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.carousel-control-prev,
.carousel-control-next {
    top: 35%;
    transform: translateY(-50%);
    width: auto;
}

/* Sidebar (all images list) */
.sidebar-gallery {
    display: none;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }


    .rotate-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .hero-section img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .carousel-item {
        height: auto;
    }
}





@media screen and (max-width: 480px) {
    .navbar-collapse {
        background-color: white;
        padding: 10px;
    }

    .navbar-nav .nav-link {
        text-align: center;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .rotate-btn {
        background-color: #000;
        font-size: 14px;
    }

    .hero-section img {
        height: 200px;
    }

    .office-info,
    .contact-form-container {
        padding: 20px;
    }

    .footer h1 {
        font-size: 20px;
    }

    .footer-link {
        flex-wrap: wrap;
    }

    .f1 {
        flex-grow: 1;
        flex-basis: 200;
    }

    /* .footer .f1,
    .f2,
    .f3,
    .f4 {
        border-bottom: 1px solid white;
        padding-bottom: 15%;
    } */

    .cw .c1,
    .c2 {
        text-align: center;
    }
}

@media screen and (min-width: 481px) and (max-width: 600px) {
    .navbar-collapse {
        background-color: white;
        padding: 10px;
    }

    .navbar-nav .nav-link {
        text-align: center;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .rotate-btn {
        background-color: #000;
        font-size: 14px;
    }

    .hero-section img {
        height: 250px;
    }

    .rotate-btn {
        width: 100%;
        margin-top: 10px;
    }

    .footer h1 {
        font-size: 24px;
    }
}

@media screen and (min-width: 601px) and (max-width: 768px) {
    .navbar-collapse {
        background-color: white;
        padding: 10px;
    }

    .navbar-nav .nav-link {
        text-align: center;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .rotate-btn {
        background-color: #000;
        padding: 10px 20px;
        font-size: 14px;
    }

    .navbar-nav {
        text-align: center;
    }


    .rotate-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .hero-section img {
        height: 300px;
    }

    .pi {
        width: 50%;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .rotate-btn {
        font-size: 16px;
    }

    .contact-form-container {
        padding: 30px;
    }

    .pi {
        width: 50%;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
    .hero-section img {
        height: 400px;
    }

    .rotate-btn {
        padding: 10px 30px;
    }

    .pi {
        width: 50%;
    }

}

@media screen and (min-width: 1281px) and (max-width: 1440px) {

    .contact-form-container,
    .office-info {
        padding: 40px;
    }

    .pi {
        width: 50%;
    }

    /* .f2{
        width: 25%;
    }
    .f3{
        padding-left: 4%;
    } */

}

@media screen and (min-width: 1441px) and (max-width: 5000px) {

    .contact-form-container,
    .office-info {
        padding: 40px;
    }

    .pi {
        width: 50%;
    }

}




/* Updated Letter Box Styles */
.letter-box {
    position: relative;
    width: 140px;
    height: 180px;
    font-size: 140px;
    font-weight: 900;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    transition: all 0.5s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.G {
    left: 47px;
    top: 10px;
}

.W {
    left: 45px;
    top: 10px;
}

.O {
    left: 50px;
    top: 10px;
}

.S {
    left: 33px;
    top: 20px
}

.D {
    left: 33px;
    top: 20px;
}



/* ============== Whatsapp Button ================== */

#mybtn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    display: none;
    cursor: pointer;
    border-radius: 10px;
    height: 70px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.bounce {
    animation: bounce 2s infinite;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
}


/* ============================= Footer =========================================================== */
 @media screen and (max-width: 480px) {
        .footer-link {
            padding: 20px 0 !important;
        }
        .footer-link .row {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }
        .footer-link p {
            font-size: 14px !important;
        }
        .footer-link .fs-4 {
            font-size: 18px !important;
        }
        .footer-link .fs-5 {
            font-size: 15px !important;
        }
        .footer-link .f1 {
            margin-bottom: 25px !important;
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
        .footer-link br{
            display: none;
        }
    }

    /* Small devices (481px to 600px) */
    @media screen and (min-width: 481px) and (max-width: 600px) {
        .footer-link {
            padding: 25px 0 !important;
        }
        .footer-link .row {
            padding-top: 25px !important;
            padding-bottom: 25px !important;
        }
        .footer-link .f1 {
            margin-bottom: 30px !important;
        }
        .footer-link br{
            display: none;
        }
    }

    /* Tablets (601px to 768px) */
    @media screen and (min-width: 601px) and (max-width: 768px) {
        .footer-link .container {
            max-width: 85% !important;
            padding-left: 20px !important;
            padding-right: 20px !important;
        }
        .footer-link .fs-5 {
            font-size: 16px !important;
        }
      .footer-link {
            padding: 25px 0 !important;
        }
        .footer-link .row {
            padding-top: 25px !important;
            padding-bottom: 25px !important;
        }
        .footer-link .f1 {
            margin-bottom: 30px !important;
        }
         .footer-link br{
            display: none;
        }
    }

    /* Small laptops (769px to 1024px) */
    @media screen and (min-width: 769px) and (max-width: 1024px) {
        .footer-link .col-md-3 {
            flex: 0 0 50% !important;
            max-width: 50% !important;
        }
        .footer-link .col-md-6 {
            flex: 0 0 50% !important;
            max-width: 50% !important;
            margin-bottom: 5% !important;
        }
        .footer-link .col-md-4 {
            flex: 0 0 33.333333% !important;
            max-width: 33.333333% !important;
        }
    }

    /* Large laptops (1025px to 1280px) */
    @media screen and (min-width: 1025px) and (max-width: 1280px) {
        .footer-link .container {
            max-width: 900px !important;
        }
        .footer-link .col-md-3 {
            flex: 0 0 50% !important;
            max-width: 50% !important;
        }
        .footer-link .col-md-6 {
            flex: 0 0 50% !important;
            max-width: 50% !important;
            margin-bottom: 5% !important;
        }
        .footer-link .col-md-4 {
            flex: 0 0 33.333333% !important;
            max-width: 33.333333% !important;
        }
    }

    /* Extra large screens (1281px to 1440px) */
    @media screen and (min-width: 1281px) and (max-width: 1440px) {
        .footer-link .container {
            max-width: 1300px !important;
        }
    }

    /* Super large screens (1441px and above) */
    @media screen and (min-width: 1441px) and (max-width: 5000px) {
        .footer-link .container {
            max-width: 1400px !important;
        }
    }
    
      /* Footer Logo Styling */
.footer .logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer .logo-img {
    max-height: 60px;
    width: auto;
    margin-right: 15px;
}

/* NEW FOOTER STYLES */
.container-fluid.footer {
    width: 100%;
    background-color: #2f4550;
    padding: 0;
    margin: 0;
}

.footer-link {
    padding: 20px 0 !important;
}

.footer .row.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.footer h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer .btn {
    margin-bottom: 1rem !important;
}

.footer hr {
    margin: 0.5rem 0;
    border-color: rgba(255,255,255,0.1);
}

.rights {
    padding: 10px 0;
    background-color: rgba(0,0,0,0.2);
}

.rights p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer .text-center.py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1rem !important;
    }
    
    .footer h1 {
        font-size: 1.5rem;
    }
    
    .footer-link .row {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    
    .f1 {
        margin-bottom: 1.5rem !important;
    }
    
    .footer .fs-4, .footer .fs-5 {
        font-size: 1rem !important;
    }
}