* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body { 
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    width: 100%;
    height: 100%;
    overflow-x: hidden; 
    height: 100%;
    background: #fff;
    /*background-image: url('images/bg.gif');
    background-size: contain;
    background-repeat: no-repeat;*/
}
    




header { 
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000;
    padding: 20px;
    background-color: #93c647;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;     
    overflow: hidden;   
    margin-top: -23%;
}



header h3{
    color: #fff;
    margin-top: 24%;
    font-size: 18px;
}























///heaer
* {
       margin: 0;
       padding: 0;
      box-sizing: border-box;
     }
      html, body { 
       width: 100%;
       height: 100%;
       margin: 0px;
       padding: 0px;
       overflow-x: hidden; 
      }
     
     
#navbar {
    position: sticky;
    top: 0; 
    width: 100%;
    height: 100px;
    padding: 10px 13%;
    background-color: #000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;  
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-logo {
    height: 130px; 
    margin-top: -3px;  
}

#hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

.nav-links {
    display: flex;
    gap: 5px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #000;
    width: 250px;
    height: 100%;
    padding-top: 60px;
    gap: 20px;
    align-items: center;
    z-index: 999;
}

#close-btn {
    display: none;
    position: absolute;
    top: 10px;
    font-size: 30px;
     right: 20px;
   cursor: pointer;
    color: white;
}

.nav-links.active #close-btn {
    display: block;
}

#navbar a {
    color: #f2f2f2;
    text-align: center;
    padding: 12px 14px;
    margin-right: 15px;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Segoe UI', sans-serif;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 10px;
}

#navbar a:hover {
    background-color: #ddd;
    color: black;
    border-radius: 10px;
    font-weight: bold;
    transform: translateY(3px);
}

#navbar a.active {
    background-color: #93c647;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    transform: translateX(0);
}

#navbar a.active:hover {
    background-color: #ddd;
    color: black;
    transform: translateY(3px);
}

@media (max-width: 1440px) {
    #navbar {
        padding: 10px 5%;
    }
    
    #hamburger {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #000;
        width: 250px;
        height: 100%;
        padding-top: 60px;
        align-items: center;
        gap: 20px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    #close-btn {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
        color: white;
    }
}

@media (max-width: 1024px) {
    #navbar {
        padding: 10px 3%;
    }
    
    #hamburger {
        display: block;
    }

    .nav-links {
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #000;
        width: 250px;
        height: 100%;
        padding-top: 60px;
        align-items: center;
        gap: 20px;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    #close-btn {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
        color: white;
    }
}

@media (max-width: 768px) {
    #navbar {
        padding: 10px 20px;
        width: 100%;
    }
    
    .navbar-logo {
        height: 100px;
    }
}

@media (max-width: 425px) {
    #navbar {
        position: sticky;
        top: 0; 
        height: 100px;
        width: 100%;
        padding: 5px 15px;
        background-color: #000;
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;  
    }

    .navbar-logo {
        height: 80px;
        margin-left: 0;
    }
    
    #hamburger {
        margin-left: 0;
        color: white;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #000;
        width: 100%;
        height: 100%;
        padding-top: 60px;
        gap: 20px;
        align-items: center;
        z-index: 999;
        transition: transform 0.3s ease;
        transform: translateX(100%);
    }

    .nav-links a {
        width: auto;
        display: block;
        margin-bottom: 15px;
        padding: 15px 20px;
        font-size: 20px;
    }

    .nav-links.active {
        display: flex;
        transform: translateX(0);
    }

    #close-btn {
        display: none;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }

    .nav-links.active #close-btn {
        display: block;
    }
}
    





































































/*********************web solutions****************/
:root {
    --matrix-green: #93c647;
    --matrix-dark-green: #93c647;
    --matrix-light-green: #93c647;
    --dark-bg: #0d0d0f;
    --darker-bg: #030303;
    --card-bg: rgba(13, 13, 15, 0.9);
    --border-color: rgba(0, 255, 65, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --shadow-green: rgba(0, 255, 65, 0.2);
}

.intro-sec {
    /* Seamless blend with bottom section */
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 50%, var(--dark-bg) 100%);
    padding: 60px 15px;
    color: white;
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Enhanced Matrix Background Effects to match bottom section */
.intro-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

/* Additional overlay for seamless transition */
.intro-sec::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.05) 0%, transparent 30%, rgba(0, 255, 65, 0.05) 100%);
    z-index: 1;
}

