body {
    background-color: #f8fafc;
    color: #fff;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.home-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  padding: 2rem;
}

.intro-left {
  flex: 1 1 50%;
  padding-right: 1rem;
}

.intro-left h3 {
  font-size: 30pt;
  color: #016f4c;

}

.intro-left p{
    color: #2b2b2b;
    margin-bottom: 20px;
    font-weight: 600;
}

.GIT {
    background: linear-gradient(135deg, #0f7c6a, #2e91ad);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(15, 124, 106, 0.4);
}

.GIT:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 124, 106, 0.6);
    background: linear-gradient(135deg, #0d8a74, #2e91ad);
}


.intro-left button:hover {
  background-color: rgb(17, 159, 135);
}

.intro-right {
  flex: 1 1 40%;
  text-align: center;
  border-radius: 6px;
  border-image: 6pt;
  
}

.reception {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
}
        
/* Galaxy Background with shimmer effect */
.reception::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(8, 177, 149, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(118, 208, 193, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 40% 70%, rgba(46, 145, 173, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(78, 190, 171, 0.2) 0%, transparent 30%),
        linear-gradient(0deg, rgba(211, 211, 211, 0.9) 0%, rgba(89, 89, 89, 0.4) 100%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-blend-mode: overlay, overlay, overlay, overlay, normal, screen;
    background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, cover, 200px 200px;
    z-index: -1;
    animation: shimmer 15s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 200px 200px;
    }
}

/* Stars effect */
.reception::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 210px 60px, #ddd, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 260px 20px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 290px 70px, #eee, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 330px 40px, #ddd, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 350px 80px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 400px 400px;
    z-index: -1;
    animation: stars 60s linear infinite;
}

@keyframes stars {
    from { background-position: 0 0; }
    to { background-position: 400px 0; }
}

.home-trust-logo {
    max-width: 12000px;
    width: 100%;
    margin-top: 3rem;
    padding: 2rem;
    background: transparent;
    border-radius: 15px;
    backdrop-filter: blur(0px);
    border: transparent;
}

.trustlogo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-label {
    font-size: 0.9rem;
    color: #02363b;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    margin: 0;
    font-weight: 700;
}

.logo-grid {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
}

.logo-grid img {
    filter: brightness(0) invert(0);
    height: 35px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.logo-grid img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.comp-overview {
    background-color: #f8fafc;
    padding: 60px 20px;
    width: 100%;
}

.concept {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    align-items: start;
}

.title {
    grid-column: 1;
    text-align: center;
    padding-right: 20px;
}

.title p{
    color: #272727;
    font-weight: 600;
}

.title header {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2e91ad;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

.details {
    grid-column: 3;
    text-align: left;
    padding-left: 30px;
}

.details p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
    text-align: justify;
}

.divider {
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, 
                transparent 0%, 
                #2e91ad 15%, 
                #2e91ad 85%, 
                transparent 100%);
    margin: 0 auto;
}

.transition-wrapper {
    position: relative;
    width: 100%;
    height: 30px;
    overflow: hidden;
}

.transition-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #000000 0%, rgb(255, 255, 255) 100%);
    z-index: 5;
}

.services{
     min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    overflow: hidden;
}



