/*======================================
DEFAULT VALUES  :
font family     : lato

teal            : #008080   (buttons, links, lines and backgrounds
steel gray      : #41464b   (headings)
blue bayoux     : #64707b   (paragraphs)
white           : #fff      (text wiht black backgrounds)
black           : #000


===========================================*/
body, html {
    height: 100%;
    margin: 0;
}

body{
    font-family: "Lato", sans-serif;
    
}

p{
    color: #64707b;
    font-size: 16px;
    font-weight: 300;
}

 h3 {
    color: #008080;
    text-transform: uppercase;
 }

/*===================================
        Nav Bar
=====================================*/
.navbar.sticky-top {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensures it stays above other content */
    background-color: rgba(0, 0, 0, 0.8);
}
.navbar {
    padding: 8px 0;
}
.navbar-nav >li > a {
    color:white;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.navbar-nav > li > a:hover, .navbar-nav > li >a:focus {
    background: none;
    color: #008080;
}
 /* Show dropdown menu on hover */
 .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    background-color: #0080807a; /* Match the navbar background color */
    border: none; /* Remove dropdown border */
    border-radius: 0; /* Remove border radius */
    box-shadow: none; /* Remove dropdown shadow */
    padding: 0; /* Adjust padding as needed */
}

/* Remove highlighted effect from dropdown label */
.navbar-nav .nav-link:focus {
    background-color: transparent !important;
}

/*===================================
        HOME
=====================================*/
#home{
    height: 100%;
}
#home-cover {
    background-image: url("../img/bckgd.jpg");
    overflow: hidden;
    height: 100vh;
    width: 100%;
    }
#home-content-box {
    width: 100%;
    height: 100%;
    display: table;
}
#home-content-box-inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
#home-heading h3 {
    color:whitesmoke;
    font-size: 50px;
    font-weight: 700;
    margin: 20px 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: initial;
}
#home-cover .btn-general {
    border-width: 1px;
    border-radius: 16px;
    padding: 12px 26px 12px 26px;
    font-size: 16px;
    font-weight: 800;
}
#home-cover .btn-white {
    border-color:#008080  ;
    color: white ;
}
#home-cover .btn-white:hover, .btn-white:focus {
    background-color:#34c6d34b;
    color: white;
}
/* Styling for Vision and Goal Boxes */
.vision-box,
.goal-box {
    background-color: rgba(0, 0, 0, 0.052); /* Transparent background */
    color: white; /* Text color */
    padding: 10%; /* Padding around content */
    margin: 20px 10px; /* Margin to separate from other content */
     /* Border style */
    
}


/* Font style for the box titles */
.vision-box h4,
.goal-box h4 {
    font-family: "Lato", sans-serif; /* Change the font family */
    font-weight: bold; /* Bold font weight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #00aeae;
}

/* Font style for the box content */
.vision-box p,
.goal-box p {
    font-family: "Lato", sans-serif; /* Change the font family */
    font-weight: 500; /* Normal font weight */
    font-size: 15px; /* Adjust font size as needed */
    color: aliceblue;
    text-align: justify;
    text-shadow: 2px 2px 4px rgba(4, 45, 37, 0.654);
}
.goal-box ul li {
    color: #008080; /* Teal font color */
}

/* Flexbox container for the boxes */
.box-container {
    display:flex;
    justify-content: space-between; /* Space evenly between the boxes */
    justify-items: center;
}
.button-container {
    text-align: center;
}
/*===================================
        PARALLAX EFFECT generic
=====================================*/
.bg-parallax {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; 
}

/*===================================
        BUTTONS (generic)
=====================================*/
.btn-general {
    border-width: 2px;
    border-radius: 16px;
    padding: 12px 26px 12px 26px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}
.btn-white {
    border-color:#008080  ;
    color: #008080  ;
}
.btn-white:hover, .btn-white:focus {
    background-color:#34c6d34b;
    color: #41464b;
}
/*===================================
        ANIMATE
=====================================*/
#home-cover {
    animation-delay: .1s;
    animation-duration: .5s;
}
#home-heading {
    animation-delay: .4s;
    animation-duration: .5s;
}
#home-btn {
    animation-delay: .1s;
    animation-duration: .5s;
}

