/* css/style.css */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

h1 {
    color: #c7240b;
}

/* css for header.php file code start*/
img.header_logo {
    margin-right: 80px;
}

.navbar-light .navbar-nav .nav-link {
    color: red;
    font-size: 20px;
    font-weight: 600;
}

/* css for header.php file code end*/

/* css for footer.php file code start*/
footer {
    background-color: #343a40;
    color: white;
}
/* css for footer.php file code end*/

/* home about us css code start*/

/* Director Message Section */
#director-message {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.director-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.director-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.director-img:hover img {
    transform: scale(1.1);
}

.director-img:hover {
    transform: scale(1.05);
}

.message-container {
    padding: 20px;
    border-left: 5px solid #ffc107; /* Yellow border */
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-in-out;
}

.message-container h4 {
    color: #dc3545; /* Red color */
}

.message-container p {
    color: #000; /* Black color */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* home about us css code end*/

/* home page awards code start*/
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    background-color: white;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    display: flex;
    min-width: 100%;
    justify-content: space-between;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    margin: 0 10px;
    flex: 1;
    max-width: 18%;
}

.card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 768px) {
   
}

@media (max-width: 480px) {
    
}

/* home page awrds code end*/

/*  home page services code start*/

.services-sectors-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: #ffcc00;
}

.services-sectors-box:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.services-sectors-box h3 {
    color: rgb(179, 18, 18);
    margin-bottom: 20px;
}

.list-group-item {
    border: none;
    padding: 10px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.list-group-item:hover {
    background-color:yellow;
    color: rgb(179, 18, 18);
    cursor: pointer;
}



#ratings-accreditations {
    padding: 50px 0;
    background-color: #f9f9f9;
}

h2 {
    font-size: 2rem;
    color: #dc3545;
}

.info-box {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    cursor: pointer;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-box-header {
    padding: 15px;
    background-color: #dc3545;
    color: #fff;
}

.info-title {
    margin: 0;
    font-size: 1.25rem;
}

.info-box-body {
    padding: 15px;
    color: #333;
}

.info-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

img {
    border-radius: 8px;
}

@media (max-width: 768px) {
    
}

@media (max-width: 480px) {
    
}


#digital-marketing {
    padding: 50px 0;
    background-color: #f9f9f9;
}

h2, h3 {
    font-size: 2rem;
    color: #dc3545;
    position: relative;
    animation: fadeInDown 1s ease-in-out;
}

p.lead {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.service-box {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-img img {
    width: 100%;
    height: 200px;
    display: block;
    transition: transform 0.3s ease;
}

.service-box:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 20px;
    text-align: center;
}

.service-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-box:hover .service-title, .service-box:hover .service-text {
    color: #dc3545;
}

.btn-warning {
    background-color: #ffc107;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-warning:hover {
    background-color: #e0a800;
    transform: scale(1.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Custom Styles for Social Media Management Section */
#social-media-management {
    background-color: #f9f9f9;
}

#social-media-management h2 {
    color: #333;
    font-weight: bold;
}

#social-media-management p {
    color: #555;
}

#social-media-management .img-fluid {
    max-width: 100%;
    height: auto;
}

.card-deck {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    color: #cc0000;
}

.btn-primary {
    background-color: #ffcc00;
    border-color: #cc0000;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #004085;
}



/* awards page code start*/

.gallery-item img {
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* awards page code end*/
/* terms condition page code start*/

.terms_heading{
    color: red;
    text-decoration: underline;
    
}

/* terms conditions page code end*/


/*partners css code start*/

.carousel-img-custom-css {
      width: 100%; /* Full width */
    height: 300px; /* Fixed height */
    object-fit: cover; /* Ensure the image fits inside without cropping or stretching */
    background-color: #000;
  }

/*partners css code end*/

@media (max-width: 768px) {
    .card {
        max-width: 48%;
    }
    .info-box {
        margin-bottom: 20px;
    }

    h2 {
        font-size: 1.75rem;
    }

    .info-title {
        font-size: 1.15rem;
    }

    .info-text {
        font-size: 0.95rem;
    }
    .service-box {
        margin-bottom: 20px;
    }

    h2, h3 {
        font-size: 1.75rem;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .card {
        max-width: 98%;
    }
    

    .info-title {
        font-size: 1rem;
    }

    .info-text {
        font-size: 0.9rem;
    }
    h2, h3 {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1rem;
    }

    .service-text {
        font-size: 0.9rem;
    }
}
/* home page services code end*/