:root {
    --primary-color: #1a5276;
    --secondary-color: #e74c3c;
    --accent-color: #f39c12;
    --light-color: #f5f5f5;
    --dark-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark-color);
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: white;
    padding: 1rem 0;
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 80px;
    margin-right: 15px;
}

.logo-text h1 {
    margin: 0;
    font-size: 1.8rem;
}

.logo-text p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #fff; /* optional, for contrast */
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-container img {
    height: 80px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.2);
}

.logo-text h1 {
    margin: 0;
    font-size: 24px;
    color: #1a1a1a;
}

.logo-text p {
    margin: 4px 0 0;
    color: #555;
    font-size: 14px;
}




nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hero {
    background: url('images/corper.jpg') no-repeat center center/cover;
    height: 75vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary-color);
}

.section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.section-title h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.servicom-global {
    margin-top: 2rem;
    padding: 20px;
    background: linear-gradient(to right, #f0f4f8, #fff);
    border-left: 6px solid #4CAF50;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    animation: fadeInUp 1s ease-in-out;
  }
  
  .servicom-global h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #2a7a4d;
    font-weight: 600;
  }
  
  .servicom-global p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #333;
  }
  
  /* Fade In Animation */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  



  .gallery-button-container {
  text-align: center;
  margin-top: 30px;
}

.view-gallery-button {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background: linear-gradient(135deg, #4CAF50, #2e7d32);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease forwards;
}

.view-gallery-button:hover {
  background: linear-gradient(135deg, #388E3C, #1b5e20);
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(56, 142, 60, 0.5);
}

.view-gallery-button i {
  margin-left: 8px;
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background-color: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light-color);
}

.team-member h3 {
    margin: 10px 0 5px;
    color: var(--primary-color);
}

.team-member p {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.event-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-content {
    padding: 20px;
}

.event-date {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.event-content h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}






.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 80px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-social {
    margin-bottom: 30px;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.social-icons-fixed {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  font-size: 22px;
  color: #000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.35s ease;
  text-decoration: none;
  animation: pop-in 0.8s ease forwards;
}

.social-icon:hover {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Custom Colors */
.instagram {
  background: radial-gradient(circle at 30% 107%, #feda75, #d62976, #962fbf, #4f5bd5);
  color: #fff;
}

.tiktok {
  background: #000;
  color: #fff;
}

.whatsapp {
  background: #25D366;
  color: #fff;
}

.email {
  background: #dd4b39;
  color: #fff;
}

/* Pop Animation */
@keyframes pop-in {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}








.event-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
}

.event-flyer {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

.event-content {
  padding: 20px;
}

.event-gallery {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.event-gallery img {
  width: 30%;
  border-radius: 8px;
  object-fit: cover;
}






#fullscreenOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
}

#fullscreenImage {
  max-width: 90vw;
  max-height: 90vh;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  cursor: default;
}








/* Popup Modal Styling */
.cds-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0%;
  width: 100%;
  height: 100vh;
  overflow: auto;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: rgba(0,0,0,0.6);
}

.cds-modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border-radius: 12px;
  width: 70%;
  align-self: center;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-align: center;
}

.cds-close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.cds-close-btn:hover {
  color: #000;
}




.copyright {
  text-align: center;
  /* padding: 20px 10px; */
  font-size: 0.95rem;
  color: #f1f1f1;
  border-top: 1px solid #ddd;
  margin-top: 40px;
}

.copyright a {
  color: #9079de;
  /* text-decoration: none; */
  font-weight: bolder;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #1b5e20;
  text-decoration: underline;
}


@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        display: block;
        margin-bottom: 15px;
        justify-content: center;

    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        flex-direction: column;
        padding: 0;
        display: none;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
    
    .btn-outline {
        margin-left: auto;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
}








