/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/


/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url(animate.min.css);
@import url(normalize.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(slick.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

* {
     box-sizing: border-box !important;
     transition: ease all 0.5s;
}

html {
     scroll-behavior: smooth;
}


body {
     color: #511c06;
     font-size: 14px;
      font-family: poppins;
     line-height: 1.80857;
     font-weight: normal;
     overflow-x: hidden;
}

a {
     color: #931f1f;
     text-decoration: none !important;
     outline: none !important;
     -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
     letter-spacing: 0;
     font-weight: normal;
     position: relative;
     padding: 0 0 10px 0;
     font-weight: normal;
     line-height: normal;
     color: #111111;
     margin: 0
}

h1 {
     font-size: 24px
}

h2 {
     font-size: 22px
}

h3 {
     font-size: 18px
}

h4 {
     font-size: 16px
}

h5 {
     font-size: 14px
}

h6 {
     font-size: 13px
}

*,
*::after,
*::before {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
     color: #212121;
     text-decoration: none!important;
     opacity: 1
}

button:focus {
     outline: none;
     color: #000;
}

ul,
li,
ol {
     margin: 0px;
     padding: 0px;
     list-style: none;
}

p {
     margin: 0px;
     font-weight: 300;
     font-size: 15px;
     line-height: 24px;
}

a {
     color: #222222;
     text-decoration: none;
     outline: none !important;
}

a,
.btn {
     text-decoration: none !important;
     outline: none !important;
     -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
}

img {
     max-width: 100%;
     height: auto;
}
/*---------------------------- preloader area ----------------------------*/

.loader_bg {
     position: fixed;
     z-index: 9999999;
     background: #fff;
     width: 100%;
     height: 100%;
}

.loader {
     height: 100%;
     width: 100%;
     position: absolute;
     left: 0;
     top: 0;
     display: flex;
     justify-content: center;
     align-items: center;
}

.loader img {
     width: 680px;
}

/*--------------------------------------------------------------------- header area ---------------------------------------------------------------------*/
/* Contact Info Section Styling */
.contact-info-section {
     background-color: rgb(27, 89, 141); /* Light background color */
     padding: 20px 20px; /* Add padding around the content */
     text-align: center; /* Center align the text */
     border-radius: 0px; /* Optional: rounded corners for the section */
     font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
 }
 
 /* Styling for the Contact Info list */
 .contact-info {
     list-style: none; /* Remove default list bullets */
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: row; /* Stack the items vertically */
     align-items: center; /* Center align the items */
     gap: 330px; /* Space between the list items */
 }
 
 /* Styling for each list item */
 .contact-info li {
     font-size: 16px; /* Font size */
     color: white; /* Dark text color */
     display: flex;
     align-items: center; /* Align the icon and text horizontally */
     justify-content: center;
     margin-left: 30px;
 }
 
 /* Styling for the icons */
 .contact-icon {
     width: 20px; /* Set the icon width */
     height: 20px; /* Set the icon height */
     margin-right: 10px; /* Space between the icon and text */
 }
 
 /* Styling for the email link */
 .contact-info a {
     text-decoration: none; /* Remove underline */
     color: white; /* Blue color for the email link */
     font-weight: lighter; /* Make the email link bold */
     font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
     font-size: large;
 }
 
 /* Hover effect for the email link */
 .contact-info a:hover {
     color: #0056b3; /* Darker blue on hover */
 }
 
 /* Responsive Styles */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-info li {
        margin: 10px 0;
    }
}
 



/* General Reset */
* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }
 
 body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; /* Unique font */
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
}

.logo img {
    max-width: 35%;
    height: auto;
    margin-left: 150px;
}

 
 .menu-area-main {
    list-style: none;
    display: flex;
    gap: 20px;
}

.menu-area-main li a {
    text-decoration: none;
    color: #4b4444;
    font-size: 18px;
    padding: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 26px;
}

.menu-area-main li a:hover {
    background-color: #ff9900;
    color: #fff;
}



/* Links within dropdown items */
.dropdown-menu li a {
    font-size: 18px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
     background-color: black;
    padding: 12px 20px;
    display: block;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    letter-spacing: 1px;
}

