/****************** import fonts-family from google ******************/
@import url('https://fonts.googleapis.com/css2?family=Roboto');


/****************** body fonts-family start ******************/
body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' fill='%23f8f9fa'/%3E%3Ccircle cx='10' cy='10' r='1' fill='%23ddd'/%3E%3C/svg%3E");
}

@import "~@fortawesome/fontawesome-free/css/all.min.css";

/****************** body fonts-family end ******************/


   .navbar {
            background-color: #111 !important; /* Dark background */
            border-bottom: 2px solid #ddd; /* Light Gray Border */
              padding: 0.5rem 0; /* Reduce vertical padding */
        }

        .navbar .nav-link {
            color: white !important;
            font-weight: 500;
            display: flex;
            align-items: center;
            padding: 8px 15px;
        }

        .navbar .nav-link:hover {
            color: #FF5733 !important; /* Lava Red on hover */
            transition: color 0.3s ease;
        }

        /* Navbar Brand Logo */
        .navbar-brand {
            color: white !important;
        }

        .navbar-brand img {
            height: 80px;
            width: auto;
             
        }

        /* Navbar Toggler */
        .navbar-toggler {
            border-color: white;
             padding: 0.25rem 0.5rem; 
        }

        .navbar-toggler-icon {
            filter: invert(1); /* White color for toggler icon */
        }

        /* Dropdown Menu Styling */
        .navbar .nav-item.dropdown .dropdown-toggle::after {
            content: none !important; /* Remove default arrow */
        }

        .custom-dropdown {
            background-color: #333;
            border-radius: 5px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .custom-dropdown .dropdown-item {
            color: white;
            padding: 10px 20px;
            font-size: 14px;
        }

        .custom-dropdown .dropdown-item:hover {
            background-color: #FF5733;
            color: white;
        }

        /* Dropdown Item Icon */
        .custom-dropdown .dropdown-item .icon {
            margin-right: 10px;
            
        }

        /* Mobile View */
        @media (max-width: 768px) {
            .navbar-nav {
                text-align: center;
                   padding-top: 5px;
                padding-bottom: 5px;
                
            }

            .navbar-nav .nav-item {
                margin: 2px 0;
            }
        
  .navbar-collapse {
            padding: 0.5rem 0; /* Reduce the overall height of the collapsed navbar */
        }
        .navbar-toggler {
            padding: 0.25rem 0.5rem; /* Adjust toggler button size */
        }

        .navbar-brand img {
                height: 50px; /* Reduce logo size */
        }
        .navbar .nav-link {
                padding: 6px 10px; /* Reduce padding for nav links */
            font-size: 14px; /* Optional: smaller font for tighter layout */
        }
}

        
/*------------------------Top Header completed-----------------------------------*/



/* Slider started */

       
  /* === Slider Container === */
.slider-container {
  position: relative;
  overflow: hidden;
  height: 100vh;
  max-height: 700px;
}

/* === Responsive Height for Slider Container === */
@media (max-width: 991px) {
  .slider-container {
    height: 60vh;
  }
}
@media (max-width: 768px) {
  .slider-container {
    height: 50vh;
  }
}
@media (max-width: 480px) {
  .slider-container {
    height: 30vh;
  }
}

/* === Carousel Video === */

.carousel-item
{
    position: relative;
  width: 100%;
  
  
  overflow: hidden;
}

.carousel-item video {
 
 position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;



  /* Prevent overflow */
 
}

/* === Slide Content Overlay === */
.carousel-item > div,
.slide-content {
  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);
  width: 80%;
  z-index: 4;
}
.carousel-item > div {
  width: 100%;
  padding: 0 10px;
}

/* === Heading and Text === */
.carousel-item h2 {
  font-size: 4vw;
  margin-bottom: 10px;
}
.carousel-item p {
  font-size: 2vw;
}

/* === Responsive Fallbacks for Text === */
.slide-heading {
  font-size: 4vw;
  margin-bottom: 1vh;
}
.slide-text {
  font-size: 2vw;
}