/*===================================
      Content (Generic)
=====================================*/
.content-box {
    padding: 60px 0 60px 0;
}
.content-title h3 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 30px 0;   
}
.content-title-underline {
    width: 30px;
    height: 3px;
    background-color:#008080 ;
    margin: 0 auto 30px auto;
}

/*===================================
      SERVICES 
=====================================*/

.service-item {
    padding: 20px 0 20px 0;
    margin-bottom: 20px;
    cursor: pointer;
}
.service-item-icon i{
    color: #008080;
    float: center;
    padding: 15px;
    margin-right: 25px;
    width: 75px;
    height: 75px;
    text-align: center;
    border-radius: 100%;
}
.service-item:hover .service-item-icon i {
    color: white;
    background-color: #008080;
} 
.service-item-title h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 10px 0;
}
.service-item-desc p {
    font-size: 17px;
    font-weight: bold;
    margin:0 0 10px 0;
    padding-left: 85;
    text-align: justify;
}
#servicesHome {
    background-color: #00808044;
}
/*===================================
      ABOUT
=====================================*/
#about-bg-diagonal {
    width: 60%;
    height: 500px;
    float: right;
    background-image: url("../img/img4.jpg");
    border-left: 20px;
    border-bottom: 700px;
}
#about-content-box {
    float:left;
    height: 700px; 
}
#about-content-box-outer {
    width: 100%;
    height:100%;
}
#about-content-box-inner {
    display: table-cell;
    vertical-align: middle;
    font-size: large;
}
#about .content-title h3{
    text-align: left;
    float: left;
}
#about .content-title-underline {
    margin: 0 0 30px 0;
}
#about-desc p {
    margin-bottom: 30px;
    margin-right: 1px;
    text-align:center;
    font-weight: 350;
    font-size: 20px;
    color: #008080;
}



/*===================================
      PARTNERS
=====================================*/
   
.partner-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.partner {
    flex: 1;
    margin: 0 5px;
}

.partner img {
    max-width: 75%; /* Adjust the maximum width of the partner images */
    height:fit-content;
}


/*==================================
WEBINAR
====================================*/
    /* Container for the left and right sections */
    .container {
        max-width: 1200px; /* Adjust as needed */
        margin: 0 auto;
        padding: 20px;
    }

    /* Style for the content title */
    .content-title {
        text-align: center;
        margin-bottom: 30px;
    }

    /* Style for the underline */
    .content-title-underline {
        width: 50px;
        height: 2px;
        background-color: #333;
        margin: 0 auto;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    /* Style for the webinar details */
    .webinar-details {
        background-color: #ffff;
        padding: 20px;
        margin-bottom: 20px;
    }

    /* Style for the registration form */
    .webinar-registration {
        background-color: #ffff;
        padding: 20px;
        margin-bottom: 20px;
    }
    .webinar-details .p {
        font-size: 30px;
        color: black;
    }

    .webinar-registration label {
        display: block;
        margin-bottom: 10px;
    }

    /* Style for form input fields */
    .webinar-registration input {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        box-sizing: border-box;
    }
    /* Responsive styling */
    @media (max-width: 768px) {
        .webinar-details,
        .webinar-registration {
            width: 100%; /* Full width on smaller screens */
        }
    }


/*===================================
      CONTACT
=====================================*/
footer{
    background-color: #41464b;
    padding-top: 30px;
    border-top: 5px solid rgba(0,0,0,0.1);
}
#contact-left h3, #contact-right h3 {
    color: azure;
    font-size: 27px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#contact-left p {
    color: white;
    margin-bottom: 30px;
}
#contact-info {
    background-image:none;
    background-repeat:no-repeat;
    background-size: contain;
}
address {
    color: white;
}
address strong, #phone-email strong {
    letter-spacing: 1px;
}
form .form-control {
    background: transparent;
    border-radius: 0;
    border-color: white;
    font-size: 17px;
    font-weight: 300;
    padding: 0px 16px;
    margin-bottom: 20px;
    color: white;
}
/* Style for form labels */
label {
    color: white; /* Set label text color to white */
}