.services-content {
    position: relative;
    height: 400px;
    margin: 60px 0 40px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.service-card {
    position: absolute;
    width: 300px;
    height: 400px;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -180px;
    background: rgb(255, 255, 255);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.7s ease, opacity 0.7s ease, z-index 0.7s ease;
    cursor: pointer;
    transform-origin: center;
}

.card-image {
    height: 144px; /* 40% of 360px */
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 20px;
    height: 216px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    font-size: 1.4rem;
    color: #2e91ad;
    margin-bottom: 12px;
}

.card-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.card-content .read-more {
    color: #2e91ad;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
}

/* Navigation arrows */
.navigation {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #32f8a2;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(46, 145, 173, 0.3);
}

.nav-arrow:hover {
    background: #1d7a96;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 145, 173, 0.4);
}

.home-serv{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.intro-left-serv{
    flex: 1 1 100%;
    padding-right: 1rem;
}

.intro-right-serv{
    flex: 1 1 40%;
    text-align: center;
    border-radius: 6px;
    border-image: 6pt;    
}
.transition-wrapper-2 {
    position: relative;
    width: 100%;
    height: 30px;
    overflow: hidden;
}

.transition-gradient2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(255, 255, 255) 0%, #3c3c3c 100%);
    z-index: 5;
}

.projects-cards-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.projects-cards {
    background: #f8f7f7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(50, 222, 248, 0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.projects-cards:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(5, 72, 90, 0.7);
}

.proj-card-content {
    padding: 1.5rem 1.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.proj-card-content h3{
    margin: 0 0 0.75rem;
    color: #2e91ad;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.proj-card-content p {
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #323232;
    margin-bottom: 1.25rem;
}

.projects h1 {
    text-align: center;
    margin: 2rem 1rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.divider-2 {
    height: 3px;
    width: 100%;
    margin: 60px 0;
    position: relative;
}

.divider-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #2e91ad 20%,
        #2e91ad 80%,
        transparent 100%
    );
}

/* Alternative Style 1: With decorative elements */
.divider-2-fancy {
    height: 3px;
    width: 100%;
    margin: 60px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-2-fancy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #2e91ad 15%,
        #2e91ad 85%,
        transparent 100%
    );
}

.divider-2-fancy::after {
    content: '❖';
    position: relative;
    background: #1a2a3a;
    color: #2e91ad;
    padding: 0 15px;
    font-size: 1.2rem;
}

/* Alternative Style 2: Dashed gradient */
.divider-2-dashed {
    height: 2px;
    width: 100%;
    margin: 60px 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 10%,
        #2e91ad 10%,
        #2e91ad 90%,
        transparent 90%,
        transparent 100%
    );
    background-size: 30px 100%;
    background-repeat: repeat-x;
}

/* Alternative Style 3: Animated gradient */
.divider-2-animated {
    height: 3px;
    width: 100%;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.divider-2-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #2e91ad 20%,
        #2e91ad 80%,
        transparent 100%
    );
    animation: slide 3s ease-in-out infinite;
}

@keyframes slide {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 80px;
    align-items: center;
}

/* Surprise Element - Interactive Globe */
.surprise-element {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interactive-globe {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        var(--secondary) 0%, 
        var(--accent) 30%, 
        var(--primary) 70%);
    box-shadow: 
        0 0 50px rgba(50, 248, 162, 0.3),
        0 0 100px rgba(50, 248, 162, 0.2),
        inset 0 0 50px rgba(255, 255, 255, 0.2);
    animation: rotate 20s linear infinite;
    transform-style: preserve-3d;
}

.interactive-globe::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    animation: pulse 3s ease-in-out infinite;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 1px solid rgba(118, 208, 193, 0.3);
    border-radius: 50%;
}

.orbit:nth-child(2) {
    width: 350px;
    height: 350px;
    animation: orbit-rotate 15s linear infinite;
}

.orbit:nth-child(3) {
    width: 450px;
    height: 450px;
    animation: orbit-rotate 25s linear infinite reverse;
}

.satellite {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--primary);
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 70%;
    right: 15%;
    animation-delay: 1s;
    color: var(--secondary);
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
    color: var(--accent);
}

.floating-icon:nth-child(4) {
    top: 40%;
    right: 5%;
    animation-delay: 3s;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary);
}

.contact-form h2 {
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(50, 248, 162, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
    100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
}

@keyframes orbit-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

footer {
    background: #000000;
    color: #fff;
    padding: 60px 0 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #32f8a2;
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 2px solid #32f8a2;
    padding-bottom: 10px;
    display: inline-block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-item i {
    color: #32f8a2;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #32f8a2;
    color: #000;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #2e91ad;
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}