@media (max-width: 768px) {
  .slide-heading {
    font-size: 6vw;
  }
  .slide-text {
    font-size: 3.5vw;
  }
}
@media (max-width: 480px) {
  .slide-heading {
    font-size: 7vw;
  }
  .slide-text {
    font-size: 4vw;
  }
}

/*--------------------------------------------------------------------------------------------------------------------*/

/* Adjust the Navbar to position below the top header */
.navbar {
    position: fixed;
    top: 0px; /* Adjust according to the height of .top-header */
    left: 0;
    width: 100%;
    z-index: 1000; /* Keeps it above content */
    background-color: white !important;
    border-bottom: 2px solid #ddd;
    opacity: 0.9;
     transition: opacity 0.3s ease;
}
 
/* Add padding to body to prevent content overlap */
body {
    padding-top: 0px; /* Adjust based on the combined height of top-header + navbar */
}

.text-justify {
    text-align: justify;
}

h4.mt-3 {
    color: red !important;
}

p.text-muted {
    color: black !important;
}

/*div Border*/

/* Add border style similar to KPIS */
.hover-effect {
    position: relative;
    padding: 20px;
    text-align: center;
    border: 2px solid #ddd; /* Light border */
    transition: all 0.3s ease-in-out;
    border-radius: 10px; /* Slightly rounded corners */
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Create the hover effect with double border */
.hover-effect::before,
.hover-effect::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 2px solid red; /* Change to match your theme */
    transition: all 0.3s ease-in-out;
    opacity: 0;
    border-radius: 10px;
}

/* When hovered, show the border */
.hover-effect:hover::before {
    opacity: 1;
    transform: scale(1.05);
}

.hover-effect:hover::after {
    opacity: 1;
    transform: scale(0.95);
}

/* Title Color */
.hover-effect h4 {
    color: red; /* Change heading text color */
}