/* Hover effect for dropdown links */
.dropdown-menu li a:hover {
    background-color: black;
    color: white;
    transform: translateX(5px); /* Subtle movement on hover */
    border-left: 4px solid red; /* Highlight effect */
}

/* Dropdown background and styling */
.dropdown-menu {
   
    position: sticky;
    width: 300px;
    background: black; /* Unique gradient background */
   
    padding: 10px 0;
    margin: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(-5px);
    top: 100%;
    left: -20%;
    z-index: 1000;
}

/* Show dropdown on hover or focus */
.Products-menu:hover .dropdown-menu,
.Products-menu:focus-within .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}




/* Default: Hide mobile menu icon */
.mobile-menu-icon {
    display: none;
}

 /* Mobile Menu Styling */
@media screen and (max-width: 768px) {
    /* Container for logo and menu */
    .header-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    /* Logo Styling */
    .logo img {
        margin: 10px auto;
        align-items: center;
       
    }

    /* Mobile Menu Button (Hamburger Icon) */
    .mobile-menu-icon {
        display: block;
        font-size: 30px;
        cursor: pointer;
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    /* Menu Area Styling */
    .menu-area-main {
        display: flex;
        flex-direction: column;
        width: 200%;
        text-align: center;
       
        padding: 10px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
  
    /* Show menu when active */
    .menu-area-main.active {
        display: flex;
    }

    /* Menu Items Styling */
    .menu-area-main li {
        width: 100%;
    }

    .menu-area-main li a {
        display: block;
        font-size: 18px;
        padding: 12px;
        text-align: center;
    }
}
/* Dropdown Menu Styling */
@media screen and (max-width: 768px) {
    .dropdown-menu {
        display: none;
        position: absolute;
        background: white;
        list-style: none;
        padding: 5px 0;
        margin: 0;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        min-width: 160px;
        border-radius: 5px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    /* Show dropdown on hover or focus */
    .Products-menu:hover .dropdown-menu,
    .Products-menu:focus-within .dropdown-menu {
        display: block;
    }

    /* Styling dropdown items */
    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 0, 0.6);
    }

    /* Last item should not have a border */
    .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .dropdown-menu a {
        padding: 10px 15px;
        display: block;
        font-size: 14px;
        font-weight: 400;
        text-decoration: none;
        transition: all 0.4s ease-in-out;
    }

    /* Hover effect */
    .dropdown-menu a:hover {
        background: rgba(245, 222, 179, 0.8);
        color: black;
        border-radius: 30px;
    }
}



  





 
 
 
 /* Navbar */
 .navbar {
     background-color: #003366; /* Navbar background */
     padding: 15px 0;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
 }
 
 .navbar .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
 }
 
 .navbar .logo img {
     height: 50px;
     transition: transform 0.3s ease;
 }
 
 .navbar .logo img:hover {
     transform: scale(1.05);
 }
 
 
 .main-menu ul li a:hover {
     background-color: #ff9900;
     color: #003366;
     transform: scale(1.05);
 }
 
 /* Carousel Section */
 .carousel-inner .carousel-item {
     position: relative;
     height: 100vh;
 }
 
 .carousel-item video {
     width: 100%;
     height: 100%;
     object-fit: cover;
     filter: brightness(70%);
 }
 
 .carousel-caption {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     text-align: center;
     color: white;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
 }
 
 .carousel-caption h1 {
     font-size: 4rem;
     margin-bottom: 20px;
     font-weight: 700;
 }
 
 .carousel-caption p {
     font-size: 1.5rem;
     max-width: 800px;
     margin: 0 auto;
     font-weight: 300;
 }
 
 
 
 
 /* About Section */
