* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f4f8fb;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

#container {
  background-color: #ffffff;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 999;
}

#mobnumber {
  background-color: #e9f0f7;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

#whtsappbutton-header {
  background-color: #25d366;
  color: white;
  padding: 8px 12px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

#whtsappbutton-header a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

#headerChatbot {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#headerChatbot button {
  background-color: #0d6efd;
  color: white;
  font-size: 28px;
  padding: 12px;
  border-radius: 50%;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#headerChatbot button:hover {
  background-color: #0046b3;
}

#callLink {
  text-decoration: none;
  color: #0d6efd;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease;
}

.highlight-number {
  font-size: 1.1rem;
  transition: color 0.3s;
}

.phone-icon {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

#callLink:hover .phone-icon {
  animation: heartbeat 1s infinite;
  transform: scale(1.2);
}

#callLink:hover .highlight-number {
  color: #dc3545;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}

#mobnumber button {
  background-color: #0d6efd;
  color: white;
  padding: 8px 16px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#mobnumber button:hover {
  background-color: #0046b3;
}

#mainheaderlink {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.headerlink {
  background-color: #0d6efd;
  padding: 10px 18px;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.headerlink:hover {
  background-color: #0b5ed7;
}
/* SERVIVESSS LIST DESIGN STAR ................................*/
.services-section {
  background-color: #f9f9f9;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2em;
  margin-bottom: 30px;
  font-weight: bold;
  color: #333;
}

.services-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-list li {
  font-size: 1.1em;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  animation: fadeInUp 0.6s ease;
  transition: background-color 0.3s;
  border-left: 5px solid #4CAF50;
  padding: 10px 15px;
  background: #fff;
  border-radius: 8px;
}

.services-list li:hover {
  background-color: #f1fdf4;
}

.icon {
  margin-right: 10px;
  color: #4CAF50;
  font-size: 1.3em;
  flex-shrink: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* SERVIVESSS LIST DESIGN STAR ................................*/

.main-content {
  padding: 60px 20px;
  text-align: center;
}

.main-content h1 {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 20px;
}

.main-content p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
}

#footer {
  background-color: #0d6efd;
  color: white;
  text-align: center;
  padding: 20px 10px;
  position: relative;
  bottom: 0;
  width: 100%;
}

#chatbot {
  margin: 20px auto;
  max-width: 400px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

#chat-area {
  min-height: 100px;
  margin-bottom: 10px;
}

#userInput {
  width: 80%;
  padding: 8px;
  margin-top: 10px;
}
   

/* mobile mode css .......................*/
/* Hamburger button hidden by default */
#hamburgerBtn {
  display: none;
  font-size: 28px;
  background-color: #0d6efd;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  position: absolute;
  top: 65px;
  right: 20px;
  z-index: 1001;
}

/* Hide menu on mobile initially */
/* Desktop View - default menu visible */
#mainheaderlink {
  display: flex;
  gap: 15px;
  padding: 10px;
}

#hamburgerBtn {
  display: none;
}

/* Mobile View */
@media (max-width: 768px) {
  #hamburgerBtn {
    display: block;
    font-size: 28px;
    background-color: #0d6efd;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    position: absolute;
    top: 65px;
    right: 20px;
    z-index: 1001;
  }

  #mainheaderlink {
    display: none;
    flex-direction: column;
    background-color: #0d6efd;
    position: absolute;
    top: 110px;
    right: 20px;
    width: 200px;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
  }

  #mainheaderlink.show {
    display: flex;
  }

  .headerlink {
    margin: 10px 0;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
  }
}

/* mobile modecss end............ */


/* aboutus page designe start................... */
.ceo-section {
  padding: 40px 20px;
  background: #f9f9f9;
}

.ceo-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.ceo-photo img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ceo-details {
  flex: 1;
  min-width: 280px;
}

.ceo-details h2 {
  margin: 0;
  font-size: 28px;
  color: #222;
}

.ceo-details h3 {
  margin: 10px 0;
  font-size: 20px;
  color: #666;
}

.ceo-details p {
  line-height: 1.6;
  color: #444;
}

