
/* Reset default styles */



 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    overflow-x: hidden;
    
    
}

.container{

    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.top-navbar {
    background-color: #b30000;
    padding: 10px 0;
    width: 100%;
    margin: 0;
    overflow:visible;
    z-index: 10;
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%; /* Full width */
}



.nav-links a:hover {
    color: #b30000;
}

.nav-links a::after {
    content: '';
    display: block;
    height: 2px;
    width: 50%;
    background-color: #b30000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}




/*

.social-icons a {
    margin-left: 15px;
    color: white;
    font-size: 20px;
    text-decoration: none;
}
.social-icons a:hover {
    color: #f5f5f5;
}

.social-icons a {
    font-size: 18px;
}
*/

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px; 
    position: relative;
    margin: 0;
    padding: 5px;
    margin-bottom: 20px;/* Space between icons */
    z-index: 20;
}

.social-icons a {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #f5f5f5; /* Lighter color on hover */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 160px;
    border-radius: 5px;
    padding: 10px;
    top: 100%;
    left: 0;
  }



     /*  padding: 2rem 1rem; *
}



.top-navbar .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    width:100%;
}

.app-links img {
    width: 100px;
    margin: 0 10px;
}





/* Bottom Navbar *
.bottom-navbar {
    background-color: white;
    padding: 10px 0;
    border-top: 2px solid #b30000;
    width:100%;
}

.bottom-navbar .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    width:100%;
}

.nav-links {
    display: flex;
    list-style-type: none;
    align-items: center;
    width:auto;
    justify-content: flex-start;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    white-space: no wrap;
    padding: 20px 5;
    display: inline-block;
    position: relative;
    padding: -100px;
    gap: 1px;
}

.nav-links a:hover {
    color: #b30000;
}

.nav-links a::after {
    content: '';
    display: block;
    height: 2px;
    width: 50%;
    background-color: #b30000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* Login Button *
.login-button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
}

/* Logo *
.logo img {
    height: 130px;
    max-width: 100%;
}

/* Responsive Design *
@media (max-width: 768px) {
    /* Stack top-navbar *
    .top-navbar .navbar-container {
        flex-direction: column;
        text-align: center;
    }

    /* Adjust icons size for smaller screens *
    .app-links img {
        width: 80px;
    }

    .social-icons a {
        font-size: 18px;
    }

    /* Bottom Navbar adjustments *
    .bottom-navbar .navbar-container {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        margin-left: -15px;

    }

    .nav-links li {
        padding: 5px 0;
        display: flex;
        align-items: center;
        display: inline-block;
        position: relative;
        white-space: no wrap;
    }

    /* Logo adjustments *
    .logo img {
        height: 100px;
    }

    /* Login Button *
    .login-button {
        margin-top: 10px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Further adjustments for extra small screens *
    .app-links img {
        width: 60px;
    }

    

    .nav-links a {
        font-size: 14px;
    }

    .logo img {
        height: 80px;
    }

    .login-button {
        padding: 8px 16px;
    }
}

.dropdown {
    position: relative;
    align-items: center;
    display: flex;
  }
  
  .dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 160px;
    border-radius: 5px;
    padding: 10px;
    top: 100%;
    left: 0;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-radius: 5px;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  /* Show the dropdown content when hovering *
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Styling for the caret icon *
  .fa-caret-down {
    margin-left: 8px;
    font-size: 16px;
    color: #fff;
  }
  

.nav-links .dropdown-content {
    display: none; /* Hide by default *
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.nav-links .dropdown-content a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
    text-wrap: nowrap;
}

  /* Add a red background color to navbar links on hover *
 
  
  /* Dropdown content (hidden by default) */
  
  
  /* Links inside the dropdown */
 
  
  /* Add a grey background color to dropdown links on hover *
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  .nav-links .dropdown:hover .dropdown-content {
    display: block; /* Show dropdown when hovering *
}
 /* 


     /*  padding: 2rem 1rem; *
}



.top-navbar .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    width:100%;
}

.app-links img {
    width: 100px;
    margin: 0 10px;
}

.social-icons a {
    margin-left: 15px;
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.social-icons a:hover {
    color: #f5f5f5;
}

/* Bottom Navbar *
.bottom-navbar {
    background-color: white;
    padding: 10px 0;
    border-top: 2px solid #b30000;
    width:100%;
}

.bottom-navbar .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    width:100%;
}

.nav-links {
    display: flex;
    list-style-type: none;
    align-items: center;
    width:auto;
    justify-content: flex-start;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    white-space: no wrap;
    padding: 20px 5;
    display: inline-block;
    position: relative;
    padding: -100px;
    gap: 1px;
}


 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Roboto', sans-serif;
    background-color: #f9f9f9;
    overflow-x: hidden;
    
}

.container{

    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.top-navbar {
    background-color: #b30000;
    padding: 10px 0;
    width: 100%;
    margin: 0;
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%; /* Full width *
}*/


/*  padding: 2rem 1rem; *
}



.top-navbar .navbar-container {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: auto;
padding: 0 20px;
width:100%;
}

.app-links img {
width: 100px;
margin: 0 10px;
}

.social-icons a {
margin-left: 15px;
color: white;
font-size: 20px;
text-decoration: none;
}

.social-icons a:hover {
color: #f5f5f5;
}

/* Bottom Navbar *
.bottom-navbar {
background-color: white;
padding: 10px 0;
border-top: 2px solid #b30000;
width:100%;
}

.bottom-navbar .navbar-container {
display: flex;
align-items: center;
justify-content: space-between;
max-width: 1200px;
margin: auto;
padding: 0 20px;
width:100%;
}

.nav-links {
display: flex;
list-style-type: none;
align-items: center;
width:auto;
justify-content: flex-start;
}

.nav-links li {
margin: 0 10px;
}

.nav-links a {
text-decoration: none;
color: black;
font-weight: 500;
white-space: no wrap;
padding: 20px 5;
display: inline-block;
position: relative;
padding: -100px;
gap: 1px;
}

.nav-links a:hover {
color: #b30000;
}

.nav-links a::after {
content: '';
display: block;
height: 2px;
width: 50%;
background-color: #b30000;
transform: scaleX(0);
transition: transform 0.3s ease;
}

.nav-links a:hover::after {
transform: scaleX(1);
}

/* Login Button *
.login-button {
background-color: black;
color: white;
border: none;
padding: 10px 20px;
font-weight: 500;
border-radius: 5px;
cursor: pointer;
}

/* Logo *
.logo img {
height: 130px;
max-width: 100%;
}

/* Responsive Design *
@media (max-width: 768px) {
/* Stack top-navbar *
.top-navbar .navbar-container {
   flex-direction: column;
   text-align: center;
}

/* Adjust icons size for smaller screens *
.app-links img {
   width: 80px;
}

.social-icons a {
   font-size: 18px;
}

/* Bottom Navbar adjustments *
.bottom-navbar .navbar-container {
   flex-direction: column;
}

.nav-links {
   flex-direction: column;
   align-items: center;
   margin-left: -15px;

}

.nav-links li {
   padding: 5px 0;
   display: flex;
   align-items: center;
   display: inline-block;
   position: relative;
   white-space: no wrap;
}

/* Logo adjustments *
.logo img {
   height: 100px;
}

/* Login Button *
.login-button {
   margin-top: 10px;
   width: 100%;
}
}

@media (max-width: 480px) {
/* Further adjustments for extra small screens *
.app-links img {
   width: 60px;
}

.social-icons a {
   font-size: 16px;
   margin-left: 10px;
}

.nav-links a {
   font-size: 14px;
}

.logo img {
   height: 80px;
}

.login-button {
   padding: 8px 16px;
}
}

.dropdown {
position: relative;
align-items: center;
display: flex;
}

.dropdown a {
display: flex;
align-items: center;
justify-content: space-between;
padding: 5px 0;
}

.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
z-index: 1;
min-width: 160px;
border-radius: 5px;
padding: 10px;
top: 100%;
left: 0;
}

.dropdown-content a {
color: black;
padding: 12px;
text-decoration: none;
display: block;
text-align: left;
border-radius: 5px;
}

.dropdown-content a:hover {
background-color: #ddd;
}

/* Show the dropdown content when hovering *
.dropdown:hover .dropdown-content {
display: block;
}

/* Styling for the caret icon *
.fa-caret-down {
margin-left: 8px;
font-size: 16px;
color: #fff;
}


.nav-links .dropdown-content {
display: none; /* Hide by default *
position: absolute;
top: 100%;
left: 0;
background-color: white;
min-width: 150px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
z-index: 10;
}

.nav-links .dropdown-content a {
display: block;
padding: 10px;
color: black;
text-decoration: none;
text-wrap: nowrap;
}

/* Add a red background color to navbar links on hover *


/* Dropdown content (hidden by default) */


/* Links inside the dropdown */


/* Add a grey background color to dropdown links on hover *
.dropdown-content a:hover {
background-color: #ddd;
}
.nav-links .dropdown:hover .dropdown-content {
display: block; /* Show dropdown when hovering *
}
/* 
/* Login Button *
.login-button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
}

/* Logo *
.logo img {
    height: 130px;
    max-width: 100%;
}

/* Responsive Design *
@media (max-width: 768px) {
    /* Stack top-navbar *
    .top-navbar .navbar-container {
        flex-direction: column;
        text-align: center;
    }

    /* Adjust icons size for smaller screens *
    .app-links img {
        width: 80px;
    }

    .social-icons a {
        font-size: 18px;
    }

    /* Bottom Navbar adjustments *
    .bottom-navbar .navbar-container {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        margin-left: -15px;

    }

    .nav-links li {
        padding: 5px 0;
        display: flex;
        align-items: center;
        display: inline-block;
        position: relative;
        white-space: no wrap;
    }

    /* Logo adjustments *
    .logo img {
        height: 100px;
    }

    /* Login Button *
    .login-button {
        margin-top: 10px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Further adjustments for extra small screens *
    .app-links img {
        width: 60px;
    }

    .social-icons a {
        font-size: 16px;
        margin-left: 10px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .logo img {
        height: 80px;
    }

    .login-button {
        padding: 8px 16px;
    }
}

.dropdown {
    position: relative;
    align-items: center;
    display: flex;
  }
  
  .dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 160px;
    border-radius: 5px;
    padding: 10px;
    top: 100%;
    left: 0;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-radius: 5px;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  /* Show the dropdown content when hovering *
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Styling for the caret icon *
  .fa-caret-down {
    margin-left: 8px;
    font-size: 16px;
    color: #fff;
  }
  

.nav-links .dropdown-content {
    display: none; /* Hide by default *
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.nav-links .dropdown-content a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
    text-wrap: nowrap;
}

  /* Add a red background color to navbar links on hover *
 
  
  /* Dropdown content (hidden by default) */
  
  
  /* Links inside the dropdown */
 
  
  /* Add a grey background color to dropdown links on hover *
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  .nav-links .dropdown:hover .dropdown-content {
    display: block; /* Show dropdown when hovering *
}
 
/* General reset to prevent unwanted margins and padding */


/* Full-Width Navbar */


/* Top Navbar */
.top-navbar {
    background-color: red;
    padding: 10px 0;
    width: 100%; /* Ensures it takes full width */
    margin: 0;
}


.app-links img,
.store-icon {
    width: 100px;
    height: auto;
    margin-right: 10px;
}

.social-icons a {
    margin: 0 10px;
    color: black;
    font-size: 20px;
}

/* Bottom Navbar */
.bottom-navbar {
    background-color: white;
    padding: 15px 0;
    width: 100%; /* Ensures it takes full width */
    margin: 0;
}

.bottom-navbar .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%; /* Full width */
}