.about {
     padding: 60px 0;
     background-color: #f9f9f9; /* Light background color for the section */
    
 }
 
 /* Container for the about content */
 .about .container {
     max-width: 1200px;
     margin: 0 auto;
     
 }
 
 /* Row for the about section */
 .about .row {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }
 
 /* Styling for the image part */
 .about_img figure {
     margin: 1px;
 }
 
 .about_img img {
     width: 100%;
     height: auto;
     border-radius: 80px;
     box-shadow: 0 30px 68px rgba(0, 0, 0, 0.1); /* Subtle shadow for the image */
 }
 
 /* Styling for the text content */
 .about_box {
     padding-left: 20px;
 }
 
 .about_box h3 {
     font-size: 32px;
     font-weight: bold;
     color: #333333;
     margin-bottom: 20px;
 }
 
 .about_box span {
     font-size: 24px;
     color: #888;
     margin-bottom: 15px;
     display: inline-block;
 }
 
 .about_box p {
     font-size: 16px;
     line-height: 1.6;
     color: #555;
     text-align: justify;
 }
 
 /* Responsive Design */
 @media (max-width: 991px) {
     .about .row {
         flex-direction: column;
         text-align: center;
     }
 
     .about_box {
         padding-left: 0;
     }
 
     .about_img {
         margin-bottom: 20px;
     }
 }
 
 /* Categories Section Styles */
.categories-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #333;
    text-transform: uppercase;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.category-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 280px;
}

.category-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.category-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image {
    transform: scale(1.1);
}

.category-title {
    font-size: 1.25rem;
    color: #333;
    margin-top: 10px;
    font-weight: 600;
    text-transform: capitalize;
}




 /* Our Clients Section */
.clients {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.clients .titlepage h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
}

/* Brand Background */
.brand-bg {
    padding: 20px 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Brand Box Styling */
.brand_box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 150px; /* Ensure uniform height for all boxes */
}

.brand_box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.brand_box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Spacing and Grid Layout */
.margin, .mrgn {
    margin-bottom: 20px; /* Add spacing between rows */
}

@media (min-width: 768px) {
    .brand-bg .row {
        display: flex;
        justify-content: center; /* Center-align logos horizontally */
        flex-wrap: wrap;
    }
    .brand_box {
        margin: 10px; /* Space between brand cards */
    }
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .clients .titlepage h2 {
        font-size: 28px;
    }
    .brand_box {
        height: 120px;
    }
}

 
   

 
 


 
 /* Media Queries for Responsiveness */
 @media (max-width: 768px) {
     .top-header .container {
         flex-direction: column;
         text-align: center;
     }
 
     .navbar .container {
         flex-direction: column;
         text-align: center;
     }
 
     .main-menu ul {
         flex-direction: column;
         align-items: center;
     }
 
     .main-menu ul li {
         margin: 10px 0;
     }
 
     .about .container {
         flex-direction: column;
     }
 
     .categories-grid {
         flex-direction: column;
         align-items: center;
     }
 
     .category-card {
         width: 80%;
         margin: 20px 0;
     }
 }
 
 
/* Footer Styling */
footer {
    background: #0f172a; /* Deep navy background */
    color: #f8fafc; /* Light text color for contrast */
    padding: 40px 20px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: center;
    position: relative;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
}

