* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2A2A2A;
    --accent-color: #00652b;
    --text-light: #FFFFFF;
    --text-dark: #1A1A1A;
    --transition: all 0.3s ease-in-out;
}

/* Hero Section Styles */
.hero-section{
    position: relative;
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

/* Desktop Background */
@media (min-width: 1024px) {
    .hero-section {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.5)
        ),
        url('/images/lensdesktop.svg');
    }
}

/* Mobile Background */
@media (max-width: 1023px) {
    .hero-section {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.6)
        ),
        url('/images/lensmobile.svg');
    }
}

/* Navbar Styles */
.navbar {
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: #fff;
    color: #1A1A1A;
}

.navbar.scrolled {
    padding: 1rem 5%;
    backdrop-filter: blur(10px);
}
.navbar.scrolled a{
    color: #1a1a1a;
}
.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: #049a2b;
}
@media screen and (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1100;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background-color: grey;
        border-radius: 10px;
        margin: 3px 0;
        transition: 0.4s;
    }
    .menu-toggle.scrolled{
        background-color: black;
    }
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -5px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 60px 0;
        height: 100vh;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        color: #1a1a1a;
        font-size: 1.5rem;
        margin: 20px 0;
    }

    .menu-toggle {
        display: flex;
    }
}
/* Hero Content Styles */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    margin-top: 4rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    color: var(--text-light);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:first-child {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.btn:first-child:hover {
    background-color: #00652b;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-2px);
}



@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
.about-section {
    padding: 100px 5%;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2A2A2A;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    padding-right: 20px;
}

.about-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #2A2A2A;
    margin-bottom: 20px;
}

.about-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.highlight-text {
    color: #049a2b;
    font-weight: 600;
}
.abt-btn{
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #04632b;
    color: #fff;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        padding-right: 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }
}

.core-values {
    padding: 80px 5%;
    background-color: #f8f9fa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #049a2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    color: #2A2A2A;
}