/* Paragraph Text Color */
.hover-effect p {
    color: black; /* Ensure text is pure black */
}
/* Change Navbar Text Color to Black by Default */
.navbar .nav-link {
    color: black !important;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

/* Change Color to Red on Hover */
.navbar .nav-link:hover {
    color: red !important; /* Change menu text color to red on hover */
}
.industry-box {
    background: #f8f9fa;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.industry-box i {
    font-size: 2rem;
    color: #d32f2f;
}

.industry-box h6 {
    color: #333;
}

.industry-box:hover {
    border-color: #d32f2f;
    background: #fff;
    transform: scale(1.05);
}

.red-text {
    color: red !important;
}

.red-icon {
    filter: invert(21%) sepia(90%) saturate(6243%) hue-rotate(358deg) brightness(99%) contrast(122%);
}
/* Icon Styling */
.icon-box {
    font-size: 3rem; /* Adjust icon size */
    color: #d32f2f; /* Icon color */
    margin-bottom: 10px; /* Space below icon */
}

/* Center Icons */
.icon-box i {
    display: block;
    text-align: center;
}
h5.fw-bold{
    color: red !important;
}
/* Footer Styling */


  .footer {
            background-color: #222;
            color: #fff;
            padding: 2px 20px;
            margin-bottom: 0px;
        }
        
        .footer-content {
            
            max-width: 1200px;
            margin: 40px auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .footer-section h3 {
            color: #ff3333;
            margin-bottom: 20px;
            font-size: 20px;
        }
        
        .footer-menu {
            list-style: none;
            padding-left: 0rem!important;
        }
        
        .footer-menu li {
            margin-bottom: 6px;
        }
        
        .footer-menu a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-menu a:hover {
            color: #ff3333;
        }
        
        .contact-info {
            display: flex;
            align-items: center;
            margin-bottom: 0px;
        }
        
        .contact-info i {
            color: #ff3333;
            margin-right: 10px;
            font-size: 18px;
            width: 20px;
            margin-bottom: 15px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #333;
            color: white;
            border-radius: 50%;
            transition: background-color 0.3s, transform 0.3s;
        }
        
        .social-links a:hover {
            background-color: #ff3333;
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            color: #999;
            border-top: 1px solid #444;
            margin-top: 30px;
        }
        
        @media (min-width: 768px) {
            .services-container {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1024px) {
            .services-container {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(4, 1fr);
            }
        }


.toppane {
  
  height: 108px;       /* Fixed height */
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center; /* Optional: center content vertically */
}

.hero-section {
  
  min-height: 150px;
  margin: 0;
  padding: 0;
   display: flex;
  align-items: center;
   justify-content: center;
  position: relative;
  top: 0;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .toppane {
    height: 75px;      /* Slightly shorter for mobile if needed */
  }

  .hero-section {
    min-height: 120px;
  }
}



/* Icon Boxes */
.icon-box {
    margin-bottom: 15px;
}

.icon-box i {
    color: #ff4b2b;
}

/* Hover Effects */
.hover-effect {
    transition: all 0.3s ease-in-out;
}

.hover-effect:hover {
    background-color: #ff4b2b;
    color: #fff;
    transform: scale(1.05);
}

/* Team Section */
.team-box img {
    width: 120px;
    height: 120px;
    border: 4px solid #fff;
    transition: 0.3s;
}

.team-box:hover img {
    border-color: #ff4b2b;
    transform: scale(1.1);
}
.justify-text {
    text-align: justify;
}
.vertical-line {
    border-right: 3px solid #333; /* Adjust thickness and color */
    height: 100%;
}
.vertical-divider {
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 3px;
    background-color: #333;
}
/* Background Animation (Wave Effect) */
#background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url('https://source.unsplash.com/1920x1080/?technology,abstract') no-repeat center center/cover;
    filter: blur(3px) brightness(0.5);
    z-index: -1;
    animation: gradient-animation 10s ease infinite;
}

/* Gradient Animation */
@keyframes gradient-animation {
    0% { filter: blur(3px) brightness(0.5); }
    50% { filter: blur(2px) brightness(0.7); }
    100% { filter: blur(3px) brightness(0.5); }
}

.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    position: relative;
    /*background: linear-gradient(135deg, #1f1c2c, #928dab);*/
    background: linear-gradient(135deg, #1CB5E0, #000046);
    /*background: linear-gradient(135deg, #FF416C, #FF4B2B);*/
    /*background: linear-gradient(135deg, #9D50BB, #6E48AA);*/
    overflow: hidden;
}


/* Glassmorphism Form */
.contact-card {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Heading */
.contact-card h2 {
    color: #ffffff;
}

/* Labels */
.contact-card label {
    font-weight: bold;
    color: #ffffff;
}

/* Input Fields */
.contact-card .form-control {
    border-radius: 8px;
    padding-left: 15px;
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border: none;
}

.contact-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Input Focus */
.contact-card .form-control:focus {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Input Group Icons */
.input-group-text {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: rgba(255, 255, 255, 0.9);
}

/* Gradient Button */
.btn-gradient {
    background: linear-gradient(135deg, #ff7eb3, #ff4b8f);
    border: none;
    font-size: 18px;
    transition: 0.3s;
    color: white;
    padding: 12px;
    border-radius: 8px;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #ff4b8f, #ff7eb3);
    transform: scale(1.05);
}
.contact-card {
    backdrop-filter: blur(20px) brightness(0.8);
    -webkit-backdrop-filter: blur(20px) brightness(0.8);
}
/* Contact Card Text Styling */
.contact-card h2, 
.contact-card label, 
.contact-card .form-control, 
.contact-card .input-group-text {
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Placeholder Text in White */
.contact-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Button Text in White */
.btn-gradient {
    color: white !important;
}
#background-animation {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    background: url('assets/images/contact-bg.jpg') no-repeat center center/cover;
    opacity: 0.4;
    pointer-events: none;
}
/*----------------SubMenu Hover Dropdown-----------------------*/
/* Navbar Dropdown - Smooth Hover Effect */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

/* Services Hover Effect (Underline Animation) */
.custom-hover {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.custom-hover::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    transition: all 0.3s ease-in-out;
}
.custom-hover:hover::after {
    width: 100%;
    left: 0;
}

/* Stunning Dropdown Menu */
.custom-dropdown {
    background: linear-gradient(45deg, #333, #555);
    border: none;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Dropdown Menu Items */
.custom-dropdown .dropdown-item {
    color: white;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    padding: 10px 20px;
}

.custom-dropdown .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ff416c;
    padding-left: 25px;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




  .ourservice-container {
            position: relative;
            overflow: hidden;
           background: linear-gradient(135deg, #f8f9fa 25%, #eaeaea 25%, #eaeaea 50%, #f8f9fa 50%, #f8f9fa 75%, #eaeaea 75%, #eaeaea 100%);
             background-size: 750px 750px;
            padding: 0px 0 40px;
        }


/*---------------------------------Software Development------------------------------------------------*/
/* SERVICES SECTION */
.services-section {
    background: linear-gradient(135deg, #1d1e22, #3a3b3f);
    color: white;
    padding: 80px 0;
}

.services-section .text-content {
    padding: 30px;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #f5a623;
}

.services-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #d3d3d3;
}

/* Image Styling */
.rounded-img {
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.2);
    width: 90%;
}

/* SUCCESS SECTION */
.success-section {
    background: linear-gradient(135deg, #3f2b96, #a8c0ff);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.success-section h2 {
    font-size: 2.5rem;
    color: #ffd700;
}

.success-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #f8f9fa;
}

/* Success List */
.success-list {
    list-style: none;
    padding: 0;
}

.success-list li {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: white;
}

.success-list i {
    font-size: 1.5rem;
    color: #ffd700;
}

/* Hover Effect */
.success-list li:hover {
    transform: translateX(5px);
    transition: 0.3s;
    color: #ffd700;
}
/*---------------Container Fliud--------------------------------*/



.stats {
    display: flex;
    justify-content: space-around;
    padding: 12px 0; /* Reduced further */
    background: linear-gradient(90deg, #000000 0%, #e00000 100%);
    color: white;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 8px 10px;
    flex: 1 1 180px;
    box-sizing: border-box;
}

.stat-icon {
    font-size: 28px; /* Smaller icon */
    margin-bottom: 4px;
    color: #e00000;
}

.stat-number {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 2px;
}

.stat-text {
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        padding: 8px 0;
    }

    .stat-item {
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:first-child {
        border-top: none;
    }

    .stat-icon {
        font-size: 34px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-text {
        font-size: 14px;
    }
}




/*----------------Technologies Page-------------------------------------------*/

  .tech-icon {
            color: #e74c3c;
            font-size: 40px;
            margin-bottom: 15px;
        }
/*---------Industry we serve-------------------------------*/


.industries-section {
    position: relative;
    background: url('/assets/images/medium.png') no-repeat center center;
    background-size: cover;
    width: 100%;
       
  }

  /* Responsive height adjustments */
  @media (max-width: 992px) {
    .industries-section {
       padding: 40px 15px;
    }
  }


  @media (max-width: 576px) {
    .industries-section {
      padding: 30px 10px;
    background-position: center top; /* optional: show top of image */
    }
     .industries-section h2 {
    font-size: 1.5rem;
  }

  .industries-section p {
    font-size: 0.95rem;
  }

  .hover-effect p {
    font-size: 0.85rem;
  }

  }
  
  



/* General styling for the section */
.web-front-end-solution {
    padding: 80px 0;
    padding-bottom: 20px; /* Adjust as needed */
}

/* Center the icons inside a circle */
.techno-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0; /* Light grey background */
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin: 0 auto 15px;
}

/* Icon styling */
.techno-icon-box i {
    font-size: 36px;
    color: #333;
    transition: all 0.3s ease-in-out;
}

/* Hover effect */
.techno-icon-box:hover {
    background: #ff4c4c; /* Change background to red */
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.techno-icon-box:hover i {
    color: white; /* Change icon color to white */
}

/* Text styling */
.tech-title {
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    font-size: 14px;
}
.tech-title {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
}

.shiny-background {
  background-color: #ffffff; /* Pure white background */
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5));
  background-size: 100% 100%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5); /* Glow effect around the section */
  filter: brightness(1.2); /* Makes the background slightly brighter */
}


