/* MASTER CSS */

@import url('https://fonts.googleapis.com/css2?family=Baskervville+SC&display=swap');
/* navbar css start */
/* navbar css end */
:root {
    --primary-color: #01A79D;
    --secondary-color: #09164F;
    --yellow:#F9B604;
}
body{
    overflow-x:hidden;
    font-family:Arial, Helvetica, sans-serif;
    height: auto;
}

/* MASTER CSS */
p{
    font-family: 15px;
    text-align:left;
    word-spacing: 2px;
}

h3{
    font-size: 20px;
    color:var(--primary-color);
}

h1, h2, h3, h4, h5, h6{
    font-family: "Baskervville SC", serif;
}


/********** Hero section CSS Starts **********/
.header-section {
    padding: 0;
    background-color: #f8f9fa;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
/* Form section styles */
.form-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #272262, #01A79D);
    /* Gradient background */
    color: #fff;
    /* White text color */
    font-weight: 600;
}

.col-auto button {
    width: 100%;
    font-weight: 600;
    color: white;
}

@media (max-width: 991px) {
    .header-image {
        height: auto;
    }

    .enquiry-form {
        height: auto;
        padding: 20px;
    }
}
/* header css end */

/* first_section start */
.first_section{
    background-color:var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.first_section h1{
    font-family: "Baskervville SC", serif;
    font-weight:500;
    font-style: normal;
}
.first_section p{
    text-align: justify;
}
.first_section button {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 8px;
    padding: 10px 20px;
    color: white !important;
    background-color: rgb(27, 24, 24) !important;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: 0.3s;
}

.first_section button:hover {
    color: white;
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/
.courses .icon-box {
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.12);
    padding: 40px 25px;
    border-radius: 12px;
    transition: all 0.4s ease-in-out;
    background: #fff;
    text-align: center;
}

.courses .icon-box .icon {
    margin-bottom: 20px;
    display: inline-block;
    width: 60px;
    height: 60px;
    color: white;
    font-size: 30px;
    line-height: 60px;
    border-radius: 50%;
    background-color:var(--primary-color);
}

.courses h2,p{
    text-align: center;
}
.courses .icon-box h4 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
    color:var(--primary-color);
}

.courses .icon-box h4 a {
    color: inherit;
    text-decoration: none;
}

.courses .icon-box p {
    line-height: 24px;
    font-size: 14px;
    color: #666666;
    margin-bottom: 0;
}

.courses .icon-box:hover {
    transform: translateY(-10px) scale(1.05);
    background:var(--primary-color);
    color: white;
    transform: 0.5s ease;
}

.courses .icon-box:hover .icon {
    background-color: #ffffff;
    color:var(--primary-color);
}

.courses .icon-box:hover h4,
.courses .icon-box:hover p {
    color: white;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(rgba(1, 167, 157, 0.8), rgba(1, 167, 157, 0.8)), url('images/students-in-auditorium.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    padding: 60px 0;
    color: #fff;
}


.cta h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta p {
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
}

.cta .cta-btn {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 10px;
    border-radius: 5px;
    transition: background 0.5s, border-color 0.5s;
    border: 2px solid #fff;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

.cta .cta-btn:hover {
    background:var(--secondary-color);
    border-color:white;
    color: #fff;
}

@media (max-width: 1024px) {
    .cta {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .cta .cta-btn-container {
        margin-top: 20px;
    }
}

/* Bottom Section */
.bottom {
    background: linear-gradient(135deg, #272262, #01A79D); /* Gradient background */;
}
.headline {
    padding: 90px;
    color: #fff;
}
.headline p{
    text-align: left;
}
.bottom-form button{
    background-color:rgb(51, 49, 49) !important;
}
.bottom-form button:hover{
    background-color: var(--secondary-color);
    color:white;
}
.bottom-form .back{
    padding: 50px 80px 50px 80px;
    color: #fff;
    font-weight: 600;
    background-color: #01A79D;
}
/* codepen */
main {
    display:flex;
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }
  .stack {
    position: relative;
    width: 350px;
    height: 500px;
  }
  .card {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    user-select: none;
  }
  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .swap {
    animation: swap 1.3s ease-out forwards;
  }
  @keyframes swap {
    30% {
      transform: translate(-150px, -50%) scale(0.85) rotate(-5deg) rotateY(65deg);
    }
    100% {
      transform: translate(-30px, -50%) scale(0.5);
      z-index: -1;
    }
  }
/* codepen */
main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.stack {
    width: 100%;
    max-width: 350px;
    margin-top: 20px;
}

.card {

    transition: transform 0.6s;
    user-select: none;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swap {
    animation: swap 1.3s ease-out forwards;
}

@keyframes swap {
    30% {
        transform: translate(-150px, -50%) scale(0.85) rotate(-5deg) rotateY(65deg);
    }
    100% {
        transform: translate(-30px, -50%) scale(0.5);
        z-index: -1;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content {
        text-align: center;
    }

    .stack {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .stack {
        margin-top: 125px;
        max-width:100%;
    }   
}
/* Program Curriculam */
.semester-card {
    background-color: #e9f4ff; /* Light blue background */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.semester-card h5 {
    text-align: center;
    font-weight: 700;
    color: #1b2a49; /* Dark blue color */
}

.semester-card ul {
    list-style-type: none;
    padding: 0;
}

.semester-card ul li {
    padding: 5px 0;
    color: #1b2a49; /* Dark blue color */
}

/* Responsive CSS: */

/* Responsive padding for Program Curriculum mobile */
@media (max-width: 767px) {
    .semester-card {
        padding: 15px;
    }
}






/* Footer Styles */
.footer-logo img {
    max-width: 150px;
    /* Adjust logo size */
}

.copyright-fluid {
    color: #fff;
    background-color: var(--secondary-color);
    padding: 10px 0;
    /* Padding for better spacing */
    font-size: 0.9rem;
    /* Slightly smaller text for mobile */
}
/* footer  */
/* Mobile Responsiveness */
@media (max-width: 767px) {
    .footer-logo img {
        max-width: 120px;
        /* Slightly smaller logo on mobile */
    }

    .copyright-fluid {
        padding: 15px 0;
        font-size: 0.8rem;
        /* Smaller font size for better readability on small screens */
    }
}
/* bottom section */


/* fixed button */
.fixed-buttons{
    position: fixed;
    right: -1px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .fixed-buttons img{
    width: 50px;
  }
  