/* Main container */
.about-section {
  padding: 60px 20px;
  background: #f9fafe;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.8;
}

/* Inner container for width control */
.about-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Headings */
.about-section h1 {
  font-size: 36px;
  color: #0d6efd;
  margin-bottom: 20px;
  font-weight: 700;
  border-bottom: 3px solid #0d6efd;
  display: inline-block;
  padding-bottom: 8px;
}

.about-section h2 {
  font-size: 28px;
  color: #002b5b;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Paragraphs */
.about-section p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

/* Unordered list */
.about-section ul {
  list-style: none;
  padding-left: 0;
}

.about-section ul li {
  font-size: 17px;
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px dashed #ccc;
  color: #222;
}

/* ✅ checkmark icon style */
.about-section ul li::before {
  content: "✅";
  position: absolute;
  left: 0;
  top: 10px;
  color: #198754;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-section h1 {
    font-size: 28px;
  }

  .about-section h2 {
    font-size: 22px;
  }

  .about-section p, 
  .about-section ul li {
    font-size: 16px;
  }
}
/* aboutus page desine is end .....................*/


/* servics page design start ...................*/
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Headings */
h1, h2 {
  color: #0d6efd;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.2em;
  margin-bottom: 10px;
  border-bottom: 2px solid #0d6efd;
  padding-bottom: 10px;
}

h2 {
  font-size: 1.6em;
  margin-top: 30px;
}

/* Paragraphs */
p {
  margin-bottom: 20px;
  color: #444;
}

/* Lists */
ul {
  list-style-type: none;
  margin-bottom: 30px;
  padding-left: 0;
}

ul li {
  background: #eef4ff;
  border-left: 4px solid #0d6efd;
  margin-bottom: 10px;
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}

ul li:hover {
  background: #dceaff;
}

/* Links */
a {
  color: #0d6efd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  color: #0a58ca;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    padding: 10px;
  }

  .container {
    padding: 15px;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.4em;
  }

  ul li {
    padding: 10px 14px;
  }
}
/* services page design is end .....................*/


/* contactus page start...................... */
    .contact-section {
  padding: 60px 20px;
  background-color: #f5f8ff;
  font-family: "Segoe UI", sans-serif;
  color: #222;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
}

.contact-section h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #1a73e8;
}

.sub-heading {
  font-size: 18px;
  margin-bottom: 40px;
  color: #444;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h3 {
  color: #1a73e8;
  margin-top: 20px;
}

.contact-info p, .contact-info a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.contact-form h3 {
  margin-bottom: 20px;
  color: #1a73e8;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background: #fdfdfd;
}

.submit-btn {
  background-color: #1a73e8;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: #0d5ace;
}

#formStatus {
  margin-top: 15px;
  font-weight: bold;
  color: green;
}

@media screen and (max-width: 768px) {
  .contact-details {
    flex-direction: column;
  }

  .contact-form {
    margin-top: 30px;
  }

  .contact-section h1 {
    font-size: 26px;
  }
}

/* contactus page end */




/* training page code start............................. */
.training-section {
  padding: 60px 20px;
  background-color: #f9f9fc;
  color: #222;
  font-family: "Segoe UI", sans-serif;
}

.training-section .container {
  max-width: 1100px;
  margin: auto;
}

.training-section h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.training-section .intro {
  font-size: 18px;
  margin-bottom: 25px;
  color: #444;
}

.training-section p {
  line-height: 1.7;
  font-size: 16px;
}

.training-section ul {
  list-style: none;
  padding-left: 0;
}

.training-section ul li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
}

.training-section ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

.training-programs .program {
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border-left: 5px solid #1a73e8;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.training-programs h4 {
  margin-bottom: 10px;
  color: #1a73e8;
}

.highlight-box,
.cta-box {
  background-color: #e8f0fe;
  padding: 25px;
  margin: 40px 0;
  border-left: 6px solid #1a73e8;
  border-radius: 8px;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.who-should-attend,
.delivery-options {
  margin-top: 40px;
}

.cta-box h3 {
  color: #0b5ed7;
}

@media screen and (max-width: 768px) {
  .training-section h1 {
    font-size: 26px;
  }
}
/* training page code end...................................... */