/* Footer Content Container */
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Footer Items */
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-item {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-item i {
    color: white; /* Green accent color for icons */
    font-size: 20px;
}

/* Footer Bottom Text */
.footer-bottom {
    font-size: 14px;
    color: #94a3b8; /* Muted text color for bottom line */
    border-top: 1px solid #334155;
    padding-top: 10px;
    width: 100%;
}

/* Links Styling */
.footer-item a {
    color: white; /* Green accent color for links */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-item a:hover {
    color: #f8fafc; /* White on hover */
    text-decoration: underline;
}



/* Responsive Design */
@media (max-width: 768px) {
    footer {
        padding: 30px 10px;
    }

    .footer-content {
        font-size: 14px;
    }
}

/* Slider Section Styles */
.slider_section {
    position: relative;
    overflow: hidden;
    height: 100vh; /* Full screen height */
}

.carousel-inner {
    position: relative;
    height: 100%;
}

.first-slide {
    object-fit: cover;
    width: 100%;
    height: 50%;
    position: absolute;
    top: -100px;
    left: 0;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff; /* White text for high contrast */
    z-index: 2;
    padding: 20px;
    max-width: 80%;
}



/* Slider Heading Styles */
.slider-heading {
    font-size: 1.9rem; /* Readable size */
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 10px;
    letter-spacing: 8px; /* Balanced spacing */
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    display: block;
    max-width: 50%; /* Controls width for proper line breaks */
    line-height: 1.3; /* Adjust spacing between lines */
    text-align: center;
    word-break: break-word; /* Ensures text wraps naturally */
}

/* Enforce three-line structure */
@media (max-width: 1024px) {
    .slider-heading {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .slider-heading {
        max-width: 80%;
        font-size: 1.6rem; /* Adjusts size for smaller screens */
    }
}









@media (max-width: 768px) {
    .slider-heading {
        font-size: 3.5rem; /* Reduced size for better fit on smaller screens */
    }

    .slider-description {
        font-size: 1.4rem; /* Slightly reduced for readability on smaller screens */
    }

    .slider-subheading {
        font-size: 1.5rem; /* Slightly smaller subheading for better fit */
    }
}

@media (max-width: 480px) {
    .slider-heading {
        font-size: 2.5rem; /* Further reduced heading size for mobile devices */
    }

    .slider-description {
        font-size: 1.2rem; /* Adjusted description size for small screens */
    }

    .slider-subheading {
        font-size: 1.3rem; /* Adjusted subheading size for small screens */
    }
}











 


 
 


 

 
 
 

 


 
 






/*--------------------------------------------------------------------- top banner area ---------------------------------------------------------------------*/
.top-banner-slider {
     overflow: hidden;
     clear: both;
     height: 600px;
}
.top-banner-slider .heroslider {
     margin: 0px;
     padding: 0px;
     border: none;
     position: relative;
     border-radius: 0;
}
.swiper-overlay {
     height: 100%;
     position: relative;
}
.swiper-overlay {
     background: rgba(0, 0, 0, 0.5);
     content: "";
     width: 100%;
     height: 100%;
     left: 0px;
     top: 0px;
}
.heroslider .container {
     position: relative;
     height: 100%;
     padding-left: 0;
     padding-right: 0;
     z-index: 5;
}
.swiper-container {
     width: 100%;
     height: 100%;
}
.heroslider .slider-01 {
     width: 100%;
     background-image: url(../images/slider-01.jpg);
     background-size: cover;
     background-position: center;
}
.heroslider .slider-02 {
     width: 100%;
     background-image: url(../images/slider-02.jpg);
     background-size: cover;
     background-position: center;
}
.heroslider .slider-03 {
     width: 100%;
     background-image: url(../images/slider-03.jpg);
     background-size: cover;
     background-position: center;
}
.heroslider .slides li {
     height: 600px;
}
.top-banner-slider .heroslider .slides li::before {
     content: "";
     position: absolute;
     background: rgba(0, 0, 0, 0.4);
     height: 100%;
     width: 100%;
     left: 0px;
     top: 0px;
}
.top-banner-slider .flex_caption3 {
     position: absolute;
     z-index: 30;
     left: 0;
     right: 0;
     bottom: 50px;
     margin: 0 -15px;
     display: flex;
}
a.slide_banner {
     position: relative;
     display: inline-block;
     margin: 0 12px 0 15px;
}
.slide1_banner1 {
     width: 570px;
}
.slide1_banner2 {
     width: 270px;
}
.slide1_banner3 {
     width: 270px;
}
.top-banner-slider .flex_caption1 {
     text-align: center;
     position: absolute;
     z-index: 30;
     left: 0;
     right: 0;
     margin: 0 auto;
     top: 31%;
     max-width: 720px;
     width: 100%;
     text-transform: uppercase;
     color: #333;
}
.top-banner-slider .flex_caption1 .title1 {
     font-size: 36px;
     font-weight: 300;
     color: #ffffff;
}
.top-banner-slider .flex_caption1 .title2 {
     font-size: 60px;
     font-weight: 900;
     color: #ffffff;
}
.top-banner-slider .flex_caption2 {
     text-align: center;
}
.top-banner-slider .flex_caption2 {
     position: absolute;
     z-index: 30;
     left: 0;
     top: 20%;
     display: table;
     width: 177px;
     height: 177px;
     background-color: #242424;
}
.top-banner-slider .flex_caption2 .middle {
     display: table-cell;
     vertical-align: middle;
     text-transform: uppercase;
     text-align: center;
     font-weight: 700;
     line-height: 31px;
     font-size: 26px;
     color: #fff;
     transition: all 0.1s ease-in-out;
     -webkit-transition: all 0.1s ease-in-out;
}
.top-banner-slider .flex_caption2 .middle:hover {
     background: #38c8a8;
}
.top-banner-slider .flex_caption2 span {
     display: block;
     font-weight: 100;
     line-height: 36px;
     font-size: 34px;
}
a.slide_banner::before {
     content: '';
     position: absolute;
     left: 0;
     top: 0;
     right: 0;
     bottom: 0;
     opacity: 0;
     border: 2px solid #ffffff;
     transition: all 0.1s ease-in-out;
     -webkit-transition: all 0.1s ease-in-out;
}
a.slide_banner:hover::before {
     left: -7px;
     top: -7px;
     right: -7px;
     bottom: -7px;
     opacity: 1;
}
.flex-control-nav {
     background: #38c8a8;
     bottom: 0px;
     position: relative;
}
.flex-control-nav li {
     line-height: 10px;
}
.flex-control-paging li a {
     background: rgba(255, 255, 255, 1);
     border: 2px solid #ffffff;
}
.flex-control-paging li a.flex-active {
     border: 2px solid #ffffff;
}
.flex-direction-nav a {
     background: #111111;
     text-align: center;
}
.heroslider:hover .flex-direction-nav .flex-prev:hover {
     background: #38c8a8;
}
.heroslider:hover .flex-direction-nav .flex-next:hover {
     background: #38c8a8;
}
.flex-direction-nav a::before {
     color: #ffffff;
}
.top-banner-slider .swiper-pagination {
     padding: 10px 0px;
}
.heroslider .swiper-pagination {
     bottom: 0px;
     background: #38c8a8;
}
.heroslider .swiper-pagination .swiper-pagination-bullet-active {
     background: #fff;
}
.heroslider .swiper-pagination::before {
     content: "";
     width: 22px;
     height: 22px;
     position: absolute;
     left: -10px;
     top: 4px;
     z-index: -1;
     background: #e12d4f;
     -webkit-transform: rotate(45deg);
     transform: rotate(45deg);
}
.heroslider .swiper-pagination::after {
     content: "";
     width: 22px;
     height: 22px;
     position: absolute;
     right: -10px;
     top: 4px;
     z-index: -1;
     background: #e12d4f;
     -webkit-transform: rotate(45deg);
     transform: rotate(45deg);
}



/** about **/
.about {
     padding-top: 90px ;
     padding-bottom: 84px ;
   background-color: white;
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
}

.about .about_img figure {
     margin: 0px;
}

.about .about_box {
     text-align: right;
     padding-top: 10px;
}

.about .about_box h3 {
     font-weight: bold;
     font-size: 30px;
     color: #da2912;
     line-height: 32px;
     padding-bottom: 7px;
    display: block;
}

.about .about_box span {
     font-weight: bold;
     font-size: 50px;
     line-height: 58px;
     color:#23242a; 
     padding-bottom: 10px;
display: block
}

.about .about_box p {
     font-size: 18px;
     line-height: 30px;
     color: #23242a;
}

.about_box_ span {
     font-weight: bold;
     font-size:40px;
     line-height: 98px;
     color:#23242a; 
     padding-bottom: 10px;
display: block
}

.about_box_ { text-align: left;
     padding-top: 130Opx;}

.about_box_ p {
     font-size: 17px;
     line-height: 30px;
     color: black;
}
/** end about **/

.pdn-top-30 {
     padding-top: 60px;
}

ul.link li {
     display: inline-block;
     padding: 8px 15px;
     
     
}
ul.link li a {
     color: #c55a5a;
     font-size: 17px;
     
}
ul.link li a:hover {
     color: #5b3535;
}

ul.location_icon {
     list-style: none;
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     padding-top: 50px;
}
ul.location_icon li {
     float: left;
     height: 60px;
     color: #fff;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     padding-right: 20px;
}
ul.location_icon li:last-child {
     padding-right: 0px;
}
ul.location_icon li a {
color: #fff;
width: 40px;
height: 40px;
border: solid #fff 1px;
float: left;
text-align: center;
line-height: 40px;
border-radius: 100%;
font-size: 18px;
} 

ul.location_icon li a:hover {
     background: #776464;

border: solid #ff0000 1px;        
color: #6c5252;
}

ul.location_icon span {
     font-size: 17px;
     font-weight: 400;
}
.copyright {
     background: #fff;
     padding: 20px 0px 20px 0;
     margin-top: 50px;
}
.copyright p {
     color: #000;
     font-size: 16px;
     text-align: center;
     text-align: center;
     margin: 0 auto;
}
.copyright a {
     color: #000;
}
.copyright a:hover {
     color: #ff0000;
}
.btn-primary.focus,
.btn-primary:focus {
     box-shadow: inherit;
}

/*--------------------------------------------------------------------- inner_page css ---------------------------------------------------------------------*/

.brand_color {
     background-color: #ddd;
     background: url('images/rf grid 1500*350.jpg') no-repeat center center/cover;
     padding: 50px 0;  /* Adjust padding as needed */
     color: black; /* Ensures text is readable */
     text-align: center;
}
.brand_color .titlepage {
     margin-top: 90px;
     padding-bottom: 90px;
}

.brand_color .abouttitle h2 {
     color: #fff;
     text-transform: uppercase;
     font-size: 40px;
     line-height: 45px;
     padding: 40px 0;
     font-weight: 500;
     text-align: center;
}
.contact-page .Contact {
     margin-top: 0px;
}
.contact-page .form-control {
     margin-bottom: 20px;
}

/** slider arrow **/

#myCarousel .carousel-control-prev,
#myCarousel .carousel-control-next {
     width: 62px;
     height: 60px;
     background: #fffdfd;
     opacity: 1;
     font-size: 30px;
     color: #000;
}

#myCarousel .carousel-control-prev:hover,
#myCarousel .carousel-control-next:hover,
#myCarousel .carousel-control-prev:focus,
#myCarousel .carousel-control-next:focus {
     background: #ff0000 ;
     color: #fff;
}

#myCarousel a.carousel-control-prev {
     position: absolute;
     left: 82px;
     bottom: 10px;
     top: inherit;
}