/* Style for form input fields */
input[type="text"],
input[type="email"],
input[type="phone"],
textarea{
    background-color: white; /* Set input background color to white */
    color: black; /* Set input text color to black */
}
textarea {
    background-color: white !important; /* Set textarea background color to white */
    color: black; /* Set textarea text color to black */
}
/* Style for form submit button */
#send-btn {
    background-color: teal; /* Set button background color to teal */
    color: white; /* Set button text color to white */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for color change */
}

/* Style for button hover state */
#send-btn:hover {
    background-color: white; /* Change button background color to white on hover */
    color: teal; /* Change button text color to teal on hover */
}

/*===================================
      SOCIAL
=====================================*/
.social-list {
    padding-left: 0;
}
.social-list li {
    list-style: none;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 6px;
    margin-top: 10px;
}
.social-icon i {
    font-size: 17px;
}
.icon-white i {
    color:white;
}
.social-icon i:hover {
    color:#008080;
}

/*===================================
     footer 
=====================================*/
#footer-button {
    background-color:#64707b;
    padding: 30px 0;
    margin-top: 60px;
}
#footer-copyrights p {
    margin: 0;
    color:#008080;
}
#footer-menu {
    float: left;
    color: #008080;
    font-size: 16px;
    font-weight: 300;
}
#footer-menu ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
#footer-menu ul li {
    display:inline-block;
}
#footer-menu a {
    color:#008080;
    font-size: 15px;
    font-weight: 300;
    margin: 0 10px;
    text-decoration: none;
}
#footer-menu a:hover {
    color:white;
}

/*===================================
    about us PAge
=====================================*/
#MissionAb {
    background-color: #f7f7f7; /* Set the background color to gray */
    display:block;/* Set display to flex to make the boxes sit side by side */
    padding: 10%;
}
/* Add this CSS to adjust the size of images in the image containers */
.image-container img {
    max-width: 80%; /* Ensure the image doesn't exceed the container width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Ensure proper spacing */
    margin: 0 auto; /* Center the image horizontally */
}

#MissionAb .content-box p{
    font-size: 20px;
    font-weight: 400;
    color: #41464b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
    text-align: center;
}
#MissionAb .content-box h3{
    font-size: 40px;
    font-weight: 700;
}
#MissionAb .content-box .content-title {
    flex: 1; /* Make the boxes take up equal width */
    margin: 0 20px; /* Add margin between the boxes */
    color: #008080;
    font-weight: 600;
}
 
#VisionAb {
    background-color: #f7f7f7; /* Set the background color to gray */
    display:block;/* Set display to flex to make the boxes sit side by side */
    padding: 10%;
}

#VisionAb .content-box p{
    font-size: 20px;
    font-weight: 400;
    color: #41464b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
    text-align: center;
}
#VisionAb .content-box h3{
    font-size: 40px;
    font-weight: 700;
}
#VisionAb .content-box .content-title {
    flex: 1; /* Make the boxes take up equal width */
    margin: 0 20px; /* Add margin between the boxes */
    color: #008080;
    font-weight: 600;
}

#AboutUsPage {
    background-image: url("/img/AboutusBackground1.png"); /* Add the path to your background image */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
    padding: 50px 0; /* Add padding to the section */
}
#AboutUsPage .content-title h3 {
    color:teal;
    font-size: 50px;
    font-weight: 700;
    margin: 20px 0 20px 0;
}
#AboutUsPage .goal-box h3 {
    font-size: 110px;
    
}
#AboutUsPage .goal-box h4 {
    color:#41464b;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(4, 45, 37, 0);
}
#AboutUsPage .goal-box p {
    font-size:16px;
    color: teal;
    text-shadow: 2px 2px 4px rgba(4, 45, 37, 0);
    text-align: left;
}
#MissionVision .content-title .content-title-underline{
    color: #008080;
}
#MissionVision .goal-box .p {
    color: #41464b;
}
#MissionVision {
    background-color: #0080804c;
}
/* Add this CSS to adjust the layout of the values section */
#Values {
    background-color: #008080; /* Set the background color to teal */
    padding: 50px 0; /* Add padding to the top and bottom of the section */
}

