{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* Header */
/* Header Styling */
/* Header Base */
.header {
  background-color:  #F2F3F4;
  color: white;
  padding: 10px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Flex Layout */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Logo Area */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 200px;
  height: 200px;
  margin-right: 25px;
}
.logo-text h1 {
    color: #370403;
  font-size: 2.5rem;
  margin: 0;
}
.tagline {
  font-size: 1.5rem;
  color: #370403;
  margin: 5px 0 0 0;
}

/* Nav Styling */
nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav ul li {
  margin-left: 25px;
}
nav a {
  text-decoration: none;
  color: #370403;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #B8860B;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo img {
    width: 250px;
    height: 250px;
    margin: 0 auto 10px auto;
  }

  .logo-text h1 {
    font-size: 1.5rem;
    white-space: nowrap;         /* Prevents line break */
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
  }

  .tagline {
    font-size: 1.3rem;
    white-space: nowrap;         /* Prevents line break */
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 5px 0 0 0;
  }

  nav {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    padding: 0;
    margin: 0;
    align-items: center;
  }

  nav ul li {
    margin: 0;
    width: 100%;
    max-width: 260px;
  }

  nav a {
    display: block;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #1f2f40;
    border-radius: 6px;
    background: white;
    color: #1f2f40;
    font-weight: bold;
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  nav a:hover {
    background-color: #370403;
    color: white;
    border-color: #370403;
  }
}



/* hero hero */
/* hero */

.hero {
  background-color: #370403;
  height: 100vh; /* Full screen height */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-flex {
  width: 100%;
  height: 80%; /* 👈 80% of the hero section */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.hero-text {
  color: #fff9db; /* soft yellowish white */
  flex: 1;
}

.hero h2 {
  color: #fffae5; /* warm creamy yellow */
  margin-bottom: 10px;
}


/* Section Headings */
section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 1.8rem;
}
section p, blockquote {
  margin-bottom: 15px;
}
.center-button {
  text-align: center;
}


@media (max-width: 768px) {
  .hero {
    height: auto;             /* Allow height to adjust */
    padding: 20px;
    flex-direction: column;   /* stack content vertically */
    align-items: center;      /* center horizontally */
  }

  .hero-flex {
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;      /* center children horizontally */
    width: 100%;
    max-width: 400px;         /* limit max width on mobile */
  }

  .hero img {
    width: 100%;              /* fill container width */
    height: auto;             /* maintain aspect ratio */
    object-fit: contain;      /* contain to avoid cropping */
    border-radius: 12px;
    display: block;
    margin: 0 auto;           /* center image horizontally */
  }
}


/* Hero */







/* Global Icons Section */


/* Global Icons Section */
.global-opinion {
  background-color: #b4b0a5;
  padding: 40px 0;
}

.global-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.global-cards .card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  transition: transform 0.3s ease;
}

.global-cards .card:hover {
  transform: translateY(-10px) scale(1.05);
}

.global-cards .card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #005f99;
}

.global-cards .card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #333;
}

.global-cards .card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* Button */
.btn {
  text-align: center;
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #370403;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #370403;
}

/* Hidden Class */
.hidden {
  display: none;
}

/* Contact Section */
.contact-info .container {
  text-align: center;
}

/* colabrations */
/* Collaborations Section */
/* Collaborations Section */
/* Collaborations Section */
.collaborations {
  padding: 40px 0;
  background: #f9f9f9;
}

.collaboration-cards {
  display: flex;
  justify-content: space-between; /* Distribute the cards equally */
  gap: 20px;  /* Add gap between cards */
  padding: 20px 0;
}