#myCarousel a.carousel-control-next {
     position: absolute;
     left: 10px;
     top: inherit;
     bottom: 10px;
}

.cross_layout {
    transform: skew(-25deg);
}

.cross_inner {
    transform: skew(25deg);
}

.testomonial_section {
    padding: 0 75px;
}

/* Style for Product Categories */
.categories {
     display: flex;
     justify-content: center;
     align-items: center;
     margin-top: 30px;
     flex-wrap: wrap;
 }
 
 /* Individual category item styling */
 .category-item {
     margin: 60px;
     padding: 10px;
     background-color: #f2f2f2;
     border-radius: 10px;
     text-align: center;
     width: 250px;
     
     transition: all 0.3s ease;
 }
 
 .category-item a {
     text-decoration: none;
     color: #333;
 }
 
 .category-image {
     width: 100%;
     height: auto;
     border-radius: 8px;
     transition: transform 0.3s ease;
 }
 
 .category-item h4 {
     margin-top: 10px;
     font-size: 18px;
     font-weight: bold;
     color: #333;
 }
 
 /* Hover effects */
 .category-item:hover {
     background-color: #007bff; /* Background color on hover */
     transform: scale(1.05); /* Slightly enlarge on hover */
 }
 
 .category-item:hover .category-image {
     transform: scale(1.1); /* Enlarge the image on hover */
 }
 
 .category-item:hover h4 {
     color: white; /* Change text color when hovered */
 }
 
 /* Optional: Add shadow to images */
 .category-image {
     box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
 }
 
    /* Section Title Styling */