.logo img {
    height: 130px;
    max-width: 100%;
}

.nav-links {
    display: flex;
    list-style-type: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
}

.nav-links .dropdown {
    position: relative;
}



.nav-links .dropdown-content {
    display: none; 
    position: absolute;
    

    min-width: 150px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 10;
    
}
/*
.nav-links .dropdown-content a {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
    text-wrap: nowrap;
}*/

.nav-links .dropdown:hover .dropdown-content {
    display: block;
}
.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: red;
  }
.nav-links .dropdown-content a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
}

.nav-links .dropdown-content a:hover {
    
    text-decoration-color: red;
}

/* Login button */
.login-button {
    background-color: 4CC9FE;
    padding: 10px 20px;
    border: none;
    color: white;
    cursor: pointer;
    border-radius:4px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .navbar-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        padding-left: 0;
    }

    .nav-links li {
        width: 100%;
        margin: 10px 0;
    }

    .social-icons {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-top: 10px;
    }

    .app-links {
        flex-direction: column;
    }

    .login-button {
        width: 100%;
        margin-top: 20px;
    }
}

content-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
    background-color: #f9f9f9;
    justify-content: center;
}
/*

#c6 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
}

*/
/* Content styling */
/*.form-container, .address-container {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.form-container h2, .address-container h2 {
    color: #333;
    font-size: 1.4em;
    margin-bottom: 15px;
}*/
  