.intro-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.intro-header {
    text-align: center;
    margin-bottom: 40px;
}
.intro-header h2 {
    font-size: clamp(2.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-family: 'Segoe UI', sans-serif;
   
    /* Added glow effect to match bottom section */
    background: linear-gradient(135deg, var(--text-white) 0%, var(--text-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 
MOBILE ADJUSTMENT NOTES:
- Mobile intro h2 font size: Adjust .intro-header h2 font-size in mobile media query
- Mobile intro h2 margin: Adjust .intro-header h2 margin-bottom in mobile media query
- Mobile intro h2 font weight: Adjust .intro-header h2 font-weight in mobile media query
*/

/* Mobile Responsive */
@media (max-width: 768px) {
    .intro-header h2 {
        font-size: 2.2rem; /* Adjust this for mobile intro h2 size */
        margin-bottom: 8px; /* Adjust this for mobile intro h2 bottom margin */
        font-weight: 700; /* Adjust this for mobile intro h2 font weight */
    }
}

@media (max-width: 480px) {
    .intro-header h2 {
        font-size: 1.8rem; /* Adjust this for small mobile intro h2 size */
        margin-bottom: 6px; /* Adjust this for small mobile intro h2 bottom margin */
        font-weight: 600; /* Adjust this for small mobile intro h2 font weight */
    }
}
.intro-subtitle {
    font-size: clamp(1.175rem, 2vw, 1rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
    padding: 0 10px;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-images {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.diamond-image {
    position: absolute;
    width: 140px;
    height: 140px;
    transform: rotate(45deg);
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px var(--shadow-green);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    /* Enhanced border to match bottom section style */
}

.diamond-image:hover {
    transform: rotate(45deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.4);
    border-color: var(--matrix-green);
}

.diamond-image img {
    width: 140%;
    height: 140%;
    object-fit: cover;
    transform: rotate(-45deg);
    position: absolute;
    top: -20%;
    left: -20%;
    filter: grayscale(20%) contrast(110%);
}

.diamond-image:hover img {
    filter: grayscale(0%) contrast(120%) brightness(110%);
}

/* Enhanced diamond styling to match bottom section */
.diamond-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    background: linear-gradient(45deg, var(--matrix-green), var(--matrix-dark-green));
    box-shadow: 0 10px 25px var(--shadow-green), 0 0 20px rgba(0, 255, 65, 0.3);
}

.diamond-2 {
    top: 50%;
    right: 10%;
    transform: translateY(-50%) rotate(45deg);
    background: linear-gradient(45deg, var(--matrix-light-green), var(--matrix-green));
    box-shadow: 0 10px 25px var(--shadow-green), 0 0 20px rgba(0, 255, 65, 0.3);
}

.diamond-3 {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    background: linear-gradient(45deg, var(--matrix-dark-green), var(--matrix-light-green));
    box-shadow: 0 10px 25px var(--shadow-green), 0 0 20px rgba(0, 255, 65, 0.3);
}

.diamond-4 {
    top: 50%;
    left: 10%;
    transform: translateY(-50%) rotate(45deg);
    background: linear-gradient(45deg, var(--matrix-green), var(--matrix-light-green));
    box-shadow: 0 10px 25px var(--shadow-green), 0 0 20px rgba(0, 255, 65, 0.3);
}

.intro-services {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-item {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.6s ease forwards;
    padding: 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px var(--shadow-green);
    transition: all 0.3s ease;
    /* Enhanced styling to match bottom section cards */
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 255, 65, 0.4);
    border-color: rgba(0, 255, 65, 0.5);
}

.service-item:nth-child(1) { 
    animation-delay: 0.1s; 
    /* Add subtle glow animation */
    animation: slideInRight 0.6s ease forwards, matrix-glow-subtle 3s ease-in-out infinite alternate;
    animation-delay: 0.1s, 1s;
}
.service-item:nth-child(2) { 
    animation-delay: 0.2s;
    animation: slideInRight 0.6s ease forwards, matrix-glow-subtle 3s ease-in-out infinite alternate;
    animation-delay: 0.2s, 1.5s;
}
.service-item:nth-child(3) { 
    animation-delay: 0.3s;
    animation: slideInRight 0.6s ease forwards, matrix-glow-subtle 3s ease-in-out infinite alternate;
    animation-delay: 0.3s, 2s;
}
.service-item:nth-child(4) { 
    animation-delay: 0.4s;
    animation: slideInRight 0.6s ease forwards, matrix-glow-subtle 3s ease-in-out infinite alternate;
    animation-delay: 0.4s, 2.5s;
}

.service-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--matrix-green);
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.service-item h3::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--matrix-green);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--matrix-green);
    animation: matrix-pulse-dot 2s ease-in-out infinite alternate;
}

.service-item p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes matrix-glow-subtle {
    0% {
        box-shadow: 0 8px 32px var(--shadow-green);
    }
    100% {
        box-shadow: 0 12px 48px rgba(0, 255, 65, 0.3);
    }
}

@keyframes matrix-pulse-dot {
    0% {
        box-shadow: 0 0 12px var(--matrix-green);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 20px var(--matrix-green);
        transform: scale(1.1);
    }
}

/* Enhanced background decorative elements to match bottom section */
.intro-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.intro-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--matrix-green) 0%, transparent 70%);
    opacity: 0.08;
    animation: matrix-rotate 25s linear infinite;
}