.section-title {
     font-size: 28px;
     font-weight: bold;
     color: #2c3e50;
     margin-bottom: 20px;
     text-transform: uppercase;
     letter-spacing: 2px;
 }
 
 
 /* Styled List */
 .styled-list {
     list-style-type: none;
     padding: 0;
     margin: 0;
 }
 
 /* List Items */
 .styled-list li {
     position: relative;
     padding: 10px 0 10px 40px;
     font-size: 18px;
     font-weight: 500;
     color: #34495e;
     border-bottom: 1px solid #eaeaea;
 }
 
 .styled-list li:last-child {
     border-bottom: none;
 }
 
 /* Bullet Icon */
 .styled-list li:before {
     content: "\2022";
     position: absolute;
     left: 0;
     top: 50%;
     transform: translateY(-50%);
     font-size: 24px;
     color: #1abc9c; /* Custom green bullet */
 }
 
 /* Responsive Design */
 @media (max-width: 768px) {
     .styled-list li {
         padding-left: 30px;
         font-size: 16px;
     }
 
     .section-title {
         font-size: 24px;
     }
 }
 

 /* Responsive: Adjust layout for smaller screens */
 @media (max-width: 768px) {
     .category-item {
         width: 150px;
     }
 }
 
 /* Section Title Styling */