/* Banner Image */
.banner {
    width: 100%; /* Ensure the banner takes the full width of its container */
    overflow: hidden; /* Hide any overflow to maintain clean edges */
}

.banner img {
    width: 100%; /* Make the image take the full width of the banner */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Remove any inline spacing */
    margin: auto; /* Center the image if needed */
    border-radius: 8px; /* Round the corners */
}


 /* Specific colors for the top and bottom borders */


/* Job Oriented Courses Section */
.job-oriented-courses {
    text-align: center;
    padding: 50px 20px;
    background-color: #f8f9fa;
}

.job-oriented-courses h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

/* Course Container */
.course-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

/* Course Card */
.course-card {
    background-color: #f5f9fc;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: left;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card img {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
}

.course-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-bottom: 12px;
}

.course-info {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.course-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Red Icon Styling */
.icon {
    color: #d32f2f;
    font-size: 18px;
}

/* Responsive for Smaller Screens */
@media (max-width: 768px) {
    .dropdown-content {
        flex-direction: column;
    }
}

.getfirstjob-title {
font-size: 30px;
color: #333;
margin:0;
}
.getfirstjob-desc {
font-size: 16px;
line-height: 1.5;
color: black;
margin-top: -30px;
}
.quote-section {
    background-color: #1a1a1a;
    color: #d3d3d3;
    text-align: center;
    padding: 60px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    margin-top: 60px;
    margin: 50px auto; /* Center the box horizontally */
    width: 100%; /* Set the width (adjust as needed, e.g., 50%, 60%, or a fixed px width) */
     /* Limit the max width */
    border-radius: 0px; /* Optional: Add rounded corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    min-height: 200px; 
}
body {
    font-family: 'Montserrat', sans-serif;
}
.course-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 15px;
}
.course-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}
.course-description {
    font-size: 0.9rem;
    color: #333;
}
.read-more-btn {
    color: #fff;
    background-color: #d9534f; /* Red color */
    border: none;
    font-weight: bold;
    padding: 8px 16px;
    text-transform: uppercase;
    margin-top: 15px;
}
.main-container {
     width: 80%; 
     max-width: 1000px; 
     text-align: center;
      margin: auto;
     } 
     .heading h1 {
         font-size: 36px;
          font-weight: 600; 
          margin-bottom: 20px;
         }
         .card-img-top {
height: 150px; /* Adjust as needed */
object-fit: cover; /* Ensures the image fits within the set height */
}


.card-container {
display: flex;
justify-content: space-around;
margin: 20px;
}

.card {
border: 1px solid #eee;

width: 30%;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
display: flex; 
flex-direction: column;
justify-content: space-between; 
text-align: center;
overflow: hidden;
}

.card img {
width: 100%;
height: auto;
border-radius: 0px;
margin-bottom: 15px;
object-fit: cover;
}

.card h3 {
font-size: 1.5em;
margin-bottom: 10px;
}

.card p {
font-size: 1em;
margin-bottom: 20px;
line-height: 1.4;
}

.read-more {
margin: 0 auto;
display: block;
padding: 10px 20px;
background-color: #d32f2f;
color: white;
font-size: 16px;
text-align: center;
text-decoration: none;
border-radius: 5px;
white-space: no-wrap;
max-width: 150px;
}
/* Responsive Styles */
@media (max-width: 992px) {
    .card-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .card {
        width: 45%; /* Two cards per row on medium screens */
        margin-bottom: 20px;
    }

    .heading h1 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .card-container {
        flex-wrap: wrap;
    }
    
    .card {
        width: 100%; /* Single column on small screens */
        margin-bottom: 20px;
    }

    .heading h1 {
        font-size: 24px;
    }

    .course-title {
        font-size: 1.15rem;
    }

    .course-description {
        font-size: 0.85rem;
    }

    .read-more-btn {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .main-container {
        width: 95%; /* Narrower container for small screens */
    }

    .heading h1 {
        font-size: 20px;
    }

    .card h3 {
        font-size: 1.3em;
    }

    .card p {
        font-size: 0.9em;
    }

    .read-more-btn {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
}



.body {
font-family: Arial, sans-serif;
}

.stats-section {
display: flex;
justify-content: space-around;
align-items: center;
background-color: #d32f2f;
color: white;
padding: 20px;
height: 150px;

}

/* Main Stats Section */
.stats-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #d32f2f;
    color: white;
    padding: 20px;
    height: 150px;
    flex-wrap: wrap; /* Allows items to wrap on smaller screens */
}

.stat {
    text-align: center;
    margin: 10px; /* Adds spacing between items on smaller screens */
}

.stat-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .stats-section {
        height: auto; /* Adjust height for smaller screens */
        padding: 15px;
    }

    .stat {
        width: 45%; /* Display two items per row on tablets */
    }

    .stat-title {
        font-size: 14px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .stats-section {
        flex-direction: column; /* Stack items vertically on mobile */
        height: auto;
        padding: 10px;
    }

    .stat {
        width: 100%; /* Full width for each item on mobile */
        margin-bottom: 15px;
    }

    .stat-title {
        font-size: 14px;
    }

    .stat-number {
        font-size: 24px;
    }
}
.getfirstjob-title {
    font-size: 30px;
    color: #333;
    margin: 10px 0; /* Space between title and paragraph */
}

.getfirstjob-desc {
    font-size: 16px;
    line-height: 1.5;
    color: black;
    margin-top: 10px; /* Space between paragraph and button */
}
@media (max-width: 768px) {
    div {
        flex-direction: column; /* Stack elements on smaller screens */
    }
    img {
        max-width: 80%; /* Make image larger on small screens */
        margin-left: 0; /* Remove left margin on smaller screens */
    }
    .getfirstjob-title {
        font-size: 24px; /* Adjust title size */
    }
    .getfirstjob-desc {
        font-size: 14px; /* Adjust description size */
    }
}


.small-container {
     width: 80%; 
     max-width: 1000px; 
     text-align: center;
      margin: auto;
     } 
     .big-heading h1 {
         font-size: 48px;
          font-weight: normal; 
          margin-bottom: 20px;
          font-family: 'Arial', sans-serif;

         }


         .testimonials-heading {
    font-size: 3rem; /* Adjusts the size of the heading */
    font-weight: bold;
    text-align: center; /* Centers the text horizontally */
    margin: 50px 0; /* Adds spacing above and below the heading */
    color: #333; /* Sets a dark color for the text */
  }

  .card {
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: 10px auto; /* Add spacing between the cards */
}

.testimonial-img {
height: 240px; /* Set a fixed height for consistent size */
width: 100%;
object-fit: cover;
}

.carousel-inner {
padding: 20px 0; /* Add some padding at the top and bottom */
}

.carousel-item {
display: flex;
justify-content: center;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
background-size: 20px 20px; /* Make the icons smaller */
width: 20px;
height: 20px;
}

.carousel-control-prev,
.carousel-control-next {
top: 50%; /* Position in the middle vertically */
transform: translateY(-50%);
width: 40px; /* Make the button itself smaller */
height: 40px;
}

.carousel-control-prev {
left: -20px; /* Adjust position to move it slightly outside the carousel */
}

.carousel-control-next {
right: -20px; /* Adjust position to move it slightly outside the carousel */
}

.card body
{


min-height: 350px; /* Ensures uniform card height */
display: flex;
flex-direction: column;
justify-content: space-between;

height: 100%;
}


.footer {
    background-color: black;
    color: white;
    padding: 40px;
    text-align: center;
    width: 100vw; /* Use 100% width instead of 100vw */
    box-sizing: border-box;
    position: relative;
    left: 50%; /* Align with viewport center */
    margin-left: -50vw;  /* Ensure padding doesn’t expand the element’s size */
}

.footer .social-icons {
    margin-bottom: 30px;
    display: flex;
    justify-content: center; /* Center social icons */
    gap: 15px; /* Space between icons */
}

.footer .social-icons a {
    color: white;
    font-size: 1.5rem; /* Adjust size of icons */
}

.footer .social-icons a:hover {
    color: #f5f5f5;
}

.footer .copyright {
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer .social-icons a {
        font-size: 1.2rem;
    }

    .footer .copyright {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer .social-icons {
        gap: 10px; /* Adjust space between icons on small screens */
    }
    .footer .social-icons a {
        font-size: 1rem;
    }
}

* {

    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .content-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    max-width: 600px;
    padding: 20px;
    margin: 0 auto;
  }

  .company-name {
    text-align: center;
    display:flex;
    justify-content: center;
    font-size: 2em;
    color: #dc3545; /* red */
    
    
    font-weight: bold;
    margin-bottom: 20px;
  }

  /* Address and contact info styling */
  .address, .contact-info {
    padding-left: 60px;
    color: #333;
    font-size: 1em;
    line-height: 1.6;
  }

  .address p, .contact-info div {
    margin-bottom: 10px;
  }

  /* Footer styling */
 

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .company-name {
      font-size: 1.5em;
    }
    .address, .contact-info {
      font-size: 0.9em;
      padding-left: 10px;
    }
  }