.intro-circle-1 {
    width: 300px;
    height: 300px;
    top: 15%;
    left: 15%;
    animation-duration: 25s;
}

.intro-circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    animation-duration: 18s;
    animation-direction: reverse;
}

.intro-circle-3 {
    width: 150px;
    height: 150px;
    bottom: 25%;
    left: 35%;
    animation-duration: 22s;
}

@keyframes matrix-rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .intro-container {
        max-width: 900px;
    }
    
    .intro-content {
        gap: 40px;
    }
    
    .intro-images {
        height: 350px;
    }
    
    .diamond-image {
        width: 120px;
        height: 120px;
    }
    
    /* Adjust positions for tablet */
    .diamond-1 {
        top: 8%;
    }
    
    .diamond-2 {
        right: 12%;
    }
    
    .diamond-3 {
        bottom: 8%;
    }
    
    .diamond-4 {
        left: 20%;
    }
}

@media (max-width: 768px) {
    .intro-sec {
        padding: 50px 15px;
    }
    
    .intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .intro-images {
        height: 300px;
        order: 2;
    }
    
    .intro-services {
        order: 1;
    }
    
    .diamond-image {
        width: 100px;
        height: 100px;
    }
    
    .service-item {
        padding: 1rem;
    }
    
    /* Balanced positioning for mobile */
    .diamond-1 {
        top: 5%;
    }
    
    .diamond-2 {
        right: 15%;
    }
    
    .diamond-3 {
        bottom: 5%;
    }
    
    .diamond-4 {
        left: 15%;
    }
    
    .intro-bg-circle {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .intro-sec {
        padding: 40px 12px;
    }
    
    .intro-header {
        margin-bottom: 30px;
    }
    
    .intro-images {
        height: 250px;
    }
    
    .diamond-image {
        width: 80px;
        height: 80px;
    }
    
    .service-item {
        padding: 0.875rem;
    }
    
    .service-item h3 {
        font-size: 1rem;
    }
    
    .service-item p {
        font-size: 0.8125rem;
    }
    
    /* Balanced spacing for small mobile */
    .diamond-1 {
        top: 3%;
    }
    
    .diamond-2 {
        right: 18%;
    }
    
    .diamond-3 {
        bottom: 3%;
    }
    
    .diamond-4 {
        left: 18%;
    }
}

@media (max-width: 375px) {
    .intro-images {
        height: 220px;
    }
    
    .diamond-image {
        width: 70px;
        height: 70px;
    }
    
    .service-item {
        padding: 0.75rem;
    }
    
    /* Optimal positioning for very small screens */
    .diamond-1 {
        top: 2%;
    }
    
    .diamond-2 {
        right: 20%;
    }
    
    .diamond-3 {
        bottom: 2%;
    }
    
    .diamond-4 {
        left: 20%;
    }
}










































/***************************Services********************************************/



/*---------Service2-----------*/

.service2 {
    background: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    box-shadow: 10px 20px 20px 5px rgba(147, 198, 71, 0.8);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    animation: glowing 1.5s infinite alternate;
    width: 209%;
    margin-right: 50%;
}

.service2:hover {
    transform: scale(1.05);
    color: #93c647;
    box-shadow: 0 0 30px #93c647; /* Intensified glow on hover */
}

.icon2 img {
    width: 40px;  /* Adjust width */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Prevents extra space below image */
    transition: transform 0.3s ease-in-out; /* Smooth animation */
    margin-top: -3%;
}

.icon2 img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.service2 h3 {
    font-size: 18px;
    text-align: right;
    margin-top: -6%;
    color: #000; /* Improved readability */
}

.service2 p {
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 15px;
    text-align: justify;
}

.servicep{
    margin-top: 8%;
}


.servicep p {
    font-size: 18px;
    margin-left: 5px;
    font-weight: bold;
} 

.servicep a {
    text-decoration: none;
    color: 0118D8; 
}

.servicep a:hover {
   text-decoration: underline;
}



@keyframes glowing {
    0% { box-shadow: 0 0 20px rgba(147, 198, 71, 0.6); }
    50% { box-shadow: 0 0 30px rgba(147, 198, 71, 1); }
    100% { box-shadow: 0 0 20px rgba(147, 198, 71, 0.6); }
  }












/********************************** Solution Section **********************************/
.solution-sec {
    margin-top: 0;
    margin-bottom: 0;
    background-color: #000;
    padding: 5% 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.solution {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 0 auto; /* I-specify mo explicitly yung bottom margin na 0 */
    padding: 0 0px 0 0px; /* I-zero din yung bottom padding */
    gap: 5px;
}
.solution-left {
    position: relative;
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-left img {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 3px solid #93c647;
    box-shadow: 0 0 20px 10px rgba(147, 198, 71, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    object-fit: cover;
} 

.solution-left::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    max-width: 470px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: rgba(147, 198, 71, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 3s infinite;
    z-index: 0;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
}

.solution-left img:hover {
    box-shadow: 0 0 30px 15px rgba(147, 198, 71, 0.4);
    transform: scale(1.02);
}

.solution-right {
    flex: 1;
    min-width: 300px;
    padding: 20px 0;
}

.solution-right h4 {
    font-family: 'Segoe UI', sans-serif;
    color: #93c647;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.solution-right h1 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.3;
    font-weight: 700;
}

.solution-text {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(147, 198, 71, 0.1);
}

.solution-text:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.solution-text .solution-image {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.solution-text .solution-image img {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 5px rgba(147, 198, 71, 0.7));
    transition: all 0.3s ease;
}

.solution-text .solution-image img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(147, 198, 71, 0.9));
}

.solution-text-content {
    flex: 1;
}

.solution-text p {
    line-height: 1.6;
    color: #ddd;
    margin: 0 0 12px 0;
    font-size: 1rem;
    font-weight: 400;
}

.solution-text p:last-child {
    margin-bottom: 0;
}

/* Mobile Break Class */
.mobile-break {
    display: none;
}

/********************************** Responsive Design **********************************/

/* Large Desktop */
@media (max-width: 1400px) {
    .solution-left img {
        max-width: 400px;
    }
    
    .solution-right h1 {
        font-size: 2rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .solution {
        gap: 30px;
    }
    
    .solution-left img {
        max-width: 380px;
    }
    
    .solution-right h1 {
        font-size: 1.9rem;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .solution-sec {
        padding: 8% 0;
    }
    
    .solution {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .solution-left, 
    .solution-right {
        min-width: auto;
        width: 100%;
    }
    
    .solution-left img {
        max-width: 350px;
    }
    
    .solution-right {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .solution-right h1 {
        font-size: 1.8rem;
    }
    
    .solution-text {
        justify-content: flex-start;
        text-align: left;
        max-width: 500px;
        margin: 0 auto 1.5rem auto;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .solution-sec {
        margin-top: 0;
        margin-bottom: 15%;
        padding: 8% 0;
    }
    
    .solution {
        padding: 0 15px;
        gap: 30px;
    }
    
    .solution-left img {
        max-width: 300px;
    }
    
    .solution-right h4 {
        font-size: 1.1rem;
    }
    
    .solution-right h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .mobile-break {
        display: block;
    }
    
    .solution-text {
        margin-bottom: 1.8rem;
        padding: 12px 0;
    }
    
    .solution-text .solution-image {
        width: 20px;
        height: 20px;
    }
    
    .solution-text p {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
}

/* Mobile Medium */
@media (max-width: 480px) {
    .solution-sec {
        padding: 10% 0;
    }
    
    .solution {
        padding: 0 10px;
    }
    
    .solution-left img {
        max-width: 260px;
    }
    
    .solution-right h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .solution-right h1 {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .solution-text {
        gap: 12px;
        margin-bottom: 1.5rem;
        padding: 10px 0;
    }
    
    .solution-text .solution-image {
        width: 18px;
        height: 18px;
    }
    
    .solution-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }
}

/* Mobile Small */
@media (max-width: 375px) {
    .solution-left img {
        max-width: 220px;
    }
    
    .solution-right h1 {
        font-size: 1.3rem;
    }
    
    .solution-text p {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .solution {
        padding: 0 8px;
    }
    
    .solution-left img {
        max-width: 200px;
    }
    
    .solution-right h4 {
        font-size: 0.9rem;
    }
    
    .solution-right h1 {
        font-size: 1.2rem;
    }
    
    .solution-text p {
        font-size: 0.8rem;
    }
}






























































































/* Swiper Container */
.swiper {   
    width: 100%; /* Full width */
    max-width: 1500px; /* Adjust as needed */
    margin: 0 auto; /* Centers the slider */
    padding: 40px 0;
    padding-top: 5%;  
}

.swiper-slide {
    display: flex;
    justify-content: center;
    
}


.swiper-button-next {
    right: 0px; 
    color: #fff;
    text-shadow: 
    -2px -2px 0 white,  
    2px -2px 0 white,
    -2px 2px 0 white,
    2px 2px 0 white,
    -3px 0px 0 white,
    3px 0px 0 white,
    0px -3px 0 white,
    0px 3px 0 white; 
    
    
    
}


.swiper-button-prev {
    left: 0px; 
    color: #000;
    color: white;
    text-shadow: 
    -2px -2px 0 white,  
    2px -2px 0 white,
    -2px 2px 0 white,
    2px 2px 0 white,
    -3px 0px 0 white,
    3px 0px 0 white,
    0px -3px 0 white,
    0px 3px 0 white; 
    
    
}




/* Flip Card Styles */
@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 0 20px 5px rgba(173, 255, 47, 0.8);
    }
    50% {
        box-shadow: 0 0 30px 5px rgba(173, 255, 47, 1);
    }
}

.flip-card {
    background-color: transparent;
    width: 300px;
    height: 400px;
    perspective: 1000px;
    
}



.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
    
}

.flip-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    color: white;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse-shadow 2s infinite ease-in-out;
    
}

.flip-card-front::before{
   -moz-transition: opacity 3s ease;
   -webkit-transition: opacity 3s ease;
   -ms-transition: opacity 3s ease;
   transition: opacity 3s ease;
   -moz-transition-delay: 1.25s;
   -webkit-transition-delay: 1.25s;
   -ms-transition-delay: 1.25s;
   transition-delay: 1.25s;
   content: '';
   display: block;
   background-color: rgba(0, 0, 0, 0.95);
   height: 100%;
   left: 0;
   opacity: 0.30;
   position: absolute;
   top: 0;
   width: 100%;
   z-index: 1;
   border-radius: 10px;
}

.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    color: white;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    z-index: 10 !important;
}


.flip-card-front, .flip-card-back {
    box-shadow: 0 4px 6px rgba(173, 255, 47, 0.8); /* Light shadow */
}

/* Button Styling */
.flip-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: greenyellow;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    pointer-events: auto; /* ✅ Ensures button is clickable */
}

/* Button Hover */
.flip-button:hover {
    background-color: limegreen;
}


.caption{
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0.5); /* Black w/opacity/see-through */
    color: white;
    font-weight: bold;
    border: 1px solid #f1f1f1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 10px;
    text-align: center;
    height: 80%;
    border-radius: 10px;  
}


.view-business {
    color: #FFD700;
    padding-top: 60%;
}
.view-events {
    color: #ffe70b;
    padding-top: 68%; 
}
.view-invites {
    color: #ffe70b;
    padding-top: 60%;
}
.view-blog{
    color: #ffe70b;
    padding-top: 53%;
}
.view-portfolio{
    color: #ffe70b;
    padding-top: 22%;
    font-size: 15px!important;
}
.view-atms{
    color: #ffe70b;
    margin-top: 16%!important;  
}

.view-custom{
    color: #ffe70b;
    margin-top: 28%!important;   
}



@media (max-width: 768px) {
    .flip-card {
        width:300px;  
        height:400px; 
        margin-top:10%;
    }
   
    .caption h3 {
        font-size: 20px!important;
    }
    .view-business {
        color: #FFD700;
        padding-top: 60%; 
        font-size: 13px!important;   
    }
    .view-events{
        padding-top: 69%;
        font-size: 13px!important;
    }
    .view-invites {
        padding-top: 60%;
        font-size: 13px!important;
    }
    
    .view-blog{
        padding-top: 53%;
        font-size: 13px!important;
    }

    .special h3  {
        padding-top: 1%!important;
        font-size: 18px!important;
    }
    .special p {
        font-size: 13px!important;
    }
    .view-portfolio {
        padding-top: 36%;
        font-size: 50px!important;  
    }
    .view-atms{
        padding-top: 22%;
    } 
    .view-custom{
        padding-top: 28%;
    }
}


@media (max-width: 480px) {
    .flip-card {
        width: 250px;  /* Further reduce for mobile */
        height: 350px;
    }

    .caption h3 {
        font-size: 20px!important;
    }

    .view-business {
        color: #FFD700;
        padding-top: 50%; 
        font-size: 13px!important;   
    }
    .view-events{
        padding-top: 50%;
        font-size: 13px!important;
    }  
    .view-invites {
        padding-top: 42%;
        font-size: 13px!important;
    }
    .view-blog{
        padding-top: 32%;
        font-size: 13px!important;
    }
    .special h3 {
        margin-top: 10%!important;
        font-size: 16px!important;
    }
    .special p {
        font-size: 13px!important;
    }
    .view-portfolio {
        padding-top: 25%;
        font-size: 50px!important;  
    }
    .view-atms{
        padding-top: 14%;
    }
    .view-custom {
        padding-top: 10%;
    }
   

}



/* Different Backgrounds for Each Card */
.business-card .flip-card-front {
    background: url('images/poster/business.jpg') center/cover no-repeat;
}

.events-card .flip-card-front {
    background: url('images/poster/events.jpg') center/cover no-repeat;
}

.e-invites-card .flip-card-front {
    background: url('images/poster/e-invites.jpg') center/cover no-repeat;
}

.blog-card .flip-card-front {
    background: url('images/poster/blog.jpg') center/cover no-repeat;
}

.portfolio-card .flip-card-front {
    background: url('images/poster/portfolio.jpg') center/cover no-repeat;
}

.attendance-card .flip-card-front {
    background: url('images/poster/attendance.jpg') center/cover no-repeat;
}

.customize-card .flip-card-front {
    background: url('images/poster/custom.jpg') center/cover no-repeat;
}





.flip-card-front h3 {
  font-size: 25px;
  margin-top: 20%;
}

.flip-card-front p {
  font-size: 15px;
  font-weight: 0%;
  margin-top: 5%;
}

.flip-card-back {
    background: #fff;
    color: #333;
    transform: rotateY(180deg);
    padding: 0%;
}

.flip-card-back p {
  font-size: 12px;
  margin: 5px 0;
  text-align: center;
}

.flip-card-back h3 {
  font-size: 14px;
  margin-top: -80px;

}





 
  
  
  





 