.section-title {
     font-size: 28px;
     font-weight: bold;
     color: #2c3e50;
     text-align: center;
     margin-bottom: 30px;
     text-transform: uppercase;
     letter-spacing: 2px;
 }
 
 /* Categories Grid Container */
 .categories-container {
     padding: 40px 20px;
     background: #f8f9fa;
 }
 
 .categories-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 20px;
     margin: 0 auto;
     max-width: 1200px;
 }
 
 /* Category Card */
 .category-card {
     position: relative;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
 }
 
 .category-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
 }
 
 /* Category Image */
 .category-image {
     width: 100%;
     height: auto;
     display: block;
 }
 
 /* Category Overlay */
 .category-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     opacity: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: opacity 0.3s ease-in-out;
 }
 
 .category-card:hover .category-overlay {
     opacity: 1;
 }
 
 /* Category Title */
 .category-title {
     font-size: 22px;
     font-weight: bold;
     color: #fff;
     text-transform: uppercase;
     letter-spacing: 1px;
     text-align: center;
 }
 /* Raw Materials List Styling */
.raw-materials-list {
     background-color: #f4f4f4;
     padding: 50px;
     border-radius: 108px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     margin-top: 50px;
     text-align: center;
 }
 

 
 .raw-materials-column {
     list-style-type: disc;
     text-align: center;
     padding-left: 40px;
     font-size: 20px;
     line-height: 2.8;
 }
 
 .raw-materials-column li {
     color: #54995e;
     font-family: 'Verdana', sans-serif;

 }
 
 .raw-materials-list .row {
     display: flex;
     justify-content: center;
 }
 
 .raw-materials-list .col-md-6 {
     margin-bottom: 20px;
 }
/* Raw Materials Information Styling */
.raw-materials-info {
   /* Light background for contrast */
     padding: 30px 15px;        /* Adjusted padding for a spacious look */
     border-radius: 10px;       /* Slightly rounded corners for modern styling */
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* Enhanced shadow for depth */
     margin: 20px auto;         /* Centered section with consistent spacing */
     max-width: 1300px;         /* Restrict max width for better alignment on large screens */
     text-align: center;        /* Ensure content is centered */
 }
 
 /* Header styling for section title */
 .raw-materials-info h2 {
     font-size: 2.5rem;         /* Scalable font size for titles */
     color:black;            /* Vibrant green for emphasis */
     margin-bottom: 25px;       /* Spacing below the title */
     font-family: 'Arial', sans-serif;
     font-weight: bold;
     letter-spacing: 1.2px;     /* Slight letter spacing for refinement */
     text-transform: uppercase; /* Uniform uppercase styling for titles */
 }
 
 /* Subheading or lead text */
 .raw-materials-info .lead {
     font-size: 1.7rem;        /* Balanced font size */
     line-height: 1.1;          /* Improved readability */
     color: #060606;            /* Muted blue-gray for secondary text */
     font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
     margin-bottom: 30px;
     margin-top: 0;             /* No top margin for clean alignment */
 }
 
 /* Paragraph styling for additional details */
 .raw-materials-info p {
     font-size: 2rem;           /* Standard paragraph font size */
     color: #34495e;            /* Neutral color for supporting text */
     font-family: 'Verdana', sans-serif;
     line-height: 1.6;          /* Balanced line height for legibility */
     margin: 10px 0;            /* Consistent spacing between paragraphs */
 }
 
 /* Responsive adjustments for smaller screens */
 @media (max-width: 768px) {
     .raw-materials-info {
         padding: 20px 10px;
     }
 
     .raw-materials-info h2 {
         font-size: 2rem;       /* Slightly smaller heading on small screens */
     }
 
     .raw-materials-info .lead {
         font-size: 1.1rem;     /* Scaled lead font size for smaller devices */
     }
 
     .raw-materials-info p {
         font-size: 0.95rem;    /* Adjusted paragraph font size */
     }
 }
 
 

 
 
 @media (max-width: 767px) {
     .raw-materials-list {
         padding: 30px;
     }
     
     .raw-materials-list h2 {
         font-size: 30px;
     }
 
     .raw-materials-column {
         font-size: 16px;
     }
 }
 .first-slide {
     width: 100%;
     height: auto;
 }
 /* Contact Title */
 .brand_color.about_bg {
     background-image: url('../images/Aboutus.jpg');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }
 
 .brand_color.contact_bg {
     background-image: url('../images/contact.jpg');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }
 
 .brand_color.products_bg {
     background-image: url('../images/products.jpg');
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }
 
 /* Custom Text Styling */