/* Partners Section - Fixed Version */
        .partners-section {
            padding: 60px 0;
            background: white;
            overflow: hidden;
            width: 100%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 5%;
        }

        .section-title {
            font-size: 2.5rem;
            color: #333;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        /* Container for the infinite scroll */
        .logo-slider-container {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .logo-slider {
            display: inline-flex;
            animation: infiniteScroll 20s linear infinite;
        }

        .logo-slider:hover {
            animation-play-state: paused;
        }

        .partner-logo {
            flex: 0 0 auto;
            min-width: 200px;
            height: 80px;
            margin: 0 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(100%);
            transition: filter 0.3s ease, transform 0.3s ease;
        }

        .partner-logo:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            display: block;
        }

        /* Keyframes for smooth infinite scroll */
        @keyframes infiniteScroll {
            0% { 
                transform: translateX(0); 
            }
            100% { 
                transform: translateX(-100%); 
            }
        }

        /* Tablet styles */
        @media screen and (max-width: 768px) {
            .partners-section {
                padding: 40px 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .partner-logo {
                min-width: 150px;
                height: 60px;
                margin: 0 25px;
            }
            
            .logo-slider {
                animation-duration: 15s;
            }
        }

        /* Mobile styles */
        @media screen and (max-width: 480px) {
            .partners-section {
                padding: 30px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 0.5rem;
            }
            
            .partner-logo {
                min-width: 120px;
                height: 50px;
                margin: 0 20px;
            }
            
            .logo-slider {
                animation-duration: 12s;
            }
        }

        /* Extra small screens */
        @media screen and (max-width: 320px) {
            .partner-logo {
                min-width: 100px;
                height: 45px;
                margin: 0 15px;
            }
        }

        /* Ensure images load properly */
        .partner-logo img {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
        }

        /* Fallback for older browsers */
        @supports not (animation: infiniteScroll) {
            .logo-slider {
                overflow-x: auto;
                animation: none;
            }
        }

.services-section {
    padding: 100px 5%;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 500px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.service-image {
    height: 300px;
    min-width: 500px;
    
    overflow: hidden;
}

.service-image img {
width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.s-contents {
    padding: 25px;
}

.s-contents h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #2A2A2A;
    margin-bottom: 15px;
    text-align: left;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #049a2b;
}
.section-titlee::after {
  content: '';
  position: absolute;
  bottom: 0.25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #049a2b;
}

.s-contents p {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.75rem;
}

.service-link {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #049a2b;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
}

.service-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #049a2b;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #ccc;
}

.social-icon:hover {
    background: #049a2b;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.map-container {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}


.showcase-section {
    padding: 100px 5%;
    background: #fff;
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    margin-top: 50px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.showcase-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px;
    color: white;
    opacity: 0.5;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
    transform: translateY(0);
}
/*giz conference*/
.sticky-video{
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 2em 0;    
}
.sticky-video video{
  margin-bottom: 20px ;
}
/* CTA Section */
.cta-section {
    padding: 120px 5%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('images/event.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: #049a2b;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #00652b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 250px);
    }
    
    .showcase-item:nth-child(1) {
        grid-column: 1;
        grid-row: span 1;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Hero Section */
.services-hero {
  background: url('images/service.svg') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  background-blend-mode: overlay;
  background-color: #00652b; /* Green Overlay */
}

.services-hero h1 {
  font-size: 2.5em;
  font-weight: bold;
}

.services-hero p {
  font-size: 1.2em;
  opacity: 0.9;
}

/* Services Section */
.sectionpage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}

.service {
  background: #fff;
  margin: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  flex: 1 1 calc(33% - 40px);
  box-sizing: border-box;
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 5px solid #04632b; /* Green Border */
}

.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.service-content {
  padding: 20px;
}

.service h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.service-details ul {
  list-style-type: disc;
  margin-left: 20px;
}

/* Call-to-Action Button */
.ctabutton {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  margin-top: 15px;
  border: 2px solid #2E8B57; /* Green */
  border-radius: 50px;
  background: transparent;
  color: #2E8B57;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s, transform 0.2s;
  font-size: 1em;
}

.ctabutton:hover {
  background: #2E8B57;
  color: #fff;
  transform: translateY(-2px);
}

/* Arrow Animation */
.ctabutton .arrow {
  border: solid currentColor;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 6px;
  margin-left: 10px;
  transition: transform 0.3s ease-in-out;
}

.ctabutton:hover .arrow {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Arrow Directions */
.arrow.right {
  transform: rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
  .sectionpage {
      flex-direction: column;
  }
 
}

/*about us*/
.about-us {
    background-color: #121212;
    color: #ffffff;
}

.about-us .hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero-background.jpg');
    background-size: cover;
}

.ceo-intro {
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    gap: 2rem;
}

.ceo-image img {
    max-width: 300px;
    border-radius: 10px;
}

.company-vision {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    padding: 4rem 2rem;
    background-color: #1e1e1e;
    color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 768px) {
    .ceo-intro, .company-vision, .values-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
}
.bookus{
    background: url(images/contentcreation.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.contactpage{
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .contactpage{
        grid-template-columns: 1fr;
    }
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: #049a2b;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #00652b;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.map-placeholder {
    background-color: #f1f1f1;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    border-radius: 10px;
}

.contact-icons{
    display: flex;
    gap: 8px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #049a2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.contact-icon:hover {
    transform: translateY(-3px);
}
/* Portfolio Hero Section */
.portfolio {
  padding: 8em 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2em;
  color: #fff;
  font-family: 'Poppins', sans-serif; /* cleaner than Montserrat */
}

/* Text Section */
.portfolio-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 600;
}

.portfolio-text .highlight {
  color: #00ff88; /* neon green */
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.portfolio-text p {
  margin: 0.8em 0;
  font-size: 1rem;
  font-weight: 400;
  color: #ddd;
}

/* Record / Stats */
.record {
  margin-top: 2em;
  display: flex;
  gap: 1em;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  align-items: center;
  justify-content: center;
}

.impact-item h2 {
  font-size: 1.5rem;
  color: #049a2b;
  margin-bottom: 0.2rem;
  margin-top: 0.5rem;
}

.impact-item p {
  font-size: 0.8rem;
  color: #eee;
}

/* Image Styling 
.portfolio-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.7),
              0 0 50px rgba(0, 255, 136, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(0, 255, 136, 1),
              0 0 70px rgba(0, 255, 136, 0.6);
}
*/

/* Carousel Container */
.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.7),
              0 0 50px rgba(0, 255, 136, 0.4);
}

/* Carousel Track */
.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* Carousel Images */
.carousel img {
  min-width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  pointer-events: none;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 0.5em 0.8em;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: rgba(0, 255, 136, 0.7);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}


/* Responsive */
@media (max-width: 900px) {
  .portfolio {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .carousel img {
    height: 280px;
  }
  .portfolio-text {
    padding: 0;
  }

  .record {
    flex-direction: column;
    gap: 1em;
  }
}

/* .portfolio{
    padding: 10em 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    
}
.portfolio-text{
    padding: 0 2em;text-align: left;
}
.portfolio h1{
    font-size: 2em;
    color: #fff;
}
.portfolio p{
  color: #fff;

}
.record{
  display: flex;
  gap: 20px;
  /* From https://css.glass
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  align-items: center;
  justify-content: center;
} */

.portfolio-section{
    background-color: #1A1A1A;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.section-titlee {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
    /*position: relative;
    display: inline-block;*/
}
/* Slanted marquee section */
.marquee {
    overflow: hidden;
    position: relative;
    height: 200px;
    margin-bottom: 50px;
    background-color: #04632b;
    padding: 20px 0;
}
.marquee .track {
    display: flex;
    gap: 20px;
    position: absolute;
    animation: scroll 30s infinite;
}
.marquee img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    transform: rotate(-5deg);
    border-radius: 10px;
}
@keyframes scroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* Complex grid for photos */
.photo-grid {
    display: grid;
    grid-template-areas: 
      "a b c"
      "d b e"
      "f g h";
    grid-gap: 15px;
    margin-bottom: 50px;
    padding-bottom: 50px;
}
.photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}
.photo-grid img:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.photo-grid .a { grid-area: a; }
.photo-grid .b { grid-area: b; }
.photo-grid .c { grid-area: c; }
.photo-grid .d { grid-area: d; }
.photo-grid .e { grid-area: e; }
.photo-grid .f { grid-area: f; }
.photo-grid .g { grid-area: g; }
.photo-grid .h { grid-area: h; }

/* Video section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px ;
}
.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.video-item iframe {
    width: 100%;
    height: 250px;
    border: none;
}
.slanted-banner {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  padding: 18px 0;
  background-color: #1A1A1A;
  
}

.slanted-banner p {
  margin: 0;
  transform: skewY(3deg); /* cancel skew for text so it’s readable */
  background: #fff;
  transform: skewY(-3deg); /* tilt effect */
  margin: 40px 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.slanted-banner .logo {
  font-weight: 700;
  color: #ffce00; /* accent color for logo text */
  text-transform: uppercase;
}


  .text-blk {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    line-height: 20px;
    color: white;
    font-size: 14px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 40px;
    margin-left: 0px;
  }
  
  .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    justify-content: flex-start;
  }
  
  .responsive-container-block.bigContainer {
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(51, 51, 51);
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    margin: 0 0 0 0;
  }
  
  .responsive-container-block.Container {
    max-width: 1320px;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 80px;
    margin-left: auto;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
  }
  
  .responsive-container-block.leftSide {
    width: auto;
    align-items: flex-start;
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
    flex-direction: column;
    position: static;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    max-width: 300px;
  }
  
  .text-blk.heading {
    font-size: 40px;
    line-height: 64px;
    font-weight: 900;
    color: #049a2b;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 40px;
    margin-left: 0px;
  }
  
  .text-blk.btn {
    color: rgb(0, 178, 235);
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(160, 121, 0, 0.2) 0px 12px 35px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
    padding-top: 20px;
    padding-right: 50px;
    padding-bottom: 20px;
    padding-left: 50px;
    cursor: pointer;
  }
  
  .responsive-container-block.rightSide {
    width: 675px;
    position: relative;
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    display: flex;
    height: 700px;
    min-height: auto;
  }
  
  .number1img {
    margin-top: 39%;
    margin-right: 80%;
    margin-bottom: 29%;
    margin-left: 0px;
    height: 32%;
    width: 20%;
    position: absolute;
  }
  
  .number2img {
    margin-top: 19%;
    margin-right: 42%;
    margin-bottom: 42%;
    margin-left: 23%;
    width: 35%;
    height: 39%;
    position: absolute;
  }
  
  .number3img {
    width: 13%;
    height: 21%;
    position: absolute;
    margin-top: 62%;
    margin-right: 64%;
    margin-bottom: 30%;
    margin-left: 23%;
  }
  
  .number4vid {
    width: 34%;
    height: 33%;
    position: absolute;
    margin-top: 62%;
    margin-right: 27%;
    margin-bottom: 0px;
    margin-left: 39%;
  }
  
  .number5img {
    position: absolute;
    width: 13%;
    height: 21%;
    margin-top: 38%;
    margin-right: 27%;
    margin-bottom: 41%;
    margin-left: 60%;
  }
  
  .number6img {
    position: absolute;
    margin-top: 0px;
    margin-right: 3%;
    margin-bottom: 67%;
    margin-left: 62%;
    width: 35%;
    height: 33%;
  }
  
  .number7img {
    position: absolute;
    width: 25%;
    margin-top: 40%;
    margin-right: 0px;
    margin-bottom: 18%;
    margin-left: 75%;
    height: 42%;
  }
  
  .text-blk.subHeading {
    font-size: 14px;
    line-height: 25px;
  }
  
  @media (max-width: 1024px) {
    .responsive-container-block.Container {
      flex-direction: column-reverse;
    }
  
    .text-blk.heading {
      text-align: center;
      max-width: 370px;
    }
  
    .text-blk.subHeading {
      text-align: center;
    }
  
    .responsive-container-block.leftSide {
      align-items: center;
      max-width: 480px;
    }
  
    .responsive-container-block.rightSide {
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 100px;
      margin-left: auto;
    }
  
    .responsive-container-block.rightSide {
      margin: 0 auto 70px auto;
    }
  }
  
  @media (max-width: 768px) {
    .responsive-container-block.rightSide {
      width: 450px;
      height: 450px;
    }
  
    .responsive-container-block.leftSide {
      max-width: 450px;
    }
  }
  
  @media (max-width: 500px) {
    .number1img {
      display: none;
    }
  
    .number2img {
      display: none;
    }
  
    .number3img {
      display: none;
    }
  
    .number5img {
      display: none;
    }
  
    .number6img {
      display: none;
    }
  
    .number7img {
      display: none;
    }
  
    .responsive-container-block.rightSide {
      width: 100%;
      height: 250px;
      margin-top: 0px;
      margin-right: 0px;
      margin-bottom: 100px;
      margin-left: 0px;
    }
  
    .number4vid {
      position: static;
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 0px;
      margin-left: auto;
      width: 100%;
      height: 100%;
    }
  
    .text-blk.heading {
      font-size: 25px;
      line-height: 40px;
      max-width: 370px;
      width: auto;
    }
  
    .text-blk.subHeading {
      font-size: 14px;
      line-height: 25px;
    }
  
    .responsive-container-block.leftSide {
      width: 100%;
    }
  }

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}
.thank-you-box{
  text-align: center;
  margin: 25% auto;
}
.thank-you-box p{
  margin: 10px 0 10px 0;
}
.back{
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border:none;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #04632b;
    
}
.back a{
  color: #fff;
  text-decoration: none;
}