/* Center the content */
#Values .content-box {
    margin: 0 auto;
    max-width: 1200px; /* Set a maximum width for the content */
}

/* Style the content title */
#Values .content-title h3 {
    color: white; /* Set the text color to white */
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}
#Values .value-item h4 {
    color: rgba(0, 0, 0, 0.822); /* Darker color */
    font-weight: 700;
}

/* Style the content paragraph */
#Values .value-item p {
    color: white; /* Set the text color to white */
    font-size: 16px;
    line-height: 1.5;
    font-weight: bolder;
    text-align: center;
}

/* Style the underline */
#Values .content-title-underline {
    width: 50px;
    height: 3px;
    background-color: white;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 30px;
}

/* Style the value items */
#Values .value-item {
    text-align: center;
    padding: 20px;
    background-color: rgba(13, 1, 1, 0.076); /* Light background color */
    border-radius: 8px;
    margin-bottom: 30px; /* Add space between each value item */
}

/* Ensure equal spacing between value items */
#Values .row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Adjust spacing for smaller screens */
@media (max-width: 768px) {
    #Values .value-item {
        width: 100%; /* Make value items take up full width on smaller screens */
    }
}

/*===================================
   celium fix-it page
=====================================*/

#celium-fixitPage {
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
    padding: 50px 0; /* Add padding to the section */
    height: 100%;

}
#celium-fixitPage .content-title h3 {
    color:whitesmoke;
    font-size: 35px;
    font-weight: 700;
    margin: 20px 0 20px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.831);
    text-align: center;
}

/* Adjusting text color, shadow, and font weight for paragraph */
#Celium-fixitPage .goal-box p {
    color:Teal;
    text-shadow: none;
    font-weight:300;
    font-size:20px ;
    text-align: center;
}

/* Making goal-box completely transparent */
#Celium-fixitPage .goal-box {
    background-color: transparent;
    color: black; /* Text color for the transparent box */
}


#celium-fixitPage .goal-box h3 {
    font-size: 70px;
}

#MissionVision .content-title .content-title-underline{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.831);
}
#MissionVision .goal-box .p {
    color: #41464b;
}

/* Adjusting background and text color */
#ProductDesc {
    background-color: teal; /* Teal background color */
    color: white; /* White text color */
}

#ProductDesc .value-item:hover {
    background-color: rgba(0, 171, 171, 0.556); /* Change background color on hover */
    color: white; /* Change text color on hover */
}

#ProductDesc h4 {
    color: black; /* Bold black color for h4 headings */
    text-align: center;
    font-weight: 600;
    font-size: 30px;
}

#ProductDesc p {
    color: white; /* White color for paragraphs */
    text-align: center;
    font-weight: 350;
    font-size: 22px;
}
/* Adding curves to value item classes */
#ProductDesc .value-item {
    border-radius: 15px; /* Adjust the value to control the curve */
}

/*===================================
   IT Service page
=====================================*/

#ITservicePage {
    
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
    padding: 50px 0; /* Add padding to the section */
    height: 100%;

}
#ITservicePage .content-title h3 {
    color:teal;
    font-size: 30px;
    font-weight: 600;
    margin: 20px 0 20px 0;
    text-align: center;
}

/* Adjusting text color, shadow, and font weight for paragraph */
#ITservicePage .goal-box p {
    color:Teal;
    text-shadow: none;
    font-weight:300;
    font-size:20px ;
    text-align: center;
}

/* Making goal-box completely transparent */
#ITservicePage .goal-box {
    background-color: transparent;
    color: black; /* Text color for the transparent box */
}


#ITservicePage .goal-box h3 {
    font-size: 70px;
}

