/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #0a1641;
  color: #03045e;
  line-height: 1.6;
}

/* Navbar */
.cca-creative-navbar {
  background-color: #071e52;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.cca-creative-navbar .logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.cca-nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.cca-nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.cca-nav-links a:hover {
  color: #90e0ef;
}

/* Header */
.cca-creative-header {
  background: linear-gradient(to right, #0077b6, #0f3d63);
  text-align: center;
  color: white;
  padding: 3rem 1rem;
}

.cca-creative-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}




/* Course Description */
.cca-course-title {
  text-align: center;
  color: #000000;
  font-size: 2rem;
  margin-top: 2rem;
}
.cca-course-description {
  padding: 2rem;
  background-color: #ffffff;
}

.cca-course-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.cca-course-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cca-detail-card {
  flex: 1 1 200px;
  background-color: #0066ff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.cca-detail-card h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.cca-detail-card p {
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.cca-detail-card ul {
  list-style: none;
  padding: 0;
}
.cca-detail-card :hover {
    transform: scale(1.05);
    transition: transform 0.3s;
 }

/* Call to Action */
.cca-cta {
  text-align: center;
  margin-top: 2rem;
}

.cca-btn-primary {
  display: inline-block;
  background-color: #0c0fa4;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cca-btn-primary:hover {
  background-color: #000000;
}
.cca-cta h3 {
  margin-bottom: 1rem;
  color: #000000;
}
.cca-cta a {
  margin-bottom: 1rem;
  color: #ffffff;
}
.cca-cta a:hover {
  color: #fff200;
    text-decoration: none;
    transform: scale(1.05);
    transition: transform 0.6s;
}


/* Gallery */
.cca-gallery-section {
  padding: 2rem;
  background-color: #09434e;
  color: white;
  text-align: center;
  height: 350px;

}

.cca-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.cca-gallery-grid img {
  width: 100%;
  border-radius: 10px;
}


.cca-gallery-grid img:hover {
  transform: scale(1.05);
  transition: transform 0.6s;
}










/* Course Benefits */
.cca-course-benefits {
  background-image: url('https://i.ibb.co/v4JMCQxj/lab.png');
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  color: #fff;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cca-benefits-container {
  background-color: rgba(7, 18, 100, 0.85); /* semi-transparent blue overlay */
  padding: 2rem;
  border-radius: 15px;
  max-width: 1000px;
  width: 100%;
  animation: fadeIn 1s ease-in-out;
}

.cca-benefits-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cca-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.cca-benefits-list li {
  background: #ffffff15;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  color: #caf0f8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cca-benefits-image {
  width: 80%;
  border-radius: 10px;
  margin-top: 1.5rem;
  transition: transform 0.5s ease;
}

.cca-benefits-image:hover {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cca-benefits-title {
    font-size: 1.5rem;
  }
  .cca-benefits-list {
    grid-template-columns: 1fr;
  }
}
/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}








/* Placement Grid */
.cca-placement {
  padding: 2rem;
  background-color: #11869e;
  color: white;
  text-align: center;
  height: 300px;
}

.cca-placement-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.cca-placement-card {
  flex: 1 1 200px;
  background-color: #09184a;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(246, 255, 0, 0.1);
  text-align: center;
}

.cca-placement-card h3 {
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.cca-placement-card p {
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.cca-placement-card ul {
  list-style: none;
  padding: 0;
}
.cca-placement-card :hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}



/* Video Section */
.cca-youtube-section {
background-color: #0b1a5c;
color: white;
padding: 2rem;
position: relative;
padding: 0;
}

.cca-video-wrapper iframe {
  width: 100%;
  height: 450px;
}

.cca-video-overlay {
  position: absolute;
  top: 20%;
  left: 10%;
  color: white;
  text-align: center;
  position: center;
  width: 80%;
  height: auto;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

/* Franchise Section */
.cca-franchise {
  padding: 2rem;
  background-color: #061d31;
  color: white;
}

.cca-franchise-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.cca-franchise-text {
  flex: 1;
  max-width: 600px;
}
.cca-franchise-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.cca-franchise-text p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.cca-franchise-text ul {
  list-style: none;
  padding: 0;
}


.cca-franchise-benefits {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
    display: grid;
    justify-content: left;
}

.cca-franchise-image img {
    background-image: url('https://i.ibb.co/ZpSkjFSj/Website-pic-1.png') alt="Franchise Collaboration" class="franchise-image";
    background-color: #ffffff;
    border-radius: 10px;
    width: 100%;
    height: auto;
}
.cca-franchise-image img:hover {
  transform: scale(1.05);
  transition: transform 0.8s;

}
.cca-franchise-btn-primary{
  display: inline-block;
  background-color: #00b4d8;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s;
  justify-content: left;
  gap: 2rem;
}

.cca-franchise-btn-primary:hover {
  background-color: #000000;

}






/* Footer */
.cca-footer {
  background-color: #03045e;
  color: white;
  padding: 3rem 1rem 1rem;
}

.cca-footer-wrapper {
  max-width: 1300px;
  margin: auto;
}

.cca-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5rem;
}

.cca-footer-box {
   flex: 1 1 250px;
  min-width: 200px;
}

.footer-logo {
   max-width: 80px;
  margin-bottom: 2rem;
}

.cca-footer-box h4 {
   margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #ffffff;
}

.cca-footer-box ul {
  list-style: none;
  padding: 0;
}

.cca-footer-box ul li {
  margin-bottom: 0.5rem;
}

.cca-footer-box ul a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.cca-footer-box ul a:hover {
  color: #00b4d8;
   text-decoration: none;
}

.cca-footer-socials a {
   margin-right: 20px;
}

.cca-footer-socials img {
  width: 25px;
  height: px;
  filter: brightness(0) invert(1);
}


.cca-footer-socials img:hover {
  filter: brightness(0) invert(0.5);
}

.cca-footer-bottom {
   text-align: center;
  padding-top: 1rem;
  margin-top: 5rem;
  border-top: 1px solid #ffd500;
  font-size: 0.85rem;
}

/* Chatbot */
.chat-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #00b4d8;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 1000;
}

.chatbot {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 300px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

.chatbot.hidden {
  display: none;
}

.chatbot-header {
  background: #03045e;
  color: white;
  padding: 0.75rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-body {
  padding: 1rem;
  height: 200px;
  overflow-y: auto;
  background: #f9f9f9;
}

.chatbot-input {
  display: flex;
  border-top: 1px solid #ccc;
}

.chatbot-input input {
  flex: 1;
  padding: 0.75rem;
  border: none;
}

.chatbot-input button {
  background: #00b4d8;
  color: white;
  border: none;
  padding: 0 1rem;
  cursor: pointer;
}