 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary: #1a365d;
     --secondary: #2d5f9e;
     --accent: #D4AF37;
     --light: #f8f9fa;
     --dark: #212529;
     --gray: #6c757d;
     --light-gray: #e9ecef;
     --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
     --border-radius: 8px;
     --transition: all 0.3s ease;
 }

 body {
     font-family: 'Inter', sans-serif;
     line-height: 1.6;
     color: var(--dark);
     background-color: var(--light);
     overflow-x: hidden;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Poppins', sans-serif;
     font-weight: 600;
     line-height: 1.3;
     margin-bottom: 1rem;
 }

 p {
     margin-bottom: 1.2rem;
 }

 a {
     text-decoration: none;
     color: var(--secondary);
     transition: var(--transition);
 }

 a:hover {
     color: var(--accent);
 }

 .container {
     width: 100%;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 section {
     padding: 80px 0;
 }

 .section-title {
     text-align: center;
     margin-bottom: 50px;
 }

 .section-title h2 {
     font-size: 2.5rem;
     color: var(--primary);
     position: relative;
     display: inline-block;
 }

 .section-title h2::after {
     content: '';
     position: absolute;
     width: 70px;
     height: 4px;
     background-color: var(--accent);
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
 }

 .btn {
     display: inline-block;
     background-color: var(--secondary);
     color: white;
     padding: 12px 30px;
     border-radius: var(--border-radius);
     font-weight: 600;
     border: none;
     cursor: pointer;
     transition: var(--transition);
 }

 .btn:hover {
     background-color: var(--primary);
     color: white;
     transform: translateY(-3px);
     box-shadow: var(--shadow);
 }

 .btn-accent {
     display: inline-block;
     padding: 14px 28px;
     font-family: Arial, Helvetica, sans-serif;
     font-size: 18px;
     font-weight: 700;
     color: #000;
     background: linear-gradient(90deg, #f6d365 0%, #e6b35c 100%);
     border: none;
     border-radius: 12px;
     cursor: pointer;
     text-decoration: none;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
     transition: all 0.25s ease;
 }

 .btn-accent:hover {
     background-color: #c1121f;
 }

 /* Header & Navigation */
 header {
     background-color: white;
     box-shadow: var(--shadow);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .nav-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px 20px;
 }

 .logo {
     width: 100px;
     position: relative;
 }

 .logo img {
     width: 100%;
     height: auto;
     z-index: 999;
 }

 

 .nav-links {
     display: flex;
     list-style: none;
     gap: 30px;
 }

 .nav-links a {
     color: var(--dark);
     font-weight: 700;
     font-size: 16px;
 }

 .nav-links a:hover {
     color: var(--secondary);
 }

 .mobile-menu-btn {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--primary);
 }

 /* Hero Section */
 .hero {
     background: linear-gradient(135deg, rgba(26, 54, 93, 0.05) 0%, rgba(45, 95, 158, 0.05) 100%);
     padding: 100px 0;
     text-align: center;
 }

 .hero h1 {
     font-size: 3.5rem;
     color: var(--primary);
     margin-bottom: 20px;
 }

 .hero h2 {
     font-size: 2rem;
     color: var(--dark);
     margin-bottom: 30px;
     font-weight: 600;
 }

 .hero p {
     font-size: 1.2rem;
     max-width: 800px;
     margin: 0 auto 40px;
     color: var(--gray);
 }

 /* About Section */
 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 50px;
     align-items: center;
 }

 .about-text h3 {
     font-size: 2rem;
     color: var(--primary);
     margin-bottom: 20px;
 }

 .about-text ul {
     list-style: none;
     margin-top: 20px;
 }

 .about-text li {
     padding: 10px 0;
     padding-left: 30px;
     position: relative;
 }

 .about-text li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: var(--accent);
     font-weight: bold;
 }

 .placeholder-img {

     height: 400px;
     /* keep your layout */
     border-radius: var(--border-radius);

     display: flex;

 }

 .placeholder-img img {
     max-width: 100%;
     max-height: 100%;
     object-fit: contain;
     /* 🔑 shows full image */
     display: block;
 }




 /* Divisions Section */
 .divisions {
     background-color: #D4AF37;
 }

 .divisions-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
     gap: 30px;
 }

 .division-card {
     background-color: white;
     border-radius: var(--border-radius);
     padding: 30px;
     box-shadow: var(--shadow);
     transition: var(--transition);
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .division-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
 }

 .division-icon {
     font-size: 2.5rem;
     background: linear-gradient(90deg, #f6d365 0%, #e6b35c 100%);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     color: transparent;


     margin-bottom: 20px;
 }

 .division-card h3 {
     color: var(--primary);
     font-size: 1.5rem;
     margin-bottom: 15px;
 }

 .division-card .btn {
     margin-top: auto;
     align-self: flex-start;
 }


 /* Image Styles for Divisions Section */

 /* General image styles */
 .division-card img {
     width: 100%;
     height: auto;
     display: block;
     border-radius: var(--border-radius);
     object-fit: cover;
     transition: var(--transition);
 }

 /* Data & Social Media Booster image */
 .division-card:first-child .placeholder-img {
     padding: 0;
     background: none;
     box-shadow: none;
 }

 .division-card:first-child .placeholder-img i {
     display: none;
 }

 .division-card:first-child .placeholder-img p {
     display: none;
 }

 .division-card:first-child .placeholder-img img {
     height: 150px;
     object-fit: cover;
 }

 /* EMAPOK Shop image */
 .division-card:nth-child(2) .placeholder-img {
     padding: 0;
     background: none;
     box-shadow: none;
     position: relative;
 }

 .division-card:nth-child(2) .placeholder-img i {
     display: none;
 }

 .division-card:nth-child(2) .placeholder-img p {
     display: none;
 }

 .division-card:nth-child(2) .placeholder-img img {
     height: 150px;
     object-fit: cover;
 }

 /* EMAPOK Technology image */
 .division-card:nth-child(3) .placeholder-img {
     padding: 0;
     background: none;
     box-shadow: none;
 }

 .division-card:nth-child(3) .placeholder-img i {
     display: none;
 }

 .division-card:nth-child(3) .placeholder-img p {
     display: none;
 }

 .division-card:nth-child(3) .placeholder-img img {
     height: 150px;
     object-fit: cover;
 }

 /* Educational & Skill Acquisition image */
 .division-card:nth-child(4) .placeholder-img {
     padding: 0;
     background: none;
     box-shadow: none;
 }

 .division-card:nth-child(4) .placeholder-img i {
     display: none;
 }

 .division-card:nth-child(4) .placeholder-img p {
     display: none;
 }

 .division-card:nth-child(4) .placeholder-img img {
     height: 150px;
     object-fit: cover;
 }

 /* Hover effects for division card images */
 .division-card:hover img {
     transform: scale(1.02);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 /* Remove the special styling from the first division card's Present Your Products section */
 .division-card:first-child div[style*="background-color: var(--light-gray)"] {
     padding: 0;
     background: none !important;
     border-radius: var(--border-radius);
     overflow: hidden;
 }

 .division-card:first-child div[style*="background-color: var(--light-gray)"] h4 {
     position: absolute;
     top: 15px;
     left: 15px;
     background-color: rgba(255, 255, 255, 0.9);
     padding: 8px 15px;
     border-radius: calc(var(--border-radius) / 2);
     z-index: 2;
     margin: 0;
 }

 .division-card:first-child div[style*="background-color: var(--light-gray)"] img {
     height: 150px;
     width: 100%;
     object-fit: cover;
     position: relative;
 }

 /* Responsive adjustments for images */
 @media (max-width: 768px) {
     .division-card:first-child div[style*="background-color: var(--light-gray)"] h4 {
         font-size: 1rem;
         padding: 6px 12px;
     }

     .division-card img,
     .division-card:first-child .placeholder-img img,
     .division-card:nth-child(2) .placeholder-img img,
     .division-card:nth-child(3) .placeholder-img img,
     .division-card:nth-child(4) .placeholder-img img,
     .division-card:first-child div[style*="background-color: var(--light-gray)"] img {
         height: 130px;
     }
 }

 @media (max-width: 576px) {
     .division-card:first-child div[style*="background-color: var(--light-gray)"] h4 {
         font-size: 0.9rem;
         padding: 5px 10px;
     }

     .division-card img,
     .division-card:first-child .placeholder-img img,
     .division-card:nth-child(2) .placeholder-img img,
     .division-card:nth-child(3) .placeholder-img img,
     .division-card:nth-child(4) .placeholder-img img,
     .division-card:first-child div[style*="background-color: var(--light-gray)"] img {
         height: 120px;
     }
 }

 /* Stats Section */
 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     text-align: center;
 }

 .stat-item h3 {
     font-size: 3rem;
     margin-bottom: 10px;

     background: linear-gradient(90deg, #f6d365 0%, #e6b35c 100%);
     -webkit-background-clip: text;
     background-clip: text;
     -webkit-text-fill-color: transparent;
     color: transparent;
 }


 .stat-item p {
     color: #fff;
     font-weight: 600;
 }

 /* CTA Section */
 .cta {
     background-color: #fff;

     text-align: center;
 }

 .cta h2 {
     color: var(--dark);
     font-size: 2.5rem;
     margin-bottom: 20px;
 }

 .cta p {
     max-width: 800px;
     margin: 0 auto 30px;
     font-size: 1.1rem;
     opacity: 0.9;
 }

 .cta-buttons {
     display: flex;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
 }

 .cta .btn {
     background: linear-gradient(90deg, #f6d365 0%, #e6b35c 100%);
     color: var(--primary);
 }


 .cta .btn:hover {
     background-color: var(--accent);
     color: white;
 }

 /* Footer */
 footer {
     background-color: var(--primary);
     color: white;
     padding: 60px 0 30px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
 }

 .footer-column h3 {
     color: white;
     font-size: 1.3rem;
     margin-bottom: 25px;
     position: relative;
     padding-bottom: 10px;
 }

 .footer-column h3::after {
     content: '';
     position: absolute;
     width: 40px;
     height: 3px;
     background-color: var(--accent);
     bottom: 0;
     left: 0;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 12px;
 }

 .footer-links a {
     color: rgba(255, 255, 255, 0.8);
 }

 .footer-links a:hover {
     color: white;
     padding-left: 5px;
 }

 .social-icons {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-icons a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: white;
     font-size: 1.1rem;
     transition: var(--transition);
 }

 .social-icons a:hover {
     background-color: var(--accent);
     transform: translateY(-3px);
 }

 .copyright {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     color: #fff;
     font-size: 0.9rem;
 }

 /* Responsive Styles */
 @media (max-width: 992px) {
     .hero h1 {
         font-size: 2.8rem;
     }

     .hero h2 {
         font-size: 1.8rem;
     }

     .about-content {
         grid-template-columns: 1fr;
     }

     .placeholder-img {
         height: 300px;
     }
 }

 @media (max-width: 768px) {
     .nav-links {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         width: 100%;
         background-color: white;
         flex-direction: column;
         padding: 20px;
         box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
     }

     .nav-links.active {
         display: flex;
     }

     .mobile-menu-btn {
         display: block;
     }

     .hero h1 {
         font-size: 2.3rem;
     }

     .hero h2 {
         font-size: 1.6rem;
     }

     .section-title h2 {
         font-size: 2rem;
     }

     .cta h2 {
         font-size: 2rem;
     }

     .cta-buttons {
         flex-direction: column;
         align-items: center;
     }
 }

 @media (max-width: 576px) {
     section {
         padding: 60px 0;
     }

     .hero {
         padding: 80px 0;
     }

     .hero h1 {
         font-size: 2rem;
     }

     .hero h2 {
         font-size: 1.4rem;
     }

     .division-card {
         padding: 20px;
     }

     .logo {
     width: 55px;
     position: relative;
 }

 .logo img {
     width: 100%;
     height: auto;
     z-index: 999;
 }

 }

 .core-values-section {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     max-width: 1400px;
     margin: 0 auto;
     padding: 60px 40px;
     align-items: center;
 }

 .values-container {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .value-card {
     background-color: #fff;
     border: 2px solid #d4b896;
     border-radius: 12px;
     padding: 30px;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .value-card:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .value-card h3 {
     font-size: 28px;
     font-weight: 600;
     margin-bottom: 12px;
     color: #1a1a1a;
 }

 .value-card p {
     font-size: 18px;
     color: #4a4a4a;
     line-height: 1.5;
 }

 .image-container {
     width: 100%;
     height: 100%;
     min-height: 500px;
 }

 .image-container img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 12px;
 }

 @media (max-width: 968px) {
     .core-values-section {
         grid-template-columns: 1fr;
         gap: 30px;
         padding: 40px 20px;
     }

     .image-container {
         min-height: 400px;
         order: -1;
     }

     .value-card {
         padding: 24px;
     }

     .value-card h3 {
         font-size: 24px;
     }

     .value-card p {
         font-size: 16px;
     }
 }

 @media (max-width: 480px) {
     .core-values-section {
         padding: 30px 16px;
     }

     .image-container {
         min-height: 300px;
     }

     .value-card {
         padding: 20px;
     }

     .value-card h3 {
         font-size: 22px;
     }
 }

 /* --- Alternative Theme (Sea Blue & Orange) --- */
 .theme-alt {
     --primary: #0077be;
     --secondary: #0084cc;
     --accent: #ff8c00;
     --light: #ffffff;
     --light-gray: #f8f9fa;
 }

 .theme-alt .divisions {
     background-color: var(--primary);
 }

 .theme-alt .division-icon {
     background: linear-gradient(90deg, #ff8c00 0%, #ffae42 100%);
     -webkit-background-clip: text;
     background-clip: text;
 }

 .theme-alt .btn-accent {
     background: linear-gradient(90deg, #ff8c00 0%, #ffae42 100%);
     color: white;
 }

 .theme-alt .stat-item h3 {
     background: linear-gradient(90deg, #ff8c00 0%, #ffae42 100%);
     -webkit-background-clip: text;
     background-clip: text;
 }

 .theme-alt .cta .btn {
     background: linear-gradient(90deg, #ff8c00 0%, #ffae42 100%);
     color: white;
 }

 .theme-alt .value-card {
     border-color: var(--primary);
 }