.collaboration-card {
  flex: 1; /* Each card will take an equal share of the available space */
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  min-height: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.collaboration-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.collaboration-logo {
  width: 100px;
  height: auto;
  margin-bottom: 15px;
}

.collaboration-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.collaboration-card p {
  font-size: 15px;
  line-height: 1.5;
}

.collaboration-card .btn {
  background-color: #370403;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.collaboration-card .btn:hover {
  background-color: #370403;
}

/* Responsive adjustment for medium and small screens */
@media (max-width: 768px) {
  .collaboration-cards {
    flex-direction: column; /* Stack cards vertically */
    gap: 20px;              /* Space between cards */
  }

  .collaboration-card {
    flex: none;             /* Disable flex-grow/shrink */
    width: 100%;            /* Full width */
  }
}



/* Center button styles (for More button if you add more) */
.center-button {
  text-align: center;
  margin-top: 20px;
}

.center-button .btn {
  background-color: #370403;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.center-button .btn:hover {
  background-color: #370403;
}


.collaboration-card:hover {
  transform: translateY(-10px) scale(1.05);  /* Slight zoom and move up */
}


/* footer  */
/*  */
/*  */
/* Footer */

.footer {
  background: #370403;
  color: #eee;
  padding: 50px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 960px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left Section */
.footer-left {
  flex: 1 1 280px;
  line-height: 1.6;
}

.footer-left h3 {
  margin-bottom: 8px;
  color: #fff;
}

.footer-left a {
  color: #fff;
  text-decoration: underline;
}

.footer-left p,
.footer-left address {
  margin: 4px 0 15px;
}

/* Right Section */
.footer-right {
  flex: 0 1 200px;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap; 
}

.social-links {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.social-links li {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s ease;
}

.social-links li:hover {
  transform: scale(1.1);
  background-color: #ddd;
}

.social-links img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures full fill */
}



/* Footer bottom */
.footer-right .copyright {
  font-size: 16px;
  color: #bbb;
  font-weight: 600;
  margin-top: auto;
  white-space: nowrap;  
}

/* fotter */
/* fotter */





/* expert*/
/* .expert-writeups {
  padding: 40px 0;
  background: #f9f9f9;
}

.writeup-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.writeup-card {
  flex: 0 0 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  min-height: 180px;
}
.writeup-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.writeup-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}
.writeup-card p {
  font-size: 15px;
  line-height: 1.5;
} */





.testimonial-section {
  padding: 40px 0;
  background-color: #eef3f8;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
}

.testimonial-card {
  flex: 0 0 300px;
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  min-height: 160px;
  font-style: italic;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}
.testimonial-card h4 {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
  color: #444;
}

/*  */
/*  */
/* Wrapper section */

.softskill-block {
  background: linear-gradient(to bottom right, #f0f9ff, #e6f7ff);
  padding: 60px 30px;
  color: #2c3e50;
}

/* Flex container to place left and right side-by-side */
.softskill-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch; /* Important for equal height */
  
}
.softskill-container > h2 {
  width: 100%;
  text-align: center;
  font-size: 28px; /* optional - you can adjust size */
  margin-bottom: 30px; /* optional spacing */
}


.softskill-left, .softskill-right {
  flex: 1 1 48%;
  display: flex;
}

.softskill-combined,
.softskill-quote-box {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  width: 100%;
  transition: transform 0.3s, box-shadow 0.3s;

}
.softskill-combined:hover,
.softskill-quote-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}



/* Quote icon styling */
.softskill-quote-icon {
   font-size: 40px;
  color: #3498db;
  text-align: center;
  margin-bottom: 10px;
  
}

/* Blockquote styling */
.softskill-quote-box blockquote {
  font-style: italic;
  margin: 10px 0;
  text-align: center;
}

.softskill-quote-box footer {
  margin-top: 10px;
  font-size: 14px;
  color: #888;
  
}
.softskill-footer-image {
  display: block;
  margin-top: 0px;
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* optional */
}

/* Target only the list inside the specific section with the class 'centered-list' */
.centered-list {
  list-style-type: none; /* Removes the bullet points */
  margin: 20px auto; /* Centers the list */
  padding-left: 0; /* Removes padding */
  max-width: 80%;
  text-align: center; /* Ensures the text is centered */
}

.centered-list li {
  margin-left: 0; /* Removes extra margin between the bullet and the text */
  padding-left: 0; /* Removes padding */
}


/* 

*/

/* global-seenario */
.global-scenario {
  background: linear-gradient(to right, #f9fbff, #eef3f8);
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #34495e;
}

/* Container box styling */
.global-scenario .container {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Fix hover effect - only .container should respond */
.global-scenario .container:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.global-scenario h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}

.global-scenario p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #2c3e50;
}

/* Enhanced blockquote style */
.global-scenario blockquote {
  font-style: italic;
  border-left: 4px solid #f4f4f4;
  padding: 16px 20px;
  margin: 20px 0;
  background: #f1f7fc;
  border-radius: 8px;
  color: #2d3436;
}

/* Attribution text inside blockquote */
.global-scenario blockquote span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #7f8c8d;
  font-style: normal;
}

