/* 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-weight: 200; /* Example weight, you can change it as needed */
    font-style: normal;
  }


a {
    text-decoration: none;
    color: inherit;
}




.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;
    transition: color 0.3s ease;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
  
}

.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: 100%;
    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: 70%;
        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;
    }
}


.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 */

/* Hero Section Styles */

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: rgba(78,90,246,0.7)
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Green overlay */


.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 1rem;
    
    font-family: "Raleway", sans-serif;
  
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
  
}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #ff6347;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff4500;
}

/* Responsive Design */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}




@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    
    .hero-content h1 {
        transform: translateY(-20px);
        font-size: 2.5em;
    }
    .hero-content p {
        transform: translateY(-20px);
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .hero-section{
        min-height: 50vh;
    }
    .hero{
        height: 30vh;
    }
    .hero-content h1 {
        transform: translateY(-40px);
        font-size: 2em;
    }
    .hero-content p {
        transform: translateY(-40px);
        font-size: 1.1em;
    }
    .hero-content button {
        transform: translateY(-40px);
        padding: 10px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero-section{
        min-height: 50vh;
    }
    
    .hero-content h1 {
        text-align: center;
        font-size: 1.8em;
    }
    .hero-content p {
        text-align: center;
        font-size: 1em;
    }
    .hero-content button {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}



/* Responsive Styles */

/* Animation Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 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*/
}
/* Mobile Devices (Portrait, 480px and up) */
@media (max-width: 480px) {
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
  
    .hero{
        margin-bottom: 270px;
    }
    .hero-section{
        height: 30vh;
        display: flex;  
        flex-direction: column;  
        justify-content: flex-start;
       
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-content {
        margin-top: 150px;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-image {
        height: 200px;
    }
    .a{
        margin-top: 40px;
    }}


    


  .value-proposition-section {
    margin: 40px auto;
     
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1200px;
   
  
}

.image-content1 img {
    
    max-width: 550px;
    height: auto;
    background-color: #ccc;
    margin-right: 20px;
}

.text-content {
    flex: 1;
    padding-right: 30px;
}

.text-content h1 {
    font-size: 30px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 20px;
    color: rgb(254,74,10);
font-family: "Raleway", sans-serif;
}

.text-content p {
    font-size: 1.5rem;
    text-align: left;
    line-height: 1.6;
    color: #0b0b0b;
    font-weight: 400;
font-family: "Raleway", sans-serif;
    margin-bottom: 20px;
}

.contact-info {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-content img {
    
    max-width: 600px;
    height: auto;
    background-color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .value-proposition-section {
        flex-direction: column;
        width: 80%;
        text-align: center;
     
       margin-left: 10px auto; 
       
       
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .image-content img {
        max-width: 300px;
    }
    .image-content1 img {
    
        max-width: 250px;
        
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        margin-top: 10px;
        font-size: 1.2rem;
    }

    .text-content p {
        font-size: 1rem;
        text-align: center;
    }

    .image-content img {
        max-width: 100%;
    }
}



/* General section styling */
.solution-section {
    padding: 50px 20px;
   
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.solution-section h2 {
    font-size: 30px;
    color:rgb(254,74,10);
    font-weight: 600;
    
    font-family: "Raleway", sans-serif;
    margin-bottom: 10px;
}

.solution-section p {
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

/* Grid layout for solutions */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
    gap: 30px;
    justify-items: center;
}

/* Solution box styles */
.solution-box {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.solution-box i {
    font-size: 40px;
    color: rgba(78,90,246,0.7); /* Icon color */
    margin-bottom: 15px;
}

.solution-box h3 {
    font-size: 20px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.solution-box p {
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles */

/* For large tablets (below 1024px) */
@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }

    .solution-section h2 {
        font-size: 24px;
    }

    .solution-section p {
        font-size: 15px;
    }
}

/* For small tablets and mobile (below 768px) */
@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
    }

    .solution-section h2 {
        font-size: 22px;
    }

    .solution-section p {
        font-size: 14px;
    }
}


.iot-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
 
    margin: 10px auto;
    max-width: 1200px;
}

.iot-content {
    flex: 1;
    text-align: left;
    padding: 20px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
}

.iot-content h2 {
    color: rgb(254, 74, 10);
    font-size: 30px;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
    text-align: left;
}

.iot-content ul {
    list-style-type: none;
    padding: 0;
}

.iot-content ul li {
    font-size: 18px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
}

.iot-content ul li i {
    margin-right: 10px;
    color: rgb(254, 74, 10);
}

.iot-image {
    flex: 1;
    text-align: center;
}

.iot-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .iot-section {
        flex-direction: column;
        text-align: center;
    }

    .iot-content {
        padding: 10px;
    }

    .iot-image {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .iot-content h2 {
        font-size: 24px;
    }

    .iot-content ul li {
        font-size: 16px;
    }

    .iot-image img {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .iot-content h2 {
        font-size: 22px;
        text-align: center;
    }

    .iot-content ul li {
        font-size: 14px;
      
    }

    .iot-image img {
        width: 80%;
    }
}




.iot-network {
    padding: 50px;
    background-color: #f7f8fa;
    text-align: center;
}

.iot-network h2 {
    font-size: 30px;
    color: #fe4a0a;
    margin-bottom: 30px;
    font-family: "Raleway", sans-serif;
}

.iot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    width: 100%;
    max-width: 500px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

.grid-item i {
    font-size: 40px;
    color: rgb(78,90,246);
    margin-bottom: 15px;
}

.grid-item h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.grid-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .iot-grid {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }

    .grid-item {
        max-width: 100%;
    }

    .iot-network h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .iot-network h2 {
        font-size: 24px;
    }

    .grid-item h3 {
        font-size: 20px;
    }

    .grid-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .iot-network h2 {
        font-size: 22px;
    }

    .grid-item h3 {
        font-size: 18px;
    }

    .grid-item p {
        font-size: 12px;
    }

    .grid-item i {
        font-size: 36px;
    }
}


.iot-managed-services {
    padding: 60px 20px;
    background-color: #f5f7fa;
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.image-container {
    flex: 1;
    max-width: 40%; /* Adjust as needed */
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
}

.service-details {
    flex: 1;
    padding-left: 20px; /* Space between image and services */
}

.iot-managed-services h2 {
    font-size: 30px;
    color: rgb(254,74,10);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

.icon {
    margin-right: 20px;
}

.icon i {
    font-size: 48px;
    color: rgb(78,90,246);
}

.service-item h3 {
    font-size: 22px;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Raleway", sans-serif;
}

.service-item p {
    font-size: 16px;
    color: #1b1a1a;
    padding: 0 8px;
    line-height: 1.5;
    font-family: "Raleway", sans-serif;
    max-width: 90%; /* Added to control width on mobile */
    margin: 0 auto; /* Center align the text */
}

@media (max-width: 768px) {
    .service-item p {
        font-size: 14px; /* Adjust font size for better readability on mobile */
    }
}

@media (max-width: 480px) {
    .service-item p {
        font-size: 12px; /* Further adjust font size for very small screens */
        line-height: 1.4; /* Tighter line height for smaller screens */
    }
}


@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .image-container {
        max-width: 100%;
    }

    .service-details {
        padding-left: 0;
        width: 100%;
        text-align: center;
    }

    .iot-managed-services h2 {
        margin-bottom: 20px;
    }

    .service-list {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .iot-managed-services h2 {
        font-size: 28px;
    }

    .service-item h3 {
        font-size: 20px;
    }

  
}

@media (max-width: 480px) {
    .iot-managed-services h2 {
        font-size: 24px;
    }

    .service-item h3 {
        font-size: 18px;
    }

    .icon i {
        font-size: 36px;
    }

   
}

.services-section {
    background-color: white;
     padding: 50px 20px;
     color: #070707;
     width: 80%;
     margin: 40px auto;
   }
   
   .containerrr {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     flex-wrap: wrap;
   }
   
   .left-content {
     flex: 1;
     max-width: 40%;
     margin-right: 20px;
   }
   
   .left-content h3 {
     font-size: 20px;
     font-weight: 600;
     color: rgb(254,74,10);
     margin-bottom: 10px;
   }
   
   .left-content h1 {
     font-size: 30px;
     font-weight: bold;
     margin-bottom: 30px;
   }
   
   .left-content .btn {
     display: inline-block;
     padding: 12px 30px;
     color: #fff;
     border: 1px solid rgb(254,74,10);
     text-decoration: none;
     border-radius: 25px;
     transition: all 0.3s ease;
   }
   
   .left-content .btn:hover {
     background-color:rgb(254,74,10);
   }
   
   .right-content {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     grid-gap: 20px;
     flex: 1;
     max-width: 55%;
   }
   
   .service-card {
     background-color:rgb(254,74,10);
     padding: 20px;
     border-radius: 15px;
     transition: background-color 0.3s ease;
   }
   
   .service-card h4 {
     font-size: 18px;
     margin-bottom: 10px;
     color: white;
   }
   
   .service-card p {
     font-size: 14px;
     color: #fefefe;
   }
   
   .service-card a {
     font-size: 14px;
     color: #fff;
     margin-top: 15px;
     display: inline-block;
     text-decoration: none;
     transition: color 0.3s ease;
   }
   
   .service-card a:hover {
     color: rgb(254,74,10);
   }
   
   .service-card.highlighted {
     background-color: rgb(254,74,10);
     color: #fff;
   }
   
   .service-card.highlighted a {
     color: #fff;
   }
   
   .service-card:hover {
     background-color: rgb(134, 44, 14);
   }
   
   @media (max-width: 768px) {
     .container {
       flex-direction: column;
       text-align: center;
     }
   
     .left-content {
       max-width: 100%;
       margin-bottom: 30px;
     }
   
     .right-content {
       grid-template-columns: 1fr;
       max-width: 100%;
     }
   }
   
   @media (max-width: 576px) {
     .left-content h1 {
       font-size: 20px;
     }
   
     .left-content .btn {
       padding: 10px 25px;
     }
   }