
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #030213;
    background-color: #ffffff;
    overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; 
}


img {
    max-width: 100%;
    height: auto;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.animate-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.animate {
    opacity: 1;
    transform: scale(1);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Layout components */


#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: pulse 4s ease-in-out infinite alternate;
}

.circle1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #036ed8, transparent);
  top: 20%;
  left: 15%;
}

.circle2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #2370CA, transparent);
  bottom: 2%;
  right: 10%;
  animation-duration: 6s;
}

@keyframes pulse {
  0% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.1); }
  100% { opacity: 0.2; transform: scale(1); }
}



.gradient-text {
  background: linear-gradient(90deg, #0066CC, #2370CA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



















.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 16px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 100px;
    /* box-shadow: 0px 4px 10px rgba(136, 136, 136, 1); */
    background-color: #030213;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: rgba(3, 2, 19, 0.9);
    backdrop-filter: blur(20px);
}

.hamburger,
.mobile-menu {
  display: none;
}





.logo-image{
    width: 150px;
    transition: transform 0.3s ease;
}

.logo-btn {
    background: linear-gradient(135deg, #0066cc 0%, #2370ca 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0px 5px 15px rgba(0, 102, 204, 0.4);
}

.logo-text {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.nav-menu {
    display: none;
    gap: 60px;
}

.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0066cc 0%, #2370ca 100%);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: #93c5fd;
    transform: translateY(-2px);
}

.nav-item:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(162deg, #0066cc 0%, #2370ca 100%);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 102, 204, 0.4);
}

.cta-btn:hover::before {
    left: 100%;
}


.hero-section {
  width: 100%;
  height: 100vh;
  background-color: #030213;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  padding: 100px 50px;
  max-width: 600px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 118px 56px 68px;
    min-height: 100vh;
}

.hero-left {
    flex: 1;
    max-width: 46%;
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 26px;
    opacity: 0;
    animation: fadeInLeft 1s ease-out 0.2s forwards;
}

.hero-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #93c5fd;
    margin-bottom: 14px;
    opacity: 0;
    animation: fadeInLeft 1s ease-out 0.4s forwards;
}

.hero-description {
    font-size: 14px;
    color: #e5e7eb;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInLeft 1s ease-out 0.6s forwards;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 26px 0;
    opacity: 0;
    animation: scaleIn 1s ease-out 0.8s forwards;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.stat-number {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #93c5fd;
}

.stat-label {
    font-size: 10px;
    color: #9ca3af;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.btn-primary {
    background: linear-gradient(174deg, #0066cc 0%, #2370ca 100%);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 12px 0px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
    border-radius: 4px;
    padding: 12px 0px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #0066cc 0%, #2370ca 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 15px rgba(0, 102, 204, 0.4);
}

.btn-secondary:hover {
    color: #ffffff;
}

.btn-secondary:hover::before {
    width: 100%;
}

.hero-features {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 7px;
    transition: transform 0.3s ease;
}

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

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-dot {
    transform: scale(1.5);
    box-shadow: 0px 0px 10px currentColor;
}

.dot-green { 
    background-color: #10b981;
}
.dot-blue { 
    background-color: #3b82f6;
}
.dot-purple { 
    background-color: #8b5cf6;
}

.feature-text {
    font-size: 10px;
    color: #9ca3af;
}

.hero-right {
    flex: 1;
    position: relative;
    opacity: 0;
    animation: fadeInRight 1s ease-out 1.4s forwards;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.hero-image:hover img {
    transform: scale(1.1);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 16px;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;  
}

.floating-card:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.floating-card-1 {
    top: -10px;
    left: -50px;
    width: 120px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: -20px;
    right: -50px;
    width: 112px;
    animation-delay: 2s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center; /* centers children horizontally */
}

.scroll-indicator .circle{width:24px;height:40px;border:2px solid #1E90FF;border-radius:20px;display:flex;justify-content:center;}
.scroll-indicator .dot{width:4px;height:8px;background:#1E90FF;border-radius:2px;margin-top:4px;animation:bounce 1s infinite;}
@keyframes bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(8px)}}

.scroll-indicator .scroll-text {
    font-size: 8px;
    color: #93c5fd;
    margin-top: 4px;
    text-align: center;
    display: block; /* ensures proper centering */
}



/* About section */
.about-section {
    background-color: #ffffff;
    
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
  text-align: left;
}

.about-left {
    flex: 1;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #030213;
    margin-bottom: 26px;
}

.section-description {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 28px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-list-item:hover {
    background-color: #f8fafc;
    transform: translateX(10px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    height: 40px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.feature-list-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: #030213;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.feature-list-item:hover .feature-content h3 {
    color: #0066cc;
}

.feature-content p {
    font-size: 14px;
    color: #4b5563;
}

.about-right {
    flex: 1;
}

.about-image {
    width: 100%;
    border-radius: 14px;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}

/* Services section */
.services-section {
    background: linear-gradient(180deg, #f3f4f6 0%, #ffffff 100%);
    padding: 68px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 56px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 26px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(135deg, #0066cc 0%, #2370ca 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 40px rgba(0, 102, 204, 0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 110px; 
    margin: 0 auto 5px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-title {
    font-size: 17px;
    font-weight: 600;
    color: #030213;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #0066cc;
}

.service-description {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-feature {
    transform: translateX(5px);
}

.service-feature-dot {
    width: 6px;
    height: 6px;
    background-color: #0066cc;
    border-radius: 3px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-feature-dot {
    background-color: #2370ca;
    transform: scale(1.5);
}

.service-feature-text {
    font-size: 12px;
    color: #4b5563;
}

/* IT Department section */
.it-section {
    background-color: #f3f4f6;
    padding: 66px 0;
    position: relative;
}

.it-content {
    display: flex;
    gap: 42px;
    align-items: center;
}

.it-left {
    flex: 1;
}

.it-title {
    font-size: 24px;
    font-weight: 700;
    color: #030213;
    line-height: 1.2;
    margin-bottom: 18px;
}

.it-right {
    flex: 1;
}

.it-image {
    width: 100%;
    border-radius: 14px;
    transition: transform 0.3s ease;
}

.it-image:hover {
    transform: scale(1.05);
}











/* Solution Section */
.solutions-section {
  background-color: #f3f4f6;
  padding: 66px 0;
}

.solutions-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.section-description {
  font-size: 14px;
  color: #4b5563;
  max-width: 600px;
  margin: 0 auto;
}

/* Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

/* Flip Card */
.flip-card {
  background: transparent;
  width: 100%;
  height: 285px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Faces */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

/* Front */
.flip-card-front {
  background: #fff;
}
.flip-card-front img {
  width: 100%;
  /* height: 200px; */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}
.flip-card-front h3 {
  font-size: 16px;
  font-weight: 600;
  color: #030213;
  text-align: center;
}

/* Back */
.flip-card-back {
  background: 
  
    radial-gradient(circle at top left, #5a8eee54, transparent 40%),
    radial-gradient(circle at bottom right, #ff5ca34b, transparent 40%),
    linear-gradient(135deg, #0a0a1a, #111130);
  color: #fff;
  transform: rotateY(180deg);
  text-align: left;
  overflow-y: auto;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.flip-card-back h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  align-self: center;
}
.flip-card-back p {
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.flip-card-back h4 {
  font-size: 13px;
  margin-bottom: 8px;
}
.flip-card-back ul {
  list-style: none;
  padding: 0px;
  margin: 0;
  padding-left: 10px;
}
.flip-card-back ul li {
  font-size: 13px;
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
}
.flip-card-back ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4ade80; /* green bullet */
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .section-title {
    font-size: 20px;
  }
  .flip-card {
    height: 320px;
  }
  .flip-card-front img {
    height: 200px;
  }
}
@media (max-width: 480px) {
  .flip-card {
    height: 290px;
  }
}






























/* Pricing section */
.pricing-section {
    background-color: #f3f4f6;
    padding: 66px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 20px 40px rgba(0, 102, 204, 0.15);
}

.pricing-card.featured {
    border: 2px solid #0066cc;
    box-shadow: 0px 10px 25px rgba(0, 102, 204, 0.15);
    margin-top: -16px;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.1);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(165deg, #0066cc 0%, #2370ca 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    animation: pulse 2s infinite;
}

.pricing-title {
    font-size: 15px;
    font-weight: 600;
    color: #030213;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.pricing-card:hover .pricing-title {
    color: #0066cc;
}

.pricing-price {
    font-size: 16px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-price {
    color: #2370ca;
    transform: scale(1.1);
}

.pricing-description {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Testimonials section */
.testimonials-section {
    background-color: #ffffff;
    padding: 68px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 26px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: #0066cc;
    font-weight: 700;
    opacity: 0.3;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 40px rgba(0, 102, 204, 0.15);
}

.testimonial-text {
    font-size: 14px;
    font-style: italic;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-author {
    transform: translateX(5px);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
}

.author-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #030213;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 12px;
    color: #9ca3af;
}








/* Why NeoLogic Section */
.cta-section {
  position: relative;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0a0a1a, #111130);
  color: #fff;
  overflow: hidden;
}

/* Hexagon Globe */
.hex-globe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(0%, -20%) scale(1.5);
  z-index: 0;
  animation: zoomGlobe 15s ease-in-out infinite alternate; 
  opacity: 0.3;
}

@keyframes zoomGlobe {
  0% {
    transform: translate(0%, -20%)scale(1.45);
    opacity: 0.25;
  }
  50% {
    transform: translate(0%, -20%) scale(1.3);
    opacity: 0.05;
  }
  100% {
    transform: translate(0%, -20%) scale(1.45);
    opacity: 0.25;
  }
}


/* Content */
.cta-content {
   display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}
.cta-left {
  flex: 1;
}

.cta-left h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta-left .highlight {
  color: #11A6E8;
  margin-bottom: 1rem;
  font-size: 40px;
}

.cta-left p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #ddd;
}

.cta-left .cta-sub {
  font-weight: bold;
  color: #fff;
}

.contact-info {
  margin: 1rem 0;
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 0.5rem;
}

.contact-info li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #5a8dee, #7f5cff);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #7f5cff, #5a8dee);
}

.cta-right {
  flex: 1;
  text-align: right;
}

.cta-right img {
  max-width: 100%;
  height: auto;
}

.cta-right h2 {
  margin-bottom: 1rem;
}

.cta-right p {
  margin-bottom: 1rem;
  color: #ccc;
}

.btn-secondary {
  background: transparent;
  border: 2px solid #7f5cff;
  color: #7f5cff;
}

.btn-secondary:hover {
  background: #7f5cff;
  color: #fff;
  transform: translateY(-3px);
}

/* Gradient Circles */
.gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.4;
}

.circle1 {
  width: 350px;
  height: 350px;
  top: -80px;
  left: -120px;
  background: radial-gradient(circle, #5a8dee, transparent);
}

.circle2 {
  width: 280px;
  height: 280px;
  bottom: -60px;
  right: 40px;
  background: radial-gradient(circle, #ff5ca2, transparent);
}

.circle3 {
  width: 180px;
  height: 180px;
  top: 40%;
  left: 55%;
  background: radial-gradient(circle, #7f5cff, transparent);
}





















/* Contact section */
.contact-section {
    background: linear-gradient(180deg, #f3f4f6 0%, #ffffff 100%);
    padding: 68px 56px;
}

.contact-header {
    text-align: center;
    margin-bottom: 58px;
}

.contact-content {
    display: flex;
    gap: 42px;
    align-items: flex-start;
}

.contact-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 30px rgba(0, 102, 204, 0.1);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.contact-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #0066cc 0%, #2370ca 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #030213;
}

.contact-card-value {
    font-size: 16px;
    font-weight: 600;
    color: #030213;
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-card-value {
    color: #0066cc;
}

.contact-card-description {
    font-size: 14px;
    color: #4b5563;
}

.contact-right {
    flex: 1;
}

.contact-form {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 28px 26px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

.form-title {
    font-size: 21px;
    font-weight: 600;
    color: #030213;
    margin-bottom: 20px;
}

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

.form-row {
    display: flex;
    gap: 14px;
}

.form-row .form-group {
    flex: 1;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #030213;
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    color: #030213;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0px 0px 0px 3px rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
}

.form-input::placeholder {
    color: rgba(75, 84, 98, 0.5);
}

.form-textarea {
    width: 100%;
    min-height: 70px;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    color: #030213;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0px 0px 0px 3px rgba(0, 102, 204, 0.1);
    transform: translateY(-2px);
}

.form-submit {
    width: 100%;
    background: linear-gradient(174deg, #0066cc 0%, #2370ca 100%);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 12px 34px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.form-submit:hover {
    transform: scale(1.02);
    box-shadow: 0px 5px 15px rgba(0, 102, 204, 0.4);
}

.form-submit:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background-color: #030213;
    padding: 28px 0;
}

.footer-content {
    display: flex;
    gap: 28px;
    margin-bottom: 42px;
}

.footer-left {
    flex: 1;
    max-width: 38%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.footer-description {
    font-size: 14px;
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 6px;
}

.footer-social a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-social a:hover {
    color: #93c5fd;
    background-color: rgba(147, 197, 253, 0.1);
    transform: translateY(-2px);
}

.footer-right {
    flex: 1;
    display: flex;
    gap: 26px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 20px;
    height: 2px;
    background: linear-gradient(135deg, #0066cc 0%, #2370ca 100%);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 3px 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #93c5fd;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #93c5fd;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 28px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #e5e7eb;
}