/* global-seenario */
/*  */
/*  */
.team-challenges {
  background: #f4f4f4;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.challenge-box {
  background: #ffffff;
  color: #333333;
  border-radius: 12px;
  max-width: 1800px; /* Increased width even more */
  padding: 60px; /* Adjust padding to keep balance */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.challenge-box h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  color: #370403;
}

.challenge-box ul {
  padding-left: 20px;
  list-style-type: disc;
}

.challenge-box ul li {
  font-size: 20px;
  padding: 12px 0;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .challenge-box {
    padding: 40px;
  }

  .challenge-box h2 {
    font-size: 28px;
  }

  .challenge-box ul li {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .challenge-box {
    padding: 25px;
  }

  .challenge-box h2 {
    font-size: 24px;
  }

  .challenge-box ul li {
    font-size: 16px;
  }
}



/* Shared Styles  about , contac*/
/* ABOUT PROSKILL ACADEMY */
.about-proskill {
  background-color: #f0f8ff;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #34495e;
}

.about-proskill .container {
  max-width: 960px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional: Add hover lift effect */
.about-proskill .container:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.about-proskill h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #2c3e50;
  text-align: center;
}

.about-proskill p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #2c3e50;
}

/*  */
/* programs training */


.program-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.program-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.program-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.program-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.program-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  transition: transform 0.3s ease;
  min-width: 280px;
}

.program-card:hover {
  transform: translateY(-8px);
}

.program-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.program-card li {
  margin-bottom: 15px;
}

.program-card li strong {
  color: #111;
  display: block;
}

.program-card li small {
  color: #555;
}
.card-header-box {
  background-color: #e6f2ff;
  color: #004080;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}


/* Responsive */
@media (max-width: 768px) {
  .program-card {
    flex: 1 1 100%;
    max-width: 90%;
  }
}




/* university programs */
.c2c-section {
  background: #ffffff;
  padding: 60px 20px;
}

.c2c-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.c2c-section h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #333;
}

.c2c-description {
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555;
}

.c2c-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.c2c-card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  flex: 1 1 45%;
  min-width: 300px;
  max-width: 500px;
  text-align: left;
  transition: transform 0.3s ease;
}

.c2c-card:hover {
  transform: translateY(-6px);
}

.c2c-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.c2c-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
.c2c-card p1 {
  font-size: 1.5rem;
  color: #444;
  line-height: 1.6;
}
.r2r-logo {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 4px; /* Optional: if you want rounded look */
}

.c2c-image {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  object-fit: cover;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .c2c-card {
    flex: 1 1 100%;
  }
  .c2c-grid {
    flex-direction: column;
  }
   .c2c-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .c2c-card:nth-child(1) { order: 1; } /* Text */
  .c2c-card:nth-child(2) { order: 2; } /* Image */
  .c2c-card:nth-child(4) { order: 3; } /* Text */
  .c2c-card:nth-child(3) { order: 4; }
}
/*  */