.titlepage h2 {
     color: rgb(84, 86, 61) ; /* Change the text color */
     font-size: 50px; /* Adjust the font size */
     text-transform: uppercase; /* Make the text uppercase */
     text-align: center; /* Center the text */
     font-weight: bold; /* Make the text bold */
    
 }

 
 
  




/* Card Styling */
.office-details {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #edf2f4;
}

.office-details:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: #007bff; /* Highlight effect */
}

/* Header Styling */
.office-header {
    background: linear-gradient(90deg, #7899bc, #758ba3); /* Gradient header */
    color: #ffffff;
    text-align: center;
    padding: 15px 10px;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.office-header h4 {
    margin: 0;
}

/* Body Styling */
.office-body {
    padding: 70px;
    font-size: 15px;
    color: #495057;
    line-height: 1.8;
}

.office-body p {
    margin: 20px ;
}

.office-body strong {
    color: #2b4159; /* Accent color */
}

.office-body a {
    color: #17a2b8;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.office-body a:hover {
    color: #3b5979; /* Match header highlight color */
}

/* Hover Effects for Links */
.office-body a:hover {
    text-decoration: none;
}

/* Mobile-Friendly Adjustments */
@media (max-width: 768px) {
    .office-header {
        font-size: 16px;
    }

    .office-body {
        font-size: 14px;
    }
}

/* Unique Card Border Highlight for Specific Offices */
.office-details:nth-child(1) {
    border-left: 5px solid #007bff; /* Head Office */
}

.office-details:nth-child(2) {
    border-left: 5px solid #28a745; /* UK Office */
}

.office-details:nth-child(3) {
    border-left: 5px solid #ffc107; /* USA Office */
}

.office-details:nth-child(4) {
    border-left: 5px solid #dc3545; /* China Office */
}


 

 
 .catalog-container {
    text-align: center;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 300px;
}

.catalog-container img {
    width: 100%;
    height: auto;
    max-width: 300px; /* Adjust to your preference */
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.catalog-container img:hover {
    transform: scale(1.05);
}

.download-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
   
}

/* ---- Product Container for the rawmaterails,SATCOM,RADAR PRODUCTS */
.product-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
  /* color: rgb(0, 67, 139); */
    color:  #002147;
    margin-bottom: 10px;
    text-align: center;
 /*   border-bottom: 3px solid #0055; /* Custom border color */
    border-bottom: 3px solid lightgray;
}


.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: #151414;
    border-bottom: 1px solid #ddd;
}

.product-features li:last-child {
    border-bottom: none;
}
.grade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr)); /* Responsive columns */
    gap: 5px;
    background: #f8f9fa;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-weight: bold;
    text-align: left;
  }
  
  .grade-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    background:  rgb(17, 102, 176);
    color: white;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  }



  .video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