#MissionVision .content-title .content-title-underline{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.831);
}
#MissionVision .goal-box .p {
    color: #41464b;
}

/* Adjusting background and text color */
#ProductDesc {
    background-color: teal; /* Teal background color */
    color: white; /* White text color */
}

#ProductDesc .value-item:hover {
    background-color: rgba(0, 171, 171, 0.556); /* Change background color on hover */
    color: white; /* Change text color on hover */
}

#ProductDesc h4 {
    color: black; /* Bold black color for h4 headings */
    text-align: center;
    font-weight: 600;
    font-size: 30px;
}

#ProductDesc p {
    color: white; /* White color for paragraphs */
    text-align: center;
    font-weight: 350;
    font-size: 22px;
}
/* Adding curves to value item classes */
#ProductDesc .value-item {
    border-radius: 15px; /* Adjust the value to control the curve */
}


/*===================================
     it-hardware Page
=====================================*/
#it-hardwarePage {
     /* Add the path to your background image */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
    padding: 50px 0; /* Add padding to the section */
    height: 100%;
}
#it-hardwarePage .content-title h3 {
    color:teal;
    font-size: 30px;
    font-weight: 700;
    margin: 20px 0 20px 0;
    text-align: center;
}
/* Adjusting text color, shadow, and font weight for paragraph */
#it-hardwarePage .goal-box p {
    color:Teal;
    text-shadow: none;
    font-weight:300;
    font-size:20px ;
    text-align: center;
}

#it-hardwarePage .goal-box {
    background-color: transparent;
    color: black; /* Text color for the transparent box */
}
#it-hardwarePage .goal-box h3{
    font-size: 70px;
    
}
#MissionVision .content-title .content-title-underline{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.831);
}
#MissionVision .goal-box .p {
    color: #41464b;
}

/*===================================
     Microsoft Page
=====================================*/
#microsoftPage {
     /* Add the path to your background image */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
    padding: 50px 0; /* Add padding to the section */
    overflow: hidden;
    height: 100vh;
    width: 100%;
}
#microsodtPage .image-container {
    width:100%;
    height: auto;
}
#microsoftPage .content-title h3 {
    color:teal;
    font-size: 50px;
    font-weight: 700;
    margin: 20px 0 20px 0;
    text-align: center;
}
#microsoftPage .goal-box h3 p{
    font-size: 70px;
}
#MissionVision .content-title .content-title-underline{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.831);
}
#MissionVision .goal-box .p {
    color: #41464b;
}

/*===================================
     training Page
=====================================*/
#TrainingPage {
     /* Add the path to your background image */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
    padding: 50px 0; /* Add padding to the section */
    overflow: hidden;
    height: 100vh;
    width: 100%;
}
#TrainingPage .content-title h3 {
    color:teal;
    font-size: 60px;
    font-weight: 700;
    margin: 20px 0 20px 0;
    
    text-align: center;
}
#TrainingPage .goal-box h3 p{
    font-size: 70px;
    
}
#MissionVision .content-title .content-title-underline{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.831);
}
#MissionVision .goal-box .p {
    color: #41464b;
}


/*===================================
     endpoint Page
=====================================*/
#EndpointPage {
    /* Add the path to your background image */
    background-size: cover; /* Cover the entire section */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Do not repeat the background image */
    padding: 50px 0; /* Add padding to the section */
    overflow: hidden;
    height: 100%;
    width: 100%;
}
#EndpointPage .content-title h3 {
    color:teal;
    font-size: 50px;
    font-weight: 700;
    margin: 20px 0 20px 0;
    
    text-align: center;
}
#EndpointPage .goal-box h3 p{
    font-size: 70px;
    
}
#MissionVision .content-title .content-title-underline{
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.831);
}
#MissionVision .goal-box .p {
    color: #41464b;
}










