/* General Styles */
body {
   

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    font-family: "Raleway", sans-serif;
  
    
    background-color: rgb(244,245,255);
   
}
.raleway-unique {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200; /* Example weight, you can change it as needed */
    font-style: normal;
  }

a {
    text-decoration: none;
    color: inherit;
}


.section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f50;
    padding: 10px;
}
.text {
    color: white;
    font-size: 20px;
    margin-right: 20px;
}
.button {
    background-color: white;
    color: #f50;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #ff7043;
}
@media (max-width: 600px) {
    .text {
        font-size: 16px;
    }
    .button {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* Navbar Styles */
.navbar {
    background-color: #fdfeff;
    color: rgb(5, 5, 5);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    font-size: large;
    color: #060606;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    font-weight: 500;
    font-family: "Raleway", sans-serif;
  
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #e87a05;
}

/* Add caret to dropdown */
.navbar ul li.dropdown > a::after {
    content: '\f0d7'; /* Font Awesome down arrow (caret) */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
}

.navbar ul li ul {
    position: absolute;
    top: 70%;
    left: 0;
    background-color: #fbfcfd;
    display: none;
    list-style: none;
    z-index: 998;
}

.navbar ul li:hover ul {
    display: block;
}

.navbar ul li ul li a {
    padding: 0.5rem 1rem;
    width: 200px;
    text-align: left;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgb(12, 12, 12);
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column; /* Keep this to stack items vertically */
        position: absolute;
        top: 60%;
        left: 0;
        background-color: #fdfefe;
        color: #000;
        width: 100%;
    
        display: none;
        z-index: 100;
        padding: 1rem 0; /* Add padding for better spacing */
    }

    .navbar ul.active {
        display: flex;
        flex-direction: column; /* Ensure items stack vertically */
        align-items: flex-start; /* Align items to the left */
    }

    .navbar ul li {
        width: 100%; /* Make each item full width */
    }

    .navbar ul li a {
        width: 100%; /* Make links full width for easier clicking */
        text-align: left; /* Align text to the left */
    }

    .navbar ul li ul {
        position: static; /* Ensure dropdowns are aligned properly */
    }

    .navbar ul li ul li a {
        padding: 0.5rem 1rem; /* Keep padding for dropdowns */
    }

    .menu-toggle {
        display: block;
    }
}


    .software-development-section {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
        background-color: #fbfcfd;
        max-width: 1200px;
        margin:  50px auto;
        
    }
    
    .software-development-section .content {
        flex: 1;
        text-align: left;
        padding-right: 20px;
    }
    
    .software-development-section .content h1 {
        font-size: 2.5rem;
        font-weight: bold;
        color: #4e5afa;
        font-weight: 500;
        font-family: "Raleway", sans-serif;
      
    }
    
    .software-development-section .content h1 span {
        color: rgb(254,74,10);
    }
    
    .images {
        flex: 1;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .images img {
        width: 100%;
        max-width: 300px;
        border-radius: 10px;
        margin: 20px 100px;
        transition: transform 0.3s ease;
    }
    
    /* Tilt and position images */
    .images .img1 {
        transform: rotate(-5deg);
    }
    
    .images .img2 {
        transform: rotate(5deg);
    }
    
    /* Responsive Design */
    
    /* Mobile (up to 600px) */
    @media (max-width: 600px) {
        .software-development-section {
            flex-direction: column;
            text-align: center;
        }
    
        .software-development-section .content {
            padding: 0;
        }
    
        .images {
            flex-direction: column;
            align-items: center;
        }
    
        .images img {
            max-width: 90%;
            transform: none; /* Remove tilt on small screens for better view */
        }
    
        .software-development-section .content h1 {
            font-size: 1.5rem;
        }
    }
    
    /* Tablet (601px to 1024px) */
    @media (min-width: 601px) and (max-width: 1024px) {
        .software-development-section {
            flex-direction: row;
        }
    
        .software-development-section .content h1 {
            font-size: 2rem;
        }
    
        .images img {
            max-width: 250px;
        }
    }
    
    /* Desktop (1025px and up) */
    @media (min-width: 1025px) {
        .software-development-section {
            flex-direction: row;
        }
    
        .software-development-section .content h1 {
            font-size: 3rem;
        }
    
        .images img {
            max-width: 300px;
        }
    }
  













/* Responsive Styles */

/* Tablets (Portrait, 768px and up) */
/* Tablets (Portrait, 768px and up) */
@media (max-width: 768px) {
    
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
    .navbar-menu {
        display: none; /* Hide menu by default on smaller screens */
        position: absolute;
        top: 60px; /* Adjust as needed */
        left: 0;
        width: 100%;
        background-color: #fcfafa;
        color:rgb(  254 74 10);
        flex-direction: column;
        align-items: center;
        z-index: 999; /* Ensure it appears on top */
    }

    .navbar-menu.active {
        display: flex; /* Show menu when active */
    }

    .navbar-links {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .navbar-links li {
        font-size: x-small;
        margin: 10px 0;
    }

    .navbar-cta {
        display: none; /* Hide the CTA button on mobile */
    }

    .navbar-toggle {
        display: flex; /* Show hamburger menu */
    }

}
/* Mobile Devices (Portrait, 480px and up) */
@media (max-width: 480px) {
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
   .navbar{
    max-width: 100%;
    height: auto;
   }
    .navbar-brand a {
        font-size: 1.3rem;
    }
    .navbar-links li {
        font-size: x-small;
        margin: 10px 0;
    }
    .hero{
        margin-bottom: 270px;
    }
    .hero-section{
        height: 30vh;
        display: flex;  
        flex-direction: column;  
        justify-content: flex-start;
       
    }
}



.contact{
    height: 50vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    background-color: rgb(78,90,246);
    color: rgb(247, 244, 244);
    font-size: 40px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
  
}

    






.mission-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 40px;
    margin: 90px auto;
    background-color: #12321a; /* Matches the background */
}

.mission-container {
    max-width: 1200px;
    padding: 20px;
    background: transparent;
}

.mission-label {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.mission-label span {
    font-size: 1rem;
    color: #ffffff;
    font-weight: bold;
}

.mission-content {
    font-weight: 400;
    font-family: "Raleway", sans-serif;
  
    color: #ffffff;
    justify-content: center;
    align-items: center;
    font-size: 0.5rem;
    line-height: 1.5;
    font-weight: 300;
}

.mission-content .highlight {
    color: rgb(254,74,10);
    font-weight: bold;
}

/* Responsive Design */

/* Mobile Screens (max-width: 600px) */
@media (max-width: 600px) {
    .contact{
        width: 100%;
        font-size: 2rem;
    }
    .mission-content {
        font-size: 1.5rem;
    }

    .mission-label span {
        font-size: 0.85rem;
    }
}

/* Tablet Screens (min-width: 601px and max-width: 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
    .mission-content {
        font-size: 1.8rem;
    }

    .mission-label span {
        font-size: 1rem;
    }
}

/* Desktop Screens (min-width: 1025px) */
@media (min-width: 1025px) {
    .mission-content {
        font-size: 2.5rem;
    }

    .mission-label span {
        font-size: 1rem;
    }
}
  













.process-section {
  
    color: rgb(254, 253, 253);
    padding: 20px 20px;
    text-align: center;
    margin: 0 auto ;
    width: 80%;
  }
  
  .process-section h2 {
    font-size: 28px;
    color: rgb(254,74,10);
    font-weight: 600;
    font-family: "Raleway", sans-serif;
  
    margin-bottom: 10px;
  }
  
  .process-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .process-item {
    flex: 1 1 calc(50% - 40px);
    min-width: 200px;
    margin: 20px 10px;
    text-align: center;
    box-sizing: border-box;
  }
  
  .process-item h3 {
    font-size: 20px;
    color: #000;
    margin: 15px 0;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
  
  }
  
  .process-item p {
    font-size: 19px;
    color: rgb(6, 6, 6);
    font-weight: 400;
    font-family: "Raleway", sans-serif;
  
  }
  
  .dot {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .dot-1 {
    background-color: rgb(254, 74, 10);
  }
  
  .dot-2 {
    background-color: rgb(254, 74, 10);
  }
  
  .dot-3 {
    background-color: rgb(254, 74, 10);
  }
  
  .dot-4 {
    background-color: rgb(254, 74, 10);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .process-item {
      flex: 1 1 calc(50% - 20px);
    }
  }
  
  @media (max-width: 768px) {
    .process-item {
      flex: 1 1 100%;
    }
  }
  
  @media (max-width: 480px) {
    .process-section h2 {
      font-size: 24px;
    }
  
    .process-item h3 {
      font-size: 18px;
    }
  
    .process-item p {
      font-size: 13px;
    }
  
    .process-container {
      gap: 10px;
    }
  }
  





















  .about-us-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
  

    border-radius: 12px;
}

.about-us-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.text-container, .image-container {
    flex: 1 1 50%; /* Make the text and image take equal space */
    padding: 20px;
}

.text-container {
    padding-right: 40px; /* Ensure text is aligned well */
}

.text-container h3 {
    color: #0078d4;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
}

.text-container h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: rgb(254, 74, 10);
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.text-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #333;
    transition: color 0.2s ease-in-out;
}

.features-list li:hover {
    color: #0078d4;
}

.features-list li img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.image-container {
    text-align: right;
}

.image-container img {
    width: 100%;
    height: auto;
   
 
  
}



/* Responsive styling for smaller screens */
@media (max-width: 768px) {
    .about-us-content {
        flex-direction: column; /* Stack content vertically */
        text-align: center;
    }

    .text-container, .image-container {
        max-width: 100%;
        padding: 10px;
    }

    .image-container img {
        width: 90%; /* Resize image for smaller screens */
        margin: 0 auto;
    }

    .text-container h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .text-container h1 {
        font-size: 1.8rem;
    }

    .text-container p {
        font-size: 1rem;
    }
    .features-list li b {
        text-align: center;
    }

    .features-list li {
        font-size: 1.1rem;
    }
}

.careers {
    background-color: rgb(254,74,10);
    color: #fdfcfc; 
    margin-bottom: 10%;
    margin-top: 10%;/* Light background color for better readability */
    padding: 20px; /* Default padding */
    text-align: center; /* Center-align the content */
    }
    
    .careers p{
    color: #fefdfd;
    }
    
    /* Content container within the careers section */
    .careers .content {
    max-width: 800px; /* Limit max width for better readability */
    margin: 0 auto; /* Center the content horizontally */
    padding: 10px 20px; /* Add some padding for internal spacing */
    }
    
    /* Paragraph styling for better text appearance */
    .careers p {
    font-size: 16px; /* Default font size */
    line-height: 1.6; /* Comfortable line height for readability */
    color: #fcfcfc;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
   /* Dark color for contrast */
    }
    
    /* Button styling for contact */
    .view-careers-btn {
    display: inline-block; /* Display as block for easier alignment */
    margin-top: 15px; /* Space above the button */
    padding: 10px 20px; /* Button padding */
    font-size: 16px; /* Button text size */
    color: #fff; /* Text color */
    background-color: #4e5af6; /* Primary color */
    border: none; /* No borders */
    border-radius: 25px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
    }
    
    /* Button hover effect */
    .view-careers-btn:hover {
    background-color: #0056b3; /* Darker shade on hover */
    }
    
    /* Responsive adjustments for tablets and smaller devices */
    @media (max-width: 768px) {
    .careers {
    padding: 15px; /* Reduce padding for smaller screens */
    }
    
    .careers p {
    font-size: 14px; /* Adjust text size for better fit */
    }
    
    .view-careers-btn {
    font-size: 14px; /* Adjust button text size */
    padding: 8px 16px; /* Adjust padding for smaller buttons */
    }
    }
    
    /* Further adjustments for small mobile screens */
    @media (max-width: 480px) {
    .careers .content {
    padding: 10px; /* Further reduce padding */
    }
    
    .careers p {
    font-size: 13px; /* Smaller text size for tiny screens */
    }
    
    .view-careers-btn {
    font-size: 13px; /* Button font size adjustment */
    padding: 8px 14px; /* Narrow padding for small screens */
    }
    }
    
    
    
    
    