/*===================================
     MEDIA QUERIES
=====================================*/
/* For Mobile S (320px) */
@media only screen and (max-width: 320px) {
    body {
        font-size: 14px; /* Adjust font size for smaller screens */
    }
    
    .navbar.sticky-top {
        width: 110%;
    }
    .navbar-toggler-icon {
        background-size: 50%;
    }
    .image-container img {
        max-width: 0%;
    }
    #home-heading h3 {
        font-size: 20px; /* Decrease font size */
    }
    .btn-general {
        border-radius: 50px;
        border-width: 1px;
        font-size: 10px;
    }
    .service-item-icon i {
        margin-right: 0px;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.365);
        padding-top: 30px;
    }
    .content-title h3 {
        font-size: 15px;   
    }
    #AboutUsPage .content-title h3 {
        font-size: 15px;
    }
    #about-desc p {
        font-weight: 395;
        font-size: 10px;
    }
    .content-box h3 {
        font-size: 12px;
        font-weight: 900;
    }
    .value-item p {
        font-size: 10px;
        text-align: center;
    }
    .value-iten h4 {
        font-size: 20px;
    }
    .goal-box p {
        font-size: 13px;
    }
    .goal-box h4 {
        font-size: 13px;
    }
    #ProductDesc h4 {
        font-size: 18px;
        color: #232323;
    }
    #ProductDesc p {
        font-size: 10px;
        
    }
    #AboutUsPage .goal-box p {
        font-size: 10px;
    }
    #MissionAb .content-box h3 {
        font-size: 20px;
        font-weight: 800;
    }
    #MissionAb .content-box p {
        font-size: 10px;
        font-weight: 500;
    }
    #VisionAb .content-box h3 {
        font-size: 20px;
        font-weight: 800;
    }
    #VisionAb .content-box p {
        font-size: 10px;
        font-weight: 500;
    }
    #Values .content-title h3 {
        font-size: 20px;
        font-weight: 800;
    }
    #Values .value-item {
        padding: 70px;
        border-radius: 15px;
    }
    #Values .value-item h4 {
        font-weight: 800;
        font-size: 20px;
        color: #232323;
    }
    #Values .value-item p {
        font-size: 10px;
    }
    #Celium-fixitPage .goal-box p {
        font-size: 10px;
    }
    #it-hardwarePage .content-title h3 {
        font-size: 13px;
    }
    
    #it-hardwarePage .goal-box p {
        font-size: 10px;
        color: #232323;
    }
    
    #ITservicePage .content-title h3 {
        font-size: 15px; 
    }
    #ITservicePage .goal-box p {
        font-size: 10px;
        color: #232323;
    }
}


/* For Mobile M (375px) */
@media only screen and (min-width: 321px) and (max-width: 375px) {
    body {
        font-size: 16px; /* Adjust font size for medium mobile screens */
    }

    .content-title h3 {
        font-size: 22px; /* Adjust title size for medium mobile screens */
    }

    .content-title-underline {
        width: 35px; /* Adjust underline width for medium mobile screens */
    }
    .image-container img {
        max-width: 0%;
    }
}


/* For Mobile L (435px) */
@media only screen and (max-width: 435px) {
    body {
        font-size: 17px; /* Adjust font size for larger mobile screens */
    }
    .image-container img {
        max-width: 0%;
    }
    .content-title h3 {
        font-size: 24px; /* Adjust title size for larger mobile screens */
    }

    .content-title-underline {
        width: 40px; /* Adjust underline width for larger mobile screens */
    }
    #about-desc p {
        font-size: 13px;
    }
    .navbar.sticky-top {
        width: 110%;
    }
    .navbar-toggler-icon {
        background-size: 100%;
    }
    #home-heading h3 {
        font-size: 25px; /* Decrease font size */
    }
    .btn-general {
        border-radius: 50px;
        border-width: 1px;
        font-size: 10px;
    }
    .service-item-icon i {
        margin-right: 0px;
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.365);
        padding-top: 30px;
    }
    .content-title h3 {
        font-size: 15px;   
    }
    #AboutUsPage .content-title h3 {
        font-size: 15px;
    }
    #about-desc p {
        font-weight: 395;
        font-size: 15px;
    }
    .content-box h3 {
        font-size: 15px;
        font-weight: 900;
    }
    .value-item p {
        font-size: 10px;
        text-align: center;
    }
    .value-iten h4 {
        font-size: 20px;
    }
    .goal-box p {
        font-size: 13px;
    }
    .goal-box h4 {
        font-size: 13px;
    }
    #ProductDesc h4 {
        font-size: 18px;
        color: #232323;
    }
    #ProductDesc p {
        font-size: 10px;
        
    }
    #AboutUsPage .goal-box p {
        font-size: 10px;
    }
    #MissionAb .content-box h3 {
        font-size: 20px;
        font-weight: 800;
    }
    #MissionAb .content-box p {
        font-size: 10px;
        font-weight: 500;
    }
    #VisionAb .content-box h3 {
        font-size: 20px;
        font-weight: 800;
    }
    #VisionAb .content-box p {
        font-size: 10px;
        font-weight: 500;
    }
    #Values .content-title h3 {
        font-size: 20px;
        font-weight: 800;
    }
    #Values .value-item {
        padding: 70px;
        border-radius: 15px;
    }
    #Values .value-item h4 {
        font-weight: 800;
        font-size: 20px;
        color: #232323;
    }
    #Values .value-item p {
        font-size: 10px;
    }
    #Celium-fixitPage .goal-box p {
        font-size: 10px;
    }
    #it-hardwarePage .content-title h3 {
        font-size: 13px;
    }
    
    #it-hardwarePage .goal-box p {
        font-size: 10px;
        color: #232323;
    }
    
    #ITservicePage .content-title h3 {
        font-size: 15px; 
    }
    #ITservicePage .goal-box p {
        font-size: 10px;
        color: #232323;
    }
}


/* For Tablet (768px) */
@media only screen and (max-width: 768px) {
    body {
        font-size: 18px; /* Adjust font size for tablets */
    }

    .content-title h3 {
        font-size: 25px; /* Adjust title size for tablets */
    }

    .content-title-underline {
        width: 45px; /* Adjust underline width for tablets */
    }
    .image-container img {
        padding-top: 100px;
        max-width:0%;
    }
    #MissionAb .content-box p {
        font-size: 15px;
    }
    #MissionAb .content-box h3 {
        font-size: 30px;
    }
    #VisionAb .content-box p {
        font-size: 15px;
    }
    #VisionAb .content-box h3 {
        font-size: 30px;
    }
    #Values .value-item p {
        font-size: 13px;
        font-weight: 500;
    }
    #Values .value-item h4 {
        font-size: 20px;
    }
    #ProductDesc h4 {
        font-size: 20px;
    }
    #ProductDesc p {
        font-size: 13px;
        font-weight: 500;
    }
    #Celium-fixitPage .goal-box p {
        font-size: 15px;
    }
    #it-hardwarePage .content-title h3 {
        font-size: 20px;
    }
    #it-hardwarePage .goal-box p {
        font-size: 15px;
    }
    #ITservicePage .goal-box p {
        font-size: 15px;
    }
    #ITservicePage .content-title h3 {
        font-size:20px;
    }
}


/* For Laptop (1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    body {
        font-size: 20px; /* Adjust font size for laptops */
    }

    .content-title h3 {
        font-size: 28px; /* Adjust title size for laptops */
    }

    .content-title-underline {
        width: 50px; /* Adjust underline width for laptops */
    }
}


/* For Laptop L (1440px) */
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
    body {
        font-size: 22px; /* Adjust font size for larger laptops */
    }

    .content-title h3 {
        font-size: 30px; /* Adjust title size for larger laptops */
    }

    .content-title-underline {
        width: 55px; /* Adjust underline width for larger laptops */
    }
}


/* For 4K (2560px) */
@media only screen and (min-width: 1441px) and (max-width: 2560px) {
    body {
        font-size: 24px; /* Adjust font size for 4K displays */
    }

    .content-title h3 {
        font-size: 32px; /* Adjust title size for 4K displays */
    }

    .content-title-underline {
        width: 60px; /* Adjust underline width for 4K displays */
    }
}

