@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Pacifico&display=swap');
/* GENERAL */
body{
margin: 0;
padding: 0;
font-family: Open Sans;
overflow-x: hidden;
background: #01011d;
}
#app{
overflow-x: hidden;   
}
a{
color:  white;
text-decoration:  none;	
}
h1, h2,h3,h4,h5,h6,p{
margin-top: 10px;
margin-bottom: 10px;
}
h1{
    font-size: 30px;
    color: #f0f0f0;
    text-align: center;
    font-weight: 600;
} 
h2{
font-size: 35px; 
}
h3{
font-size: 25px;        
}
h4{
font-size: 20px; 
font-weight: 100;
}        
h5{
font-size: 18px; 
font-weight: 100;
}h6{
font-size: 16px;
font-weight: 100;
}
p{
font-size: 14px;
font-family: raleway;
}
a:hover, 
.navbar-a a:hover{
color:  #6262ff;
text-decoration:  none; 
}

/* =====================================================
   MODERN BUTTON STYLES
===================================================== */

.btn a, 
.button, 
button {
    color: #000000;
    margin: auto;
    font-size: 14px;
    border: none;
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    cursor: pointer;
    padding: 7px 30px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    position: relative;
   top: 5px
}

/* =====================================================
   MODERN HOVER EFFECTS
===================================================== */

/* Effect 1: Slide underline (Your original improved) */
.btn a::before,
.button::before,
button::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #52c41a, #8d7200);
    transform: scaleX(0);
    transform-origin: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 15px;
}

.btn a:hover::before,
.button:hover::before,
button:hover::before {
    transform: scaleX(1);
}

.btn a:hover,
.button:hover,
button:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

/* =====================================================
   ALTERNATIVE EFFECTS (Choose your style)
===================================================== */

/* Effect 2: Gradient Slide */
.btn-gradient a,
.button-gradient,
button-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-gradient a::before,
.button-gradient::before,
button-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-gradient a:hover::before,
.button-gradient:hover::before,
button-gradient:hover::before {
    left: 0;
}

.btn-gradient a:hover,
.button-gradient:hover,
button-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.4);
    color: white;
}

/* Effect 3: Border Glow */
.btn-glow a,
.button-glow,
button-glow {
    color: #4d96ff;
    background: transparent;
    border: 2px solid #4d96ff;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-glow a::before,
.button-glow::before,
button-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(77, 150, 255, 0.2), 
        transparent
    );
    transform: skewX(-25deg);
    transition: all 0.5s ease;
}

.btn-glow a:hover::before,
.button-glow:hover::before,
button-glow:hover::before {
    left: 100%;
}

.btn-glow a:hover,
.button-glow:hover,
button-glow:hover {
    background: #4d96ff;
    color: white;
    box-shadow: 0 0 30px rgba(77, 150, 255, 0.4);
    transform: translateY(-3px);
}

/* Effect 4: 3D Flip */
.btn-3d a,
.button-3d,
button-3d {
    perspective: 1000px;
    background: #1a1a2e;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-3d a span,
.button-3d span,
button-3d span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-3d a:hover span,
.button-3d:hover span,
button-3d:hover span {
    transform: rotateX(360deg);
}

.btn-3d a:hover,
.button-3d:hover,
button-3d:hover {
    transform: translateY(-5px) rotateX(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Effect 5: Neon Glow */
.btn-neon a,
.button-neon,
button-neon {
    color: #00ff88;
    background: transparent;
    border: 2px solid #00ff88;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.4s ease;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.btn-neon a:hover,
.button-neon:hover,
button-neon:hover {
    background: #00ff88;
    color: #1a1a2e;
    box-shadow: 
        0 0 20px rgba(0, 255, 136, 0.4),
        0 0 40px rgba(0, 255, 136, 0.2),
        0 0 80px rgba(0, 255, 136, 0.1);
    transform: translateY(-3px) scale(1.05);
}

/* =====================================================
   RIPPLE EFFECT
===================================================== */

.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* =====================================================
   RESPONSIVE BUTTONS
===================================================== */

@media (max-width: 768px) {
    .btn a,
    .button,
    button {
        top: 20px;
        right: 10px;
        float: none;
        display: block;
        margin: 10px auto;
        text-align: center;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .btn a,
    .button,
    button {
        padding: 8px 16px;
        font-size: 13px;
        top: 10px;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

.btn a:focus-visible,
.button:focus-visible,
button:focus-visible {
    outline: 2px solid #4d96ff;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .btn a,
    .button,
    button,
    .btn a::before,
    .button::before,
    button::before {
        animation: none !important;
        transition: none !important;
    }
}
.active{
 color:  #ff0000;   
}

/* HEADER */
.header{
width: 100%;
z-index: 5;
height: 50px; 
}
.logo{
margin: 10px 20px;
float: left;
}
.logo img{
width: 150px;
height: 50px;
background-repeat: no-repeat;
}
.page{
width: 100%;
margin-top: 20px;
}


/* =====================================================
   MODERN NAVBAR STYLES
===================================================== */

.navbar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 0 0 30px;
    height: 50px;
    position: relative;
    overflow: hidden;
}

/* Animated background line */
.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}

.navbar-link {
    position: relative;
    padding: 12px 4px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
    overflow: hidden;
}

/* =====================================================
   MODERN HOVER EFFECTS
===================================================== */

/* Effect 1: Glowing underline with scale */
.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcb77, #4d96ff);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-link:hover::after {
    width: 80%;
}

/* Effect 2: Background glow on hover */
.navbar-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%);
}

.navbar-link:hover::before {
    width: 200px;
    height: 200px;
}

.navbar-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Active state with modern gradient */
.navbar-link.active {
    color: #ffffff;
}

.navbar-link.active::after {
    width: 80%;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcb77, #4d96ff);
    box-shadow: 0 0 20px rgba(77, 150, 255, 0.4);
}

.navbar-link.active::before {
    width: 200px;
    height: 200px;
}

/* Active link shine effect */
.navbar-link.active {
    animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% {
        box-shadow: 0 0 20px #0c0d19;
    }
    50% {
        box-shadow: 0 0 40px #172a55;
    }
}

/* Hover effect with lift and shadow */
.navbar-link:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* =====================================================
   ALTERNATIVE HOVER EFFECTS (Choose Your Style)
===================================================== */

/* Alternative 1: Slide-up underline */
.navbar-link.slide-up::after {
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateX(-100%);
    background: linear-gradient(90deg, #ff6b6b, #ffd93d);
}

.navbar-link.slide-up:hover::after {
    transform: translateX(0);
}

/* Alternative 2: Expanding border */
.navbar-link.expand-border {
    border: 2px solid transparent;
}

.navbar-link.expand-border::after {
    display: none;
}

.navbar-link.expand-border:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* Alternative 3: Glowing effect */
.navbar-link.glow-effect {
    background: transparent;
}

.navbar-link.glow-effect:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 0 30px rgba(77, 150, 255, 0.3),
        inset 0 0 30px rgba(77, 150, 255, 0.1);
}

/* Alternative 4: 3D Flip effect */
.navbar-link.flip-effect {
    perspective: 1000px;
}

.navbar-link.flip-effect span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-link.flip-effect:hover span {
    transform: rotateX(360deg);
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 920px) {
    .mobile-menu{
    display: block !important;
    position: absolute;
    top: 5px;
    z-index: 90;
    color: white;
    right: 20px;
    font-size: 30px;
}
  .navbar {
    display: none;
    flex-direction: column;
    overflow: auto;
    background: #020229;
    position: absolute;
    right: 5px;
    height: 80vh !important;
    z-index: 20;
    top: 50px;
    box-shadow: -3px 3px 4px #67666640;
     border: 1px solid #292828;
      border-radius: 20px;
     padding: 2%;
  } 
   .mobile-menu:hover{
    cursor:pointer;
}
  .navbar.active {
  display: flex; 
}


}

@media (max-width: 768px) {
  /*  .navbar {
        padding-left: 5%;
        flex-wrap: wrap;
        height: auto;
        min-height: 60px;
        justify-content: center;
        gap: 2px;
    } */
    
    .navbar-link {
        padding: 10px 16px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
   .page, .it-page, .iot-page{

margin-left: 0;
padding: 20px 5px !important;
}
    
    .navbar-link {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* =====================================================
   ACCESSIBILITY & ANIMATION PREFERENCES
===================================================== */

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .navbar-link,
    .navbar-link::after,
    .navbar-link::before,
    .navbar-link.active {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus styles for accessibility */
.navbar-link:focus-visible {
    outline: 2px solid #4d96ff;
    outline-offset: 2px;
    border-radius: 8px;
}

.fa.fa-arrow-down{
font-size: 14px; 
font-weight: 00;
}
.mobile-menu {
display: none;
}

/* FRONTPAGE */



/* =====================================================
   PAGE CONTAINER
===================================================== */

.page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    animation: pageFadeIn 1s ease-out;
}

.page-image-wrapper {
    position: relative;
    /*
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2); */
}

/* =====================================================
   BACKGROUND IMAGE ANIMATIONS
===================================================== */

.page-image {
    width: 50%;
height: 400px;
margin: auto;
    margin: 0 auto;
    position: relative;
    animation: zoomIn 8s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
}
.front{
background-image: url('../images/front.png');
background-repeat: no-repeat;
background-position: center center;
background-size: cover;  
}
/* Zoom animation for background */
@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Overlay with gradient animation */
.page-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.2) 0%, 
        rgba(0,0,0,0.1) 50%, 
        rgba(0,0,0,0.3) 100%
    );
    animation: gradientShift 10s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(135deg, 
            rgba(0,0,0,0.2) 0%, 
            rgba(0,0,0,0.1) 50%, 
            rgba(0,0,0,0.3) 100%
        );
    }
    50% {
        background: linear-gradient(225deg, 
            rgba(0,0,0,0.3) 0%, 
            rgba(0,0,0,0.1) 50%, 
            rgba(0,0,0,0.2) 100%
        );
    }
    100% {
        background: linear-gradient(135deg, 
            rgba(0,0,0,0.1) 0%, 
            rgba(0,0,0,0.3) 50%, 
            rgba(0,0,0,0.1) 100%
        );
    }
}

/* =====================================================
   SNIPPET IMAGES ANIMATIONS
===================================================== */

.front-snippet {
    width: 150px;
    position: absolute;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    z-index: 10;
}

/* Individual positions with different animation delays */
#iot-snippet {
    top: 220px;
    left: 120px;
    animation-delay: 0s;
}

#it-snippet {
    right: 20px;
    top: 50px;
    animation-delay: 0.5s;
}

#ss-snippet {
    top: 220px;
    right: 20px;
    animation-delay: 1s;
}


/* Hover effects for snippets */
.front-snippet:hover {
    transform: scale(1.01) translateY(-10px) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 20;
    animation-play-state: paused;
}

/* =====================================================
   SNIPPET LABELS
===================================================== */

.snippet-label {
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: labelPulse 3s ease-in-out infinite;
    z-index: 11;
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s ease;
}

.front-snippet:hover + .snippet-label {
    opacity: 1;
    transform: translateY(-10px);
}

/* Position labels near their images */
#iot-label {
    top: 310px;
    left: 180px;
    animation-delay: 0s;
}

#it-label {
    right: 180px;
    top: 140px;
    animation-delay: 0.5s;
}

#ss-label {
    top: 310px;
    right: 180px;
    animation-delay: 1s;
}

@keyframes labelPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* =====================================================
   TEXT ANIMATIONS
===================================================== */

.page-title {
    text-align: center;
    padding: 10px 20px;
    animation: titleSlideIn 1.2s ease-out;
    position: absolute;
    top: 120px;
    width: 40%;
    left: 2%;
}

/* Animated underline for heading */
.page-title h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #ffd93d, #6bcb77, #4d96ff);
    background-size: 300% 100%;
    animation: underlineGrow 2s ease-out forwards, gradientMove 3s ease-in-out infinite 2s;
}

@keyframes underlineGrow {
    0% {
        width: 0;
    }
    100% {
        width: 80%;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px rgba(77, 150, 255, 0.1);
    }
    100% {
        text-shadow: 0 0 40px rgba(77, 150, 255, 0.2);
    }
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    animation: subtitleFade 1.5s ease-out 0.5s both;
}

@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   MAIN PAGE ANIMATIONS
===================================================== */

@keyframes pageFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 920px) {
    .page-image-wrapper {
     height: 400px   
    }
    .page-title {
    text-align: left;
    padding: 10px 0px;
    top: 70px;
    width: 80%;
    left: 0;
    }
    .page-image {
     height: 400px;
     right: 30px;
     position: absolute !important;
    }
    
    .front-snippet {
        width: 120px;
    }
    
    #iot-snippet {
        top: 180px;
        left: 10px;
    }
    
    #it-snippet {
        right: 100px;
        top: 180px;
        left: 160px;
    }
    
    #ss-snippet {
       top: 320px;
        right: 100px;
        left: 50px;
    }
    
    .page-title h1 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .page-image-wrapper{
    height: 550px
    }
     .page-title {
    text-align: left;
    padding: 10px 0px;
    top: 70px;
    width: 100%;
    left: 0;
    }
    .page-image {
        height: 350px;
        top: 130px;
        left: 0;
        width: 100%;
    }
    
    .front-snippet {
        width: 90px;
    }
    
    #iot-snippet {
        top: 500px;
        left: 10%;
    }
    
    #it-snippet {
        left: 40%;
        top: 500px;
    }
    
    #ss-snippet {
        top: 500px;
        left:75%;
    }
    
    .page-title h1 {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}
/*
@media (max-width: 480px) {
    .page-image {
        height: 250px;
    }
    
    .front-snippet {
        width: 60px;
    }
    
    #iot-snippet {
        top: 110px;
        left: 20px;
    }
    
    #it-snippet {
        right: 20px;
        top: 20px;
    }
    
    #ss-snippet {
        top: 110px;
        right: 20px;
    }
    
    .page-title h1 {
        font-size: 1.2rem;
    }
} */
/*front page */
/* =====================================================
   MAIN PAGE CONTAINER
===================================================== */

.main-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease-out;
}

/* Decorative gradient border */
.content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-size: 300% 100%;
    animation: gradientSlide 4s ease-in-out infinite;
}

/* =====================================================
   SECTION BADGE
===================================================== */

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
    animation: fadeInDown 0.6s ease-out;
}

/* =====================================================
   SECTION TITLE
===================================================== */

.section-title {
    font-size: 25px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4d96ff, #6bcb77);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

/* =====================================================
   MAIN TEXT PARAGRAPH
===================================================== */

.main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    margin: 30px 0 0 0;
    padding: 0;
    position: relative;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* First letter styling */
.main-text::first-letter {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4d96ff;
    float: left;
    line-height: 1;
    margin-right: 10px;
    text-shadow: 0 4px 20px rgba(77, 150, 255, 0.2);
}

/* Highlighted text */
.main-text .highlight {
    color: #4d96ff;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.main-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4d96ff, #6bcb77);
    border-radius: 2px;
    animation: highlightPulse 2s ease-in-out infinite;
}

/* =====================================================
   STATS SECTION
===================================================== */

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px dashed #e0e0e0;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(77, 150, 255, 0.05), 
        transparent
    );
    transition: all 0.6s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    animation: countUp 2s ease-out 0.8s both;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====================================================
   ANIMATIONS
===================================================== */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 60px;
    }
}

@keyframes highlightPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes gradientSlide {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 300% 0%;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .main-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .main-page {
        padding: 20px 15px;
    }
    
    .content-wrapper {
        padding: 40px 25px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title::after {
        width: 40px;
    }
    
    .main-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .main-text::first-letter {
        font-size: 2.8rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 30px 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .main-text {
        font-size: 0.9rem;
    }
    
    .main-text::first-letter {
        font-size: 2.2rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .main-text,
    .section-title,
    .section-badge,
    .stats-container,
    .stat-item {
        animation: none !important;
    }
}

/* =====================================================
   DARK MODE SUPPORT
===================================================== */

@media (prefers-color-scheme: dark) {
    .main-page {
    }
    
    .content-wrapper {
        background: rgb(255 255 255 / 6%);
        backdrop-filter: blur(10px);
        border: 1px solid rgb(255 255 255 / 0%);
    }
    
    .section-title {
        color: #ffffff;
    }
    
    .main-text {
        color: #ccc;
    }
    
    .stat-item {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .stat-label {
        color: #aaa;
    }
}




/* =====================================================
   SERVICES SECTION STYLES
===================================================== */

.services-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.services-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(77, 150, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* =====================================================
   SECTION HEADER
===================================================== */

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

.section-tag {
    display: inline-block;
    padding: 6px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 15px;
    animation: fadeInDown 0.6s ease-out;
}

.services-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    position: relative;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.services-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4d96ff, #6bcb77);
    border-radius: 2px;
    animation: expandCenter 1s ease-out 0.5s both;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 20px auto 0;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* =====================================================
   SERVICES GRID
===================================================== */

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

/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-card-inner {
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
}

/* Gradient border on hover */
.service-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4d96ff, #6bcb77);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

/* =====================================================
   SERVICE ICON
===================================================== */

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(77, 150, 255, 0.1), rgba(107, 203, 119, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: #4d96ff;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon svg {
    color: white;
}

/* =====================================================
   SERVICE CONTENT
===================================================== */

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    position: relative;
    padding-left: 25px;
    transition: all 0.3s ease;
}

.service-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #4d96ff;
    font-weight: 700;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li::before {
    color: #6bcb77;
    transform: translateX(3px);
}

.service-features li:hover {
    color: #1a1a2e;
    transform: translateX(5px);
}

/* =====================================================
   SERVICE BUTTON
===================================================== */

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(77, 150, 255, 0.25);
}

.service-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.6s ease;
}

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

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(77, 150, 255, 0.35);
    color: white;
}

.service-btn:active {
    transform: translateY(0);
}

.btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.service-btn:hover .btn-arrow {
    transform: translateX(5px);
}

/* =====================================================
   SERVICE NUMBER
===================================================== */

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(77, 150, 255, 0.05);
    line-height: 1;
    transition: all 0.4s ease;
    font-family: 'Arial Black', sans-serif;
}

.service-card:hover .service-number {
    color: rgba(77, 150, 255, 0.1);
    transform: scale(1.1);
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes expandCenter {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 1024px) {
    .services-title {
        font-size: 2.4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-subtitle {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 30px auto 0;
    }
    
    .service-card-inner {
        padding: 30px 25px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-number {
        font-size: 2.5rem;
        top: 15px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .services-title {
        font-size: 1.6rem;
    }
    
    .service-card-inner {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .service-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .service-card,
    .service-btn,
    .service-icon,
    .service-number,
    .services-title {
        animation: none !important;
        transition: none !important;
    }
}

.service-btn:focus-visible {
    outline: 2px solid #4d96ff;
    outline-offset: 2px;
}

/* =====================================================
   DARK MODE
===================================================== */

@media (prefers-color-scheme: dark) {
    .services-section {
        background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    }
    
    .services-title {
        color: #ffffff;
    }
    
    .services-subtitle {
        color: #aaa;
    }
    
    .service-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .service-card:hover {
        background: rgba(255, 255, 255, 0.08);
    }
    
    .service-content h3 {
        color: #ffffff;
    }
    
    .service-features li {
        color: #bbb;
    }
    
    .service-features li:hover {
        color: #ffffff;
    }
    
    .service-number {
        color: rgba(255, 255, 255, 0.03);
    }
}


/* =====================================================
   EXPERTISE SECTION - ENHANCED
===================================================== */

.expertise {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background patterns */
.expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(77, 150, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 203, 119, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 107, 107, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

/* Floating decoration */
.expertise::after {
    content: '✦';
    position: absolute;
    top: 10%;
    right: 5%;
    font-size: 8rem;
    color: rgba(77, 150, 255, 0.03);
    animation: floatDeco 8s ease-in-out infinite;
}

@keyframes floatDeco {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.expertise-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* =====================================================
   SECTION HEADER - ENHANCED
===================================================== */

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-badge {
    display: inline-block;
    padding: 8px 28px;
    background: linear-gradient(135deg, #4d96ff 0%, #6bcb77 100%);
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease-out;
    box-shadow: 0 4px 20px rgba(77, 150, 255, 0.3);
}

.section-title {
    font-size: 25px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    position: relative;
    display: block;
}

.section-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #777;
    max-width: 650px;
    margin: 0 auto 10px;
    line-height: 1.6;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.divider-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4d96ff);
    border-radius: 2px;
}

.divider-line:last-child {
    background: linear-gradient(90deg, #6bcb77, transparent);
}

.divider-icon {
    color: #4d96ff;
    font-size: 20px;
    animation: spinIcon 10s linear infinite;
}

@keyframes spinIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =====================================================
   EXPERTISE GRID
===================================================== */

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

/* =====================================================
   EXPERTISE CARD - ENHANCED
===================================================== */

.expertise-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.8s ease-out both;
    cursor: default;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.expertise-card:nth-child(1) { animation-delay: 0.1s; }
.expertise-card:nth-child(2) { animation-delay: 0.2s; }
.expertise-card:nth-child(3) { animation-delay: 0.3s; }
.expertise-card:nth-child(4) { animation-delay: 0.4s; }

.expertise-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(77, 150, 255, 0.1);
}

.expertise-card-inner {
    padding: 45px 35px 40px;
    position: relative;
    overflow: hidden;
}

/* Gradient border animation */
.expertise-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4d96ff, #6bcb77, #ffd93d, #ff6b6b);
    background-size: 300% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

.expertise-card:hover .expertise-card-inner::before {
    transform: scaleX(1);
    animation: gradientSlide 2s linear infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

/* Card background glow on hover */
.expertise-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(77, 150, 255, 0.03) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.expertise-card:hover::after {
    opacity: 1;
}

/* =====================================================
   EXPERTISE ICON - ENHANCED
===================================================== */

.expertise-icon-wrapper {
    position: relative;
    width: 85px;
    height: 85px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(77, 150, 255, 0.08), rgba(107, 203, 119, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover .expertise-icon-wrapper {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(77, 150, 255, 0.3);
}

.expertise-icon {
    font-size: 36px;
    color: #4d96ff;
    transition: all 0.5s ease;
}

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

/* Icon shimmer effect */
.icon-shimmer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.expertise-card:hover .icon-shimmer {
    opacity: 1;
    animation: shimmerRotate 3s linear infinite;
}

@keyframes shimmerRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* =====================================================
   EXPERTISE CONTENT - ENHANCED
===================================================== */

.expertise-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.expertise-card:hover .expertise-content h3 {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise-description p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0 0 15px 0;
}

.expertise-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-features li {
    padding: 6px 0;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: all 0.3s ease;
}

.expertise-features li i {
    color: #4d96ff;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-features li i {
    color: #6bcb77;
    transform: scale(1.2);
}

.expertise-features li:hover {
    color: #1a1a2e;
    transform: translateX(5px);
}

/* =====================================================
   EXPERTISE NUMBER - ENHANCED
===================================================== */

.expertise-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(77, 150, 255, 0.04);
    line-height: 1;
    transition: all 0.5s ease;
    font-family: 'Arial Black', sans-serif;
}

.expertise-card:hover .expertise-number {
    color: rgba(77, 150, 255, 0.08);
    transform: scale(1.2) translateY(-5px);
}

/* =====================================================
   EXPERTISE LINK - ENHANCED
===================================================== */

.expertise-link {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

.expertise-card:hover .expertise-link {
    opacity: 1;
    transform: translateY(0);
}

.expertise-link a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4d96ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.expertise-link a:hover {
    color: #6bcb77;
    gap: 15px;
}

.expertise-link a i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.expertise-link a:hover i {
    transform: translateX(8px);
}

/* =====================================================
   CALL TO ACTION
===================================================== */

.expertise-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(77, 150, 255, 0.05), rgba(107, 203, 119, 0.05));
    border-radius: 24px;
    border: 1px solid rgba(77, 150, 255, 0.1);
}

.expertise-cta p {
    font-size: 1.2rem;
    color: #1a1a2e;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(77, 150, 255, 0.4);
    color: white;
    gap: 18px;
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(8px);
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes expandCenter {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 1024px) {
    .expertise {
        padding: 80px 20px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .expertise-card-inner {
        padding: 35px 28px 30px;
    }
}

@media (max-width: 768px) {
    .expertise {
        padding: 60px 15px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .expertise-card-inner {
        padding: 30px 25px 25px;
    }
    
    .expertise-icon-wrapper {
        width: 75px;
        height: 75px;
        border-radius: 20px;
    }
    
    .expertise-icon {
        font-size: 30px;
    }
    
    .expertise-content h3 {
        font-size: 1.4rem;
    }
    
    .expertise-number {
        font-size: 3rem;
        top: 20px;
        right: 20px;
    }
    
    .expertise-features li {
        font-size: 0.85rem;
    }
    
    .expertise-cta {
        padding: 30px 20px;
        margin-top: 40px;
    }
    
    .expertise-cta p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .expertise::after {
        font-size: 4rem;
        top: 5%;
        right: 3%;
    }
}

@media (max-width: 480px) {
    .expertise {
        padding: 40px 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-badge {
        font-size: 10px;
        padding: 5px 16px;
        letter-spacing: 2px;
    }
    
    .expertise-card-inner {
        padding: 25px 20px 20px;
    }
    
    .expertise-icon-wrapper {
        width: 65px;
        height: 65px;
        border-radius: 16px;
    }
    
    .expertise-icon {
        font-size: 26px;
    }
    
    .expertise-content h3 {
        font-size: 1.2rem;
    }
    
    .expertise-content p {
        font-size: 0.85rem;
    }
    
    .expertise-number {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;
    }
    
    .expertise-features li {
        font-size: 0.8rem;
        padding: 4px 0;
    }
    
    .expertise-cta p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .expertise-card,
    .expertise-link,
    .expertise-icon-wrapper,
    .expertise-number,
    .expertise-icon,
    .cta-button,
    .divider-icon,
    .expertise::after {
        animation: none !important;
        transition: none !important;
    }
    
    .expertise-card:hover {
        transform: none !important;
    }
}

.expertise-link a:focus-visible,
.cta-button:focus-visible {
    outline: 3px solid #4d96ff;
    outline-offset: 3px;
    border-radius: 4px;
}

/* =====================================================
   DARK MODE SUPPORT
===================================================== */

@media (prefers-color-scheme: dark) {
    .expertise {
        background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    }
    
    .section-title {
        color: #ffffff;
    }
    
    .section-subtitle {
        color: #aaa;
    }
    
    .expertise-card {
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .expertise-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.1);
    }
    
    .expertise-content h3 {
        color: #ffffff;
    }
    
    .expertise-description p {
        color: #bbb;
    }
    
    .expertise-features li {
        color: #aaa;
    }
    
    .expertise-features li:hover {
        color: #ffffff;
    }
    
    .expertise-number {
        color: rgba(255, 255, 255, 0.03);
    }
    
    .expertise-icon-wrapper {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .expertise-link {
        border-top-color: rgba(255, 255, 255, 0.05);
    }
    
    .expertise-cta {
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.05);
    }
    
    .expertise-cta p {
        color: #ffffff;
    }
    
    .expertise::after {
        color: rgba(255, 255, 255, 0.02);
    }
}

/* =====================================================
   FOOTER STYLES
===================================================== */

.footer {
    background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 30%, #16213e 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 0;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Animated gradient line at top */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        #4d96ff, 
        #6bcb77, 
        #ffd93d, 
        #ff6b6b, 
        #9b59b6, 
        #4d96ff
    );
    background-size: 300% 100%;
    animation: gradientSlide 4s ease-in-out infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}

/* Animated background circles */
.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(77, 150, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px;
    position: relative;
    z-index: 1;
}

/* =====================================================
   FOOTER TOP
===================================================== */

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top-item {
    animation: fadeInUp 0.8s ease-out both;
}

.footer-top-item:nth-child(1) { animation-delay: 0.1s; }
.footer-top-item:nth-child(2) { animation-delay: 0.2s; }
.footer-top-item:nth-child(3) { animation-delay: 0.3s; }
.footer-top-item:nth-child(4) { animation-delay: 0.4s; }

/* =====================================================
   COMPANY INFO
===================================================== */

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

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-brand span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.company-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    max-width: 350px;
}

.company-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.contact-item i {
    width: 20px;
    color: #4d96ff;
    font-size: 16px;
}

/* =====================================================
   FOOTER HEADINGS
===================================================== */

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #4d96ff, #6bcb77);
    border-radius: 2px;
}

.heading-icon {
    color: #4d96ff;
}

/* =====================================================
   FOOTER LINKS
===================================================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.footer-link::before {
    content: '›';
    color: #4d96ff;
    font-weight: 700;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(8px);
}

.footer-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-link.active {
    color: #4d96ff;
    font-weight: 600;
}

.footer-link.active::before {
    opacity: 1;
    transform: translateX(0);
}

/* Staff login special styling */
.staff-login {
    background: linear-gradient(135deg, rgba(77, 150, 255, 0.1), rgba(107, 203, 119, 0.1));
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(77, 150, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.staff-login::before {
    content: '🔒';
    opacity: 1;
    transform: none;
}

.staff-login:hover {
    background: linear-gradient(135deg, rgba(77, 150, 255, 0.2), rgba(107, 203, 119, 0.2));
    border-color: rgba(77, 150, 255, 0.4);
    transform: translateX(5px);
}

/* =====================================================
   SOCIAL LINKS
===================================================== */

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.social-link {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 18px;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
}

.social-link .social-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.social-link:hover .social-tooltip {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* Individual social colors */
.social-link.facebook:hover {
    background: #1877f2;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
}

.social-link.twitter:hover {
    background: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3);
}

.social-link.linkedin:hover {
    background: #0a66c2;
    box-shadow: 0 10px 30px rgba(10, 102, 194, 0.3);
}

.social-link.youtube:hover {
    background: #ff0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.social-link.whatsapp:hover {
    background: #25d366;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* =====================================================
   NEWSLETTER
===================================================== */

.newsletter {
    margin-top: 10px;
}

.newsletter-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: #4d96ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(77, 150, 255, 0.1);
}

.newsletter-form button {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.3);
}

.newsletter-form button:active {
    transform: scale(0.95);
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    padding-top: 30px;
    margin-top: 10px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright-text .brand-name {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Legal links */
.legal {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.legal-link:hover {
    color: #4d96ff;
}

.legal-separator {
    color: rgba(255, 255, 255, 0.15);
}

/* Developed by */
.developed-text {
    display: flex;
    align-items: center;
    gap: 6px;
}

.heart-icon {
    color: #ff6b6b;
    animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

.developer-link {
    color: #4d96ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.developer-link:hover {
    color: #6bcb77;
}

/* =====================================================
   BACK TO TOP BUTTON
===================================================== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(77, 150, 255, 0.4);
}

.back-to-top:active {
    transform: scale(0.95);
}

/* =====================================================
   ANIMATIONS
===================================================== */

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

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-container {
        padding: 40px 20px 20px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .company-description {
        max-width: 100%;
        margin: 0 auto 20px;
    }
    
    .company-contact {
        align-items: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-heading {
        justify-content: center;
    }
    
    .footer-link {
        justify-content: center;
    }
    
    .footer-link::before {
        display: none;
    }
    
    .footer-link:hover {
        transform: translateX(0);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .legal {
        justify-content: center;
    }
    
    .developed-text {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 30px 15px 15px;
    }
    
    .footer-top {
        gap: 30px;
        padding-bottom: 30px;
    }
    
    .footer-brand {
        font-size: 1.2rem;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    
    .company-description {
        font-size: 0.85rem;
    }
    
    .footer-heading {
        font-size: 1rem;
    }
    
    .footer-link {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .newsletter-form input {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
    
    .newsletter-form button {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom-item {
        font-size: 0.75rem;
    }
    
    .legal {
        gap: 8px;
    }
    
    .legal-link {
        font-size: 0.75rem;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .footer::before,
    .social-link,
    .footer-link,
    .contact-item,
    .newsletter-form button,
    .back-to-top,
    .heart-icon {
        animation: none !important;
        transition: none !important;
    }
}

.footer-link:focus-visible,
.social-link:focus-visible,
.legal-link:focus-visible,
.developer-link:focus-visible,
.newsletter-form input:focus-visible,
.newsletter-form button:focus-visible,
.back-to-top:focus-visible {
    outline: 2px solid #4d96ff;
    outline-offset: 2px;
}

/* =====================================================
   DARK MODE - Already dark themed
===================================================== */

/* The footer is already dark themed, 
   but we can add some variations */

@media (prefers-color-scheme: light) {
    /* Footer remains dark for contrast */
    .footer {
        background: linear-gradient(180deg, #0a0a15 0%, #14142a 100%);
    }
}


/* =====================================================
   INFORMATION TECHNOLOGY PAGE
===================================================== */

.it-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   PAGE INTRO
===================================================== */

.page-intro {
    padding: 60px 0 40px;
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
}

.intro-badge {
    display: inline-block;
    padding: 6px 24px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.intro-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.intro-divider .divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4d96ff);
    border-radius: 2px;
}

.intro-divider .divider-line:last-child {
    background: linear-gradient(90deg, #6bcb77, transparent);
}

.intro-divider .divider-icon {
    color: #4d96ff;
    font-size: 24px;
    animation: spinIcon 10s linear infinite;
}

@keyframes spinIcon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 850px;
    margin: 0 auto 30px;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 20px;
}

.intro-stats .stat-item {
    text-align: center;
}

.intro-stats .stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-stats .stat-label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
}

/* =====================================================
   SERVICE SECTIONS
===================================================== */

.it-content {
    margin-top: 20px;
}

.service-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out both;
}

.service-section:nth-child(1) { animation-delay: 0.1s; }
.service-section:nth-child(2) { animation-delay: 0.2s; }
.service-section:nth-child(3) { animation-delay: 0.3s; }
.service-section:nth-child(4) { animation-delay: 0.4s; }
.service-section:nth-child(5) { animation-delay: 0.5s; }

.service-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-section.reverse .service-container {
    flex-direction: row-reverse;
}

/* =====================================================
   SERVICE IMAGE
===================================================== */

.service-image-wrapper {
    flex: 1;
    min-width: 0;
}

.service-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
}

.overlay-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* =====================================================
   SERVICE CONTENT
===================================================== */

.service-content {
    flex: 1;
    min-width: 0;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(77, 150, 255, 0.08);
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.service-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
    padding: 8px 12px;
    background: rgba(77, 150, 255, 0.04);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: rgba(77, 150, 255, 0.08);
    transform: translateX(5px);
}

.service-features li i {
    color: #4d96ff;
    font-size: 16px;
}

/* =====================================================
   PARTNERS SECTION
===================================================== */

.partners-section {
    padding: 80px 0 60px;
}

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

.partners-badge {
    display: inline-block;
    padding: 6px 24px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.partners-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.partners-subtitle {
    color: #888;
    font-size: 1.05rem;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 20px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-width: 100px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.partner-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.partner-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #555;
}

/* =====================================================
   WHY CHOOSE SECTION
===================================================== */

.why-choose {
    padding: 80px 0 60px;
}

.why-choose-container {
    display: flex;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 24px;
    padding: 50px;
}

.why-choose-content {
    flex: 1;
}

.why-badge {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.why-choose-content h2 span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.why-feature i {
    font-size: 24px;
    color: #4d96ff;
    margin-top: 2px;
}

.why-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.why-feature p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.why-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.3);
}

.why-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(77, 150, 255, 0.4);
    color: white;
    gap: 18px;
}

.why-choose-image {
    flex: 0 0 300px;
}

.image-placeholder {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
}

.image-placeholder h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 1024px) {
    .intro-title {
        font-size: 2.5rem;
    }
    
    .service-container {
        gap: 30px;
    }
    
    .service-image img {
        height: 280px;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .why-choose-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .page-intro {
        padding: 40px 0 20px;
    }
    
    .intro-title {
        font-size: 2rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .intro-stats {
        gap: 30px;
    }
    
    .intro-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .service-section {
        padding: 40px 0;
    }
    
    .service-container {
        flex-direction: column !important;
        gap: 25px;
    }
    
    .service-image img {
        height: 220px;
    }
    
    .service-number {
        font-size: 2.2rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        gap: 15px;
        padding: 15px;
    }
    
    .partner-item {
        min-width: 80px;
        padding: 12px 18px;
    }
    
    .partner-item img {
        width: 40px;
        height: 40px;
    }
    
    .why-choose-container {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .why-choose-content h2 {
        font-size: 2rem;
    }
    
    .why-features {
        grid-template-columns: 1fr;
    }
    
    .why-choose-image {
        flex: none;
        width: 100%;
    }
    
    .image-placeholder {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .it-page {
        padding: 0 10px;
    }
    
    .intro-title {
        font-size: 1.6rem;
    }
    
    .intro-text {
        font-size: 0.9rem;
    }
    
    .intro-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .intro-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .service-image img {
        height: 180px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description p {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .partners-title {
        font-size: 1.5rem;
    }
    
    .partner-item {
        min-width: 60px;
        padding: 10px 14px;
    }
    
    .partner-item img {
        width: 30px;
        height: 30px;
    }
    
    .partner-name {
        font-size: 0.7rem;
    }
    
    .why-choose-content h2 {
        font-size: 1.6rem;
    }
    
    .why-choose-content > p {
        font-size: 0.9rem;
    }
    
    .why-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .page-intro,
    .service-section,
    .intro-divider .divider-icon,
    .service-image,
    .partner-item,
    .why-feature {
        animation: none !important;
        transition: none !important;
    }
}

.service-features li:focus-visible,
.why-cta:focus-visible {
    outline: 2px solid #4d96ff;
    outline-offset: 2px;
}

/* =====================================================
   DARK MODE SUPPORT
===================================================== */

@media (prefers-color-scheme: dark) {
    .intro-title {
        color: #ffffff;
    }
    
    .intro-text {
        color: #bbb;
    }
    
    .service-title {
        color: #ffffff;
    }
    
    .service-description p {
        color: #bbb;
    }
    
    .service-features li {
        color: #ccc;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .service-features li:hover {
        background: rgba(255, 255, 255, 0.08);
    }
    
    .service-section {
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }
    
    .partners-grid {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .partner-item {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .partner-name {
        color: #aaa;
    }
    
    .why-choose-container {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .why-choose-content h2 {
        color: #ffffff;
    }
    
    .why-choose-content > p {
        color: #bbb;
    }
    
    .why-feature {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .why-feature h4 {
        color: #ffffff;
    }
    
    .partners-title {
        color: #ffffff;
    }
    
    .partners-subtitle {
        color: #aaa;
    }
}


/* =====================================================
   INTERNET OF THINGS (IOT) PAGE
===================================================== */

.iot-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   PAGE HEADER / HERO
===================================================== */

.page-header {
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    animation: fadeInDown 0.8s ease-out;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.header-content {
    flex: 1;
}

.header-badge {
    display: inline-block;
    padding: 6px 24px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.header-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.header-divider .divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4d96ff);
    border-radius: 2px;
}

.header-divider .divider-line:last-child {
    background: linear-gradient(90deg, #6bcb77, transparent);
}

.header-divider .divider-icon {
    color: #4d96ff;
    font-size: 24px;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.header-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.header-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(77, 150, 255, 0.4);
    color: white;
    gap: 15px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: #4d96ff;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #4d96ff;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #4d96ff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.2);
}

/* Header Visual / IoT Animation */
.header-visual {
    flex: 0 0 400px;
    height: 400px;
    position: relative;
}

.iot-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.iot-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(77, 150, 255, 0.1);
    animation: rotateCircle 20s linear infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
}

.circle-2 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 15s;
    animation-direction: reverse;
}

.circle-3 {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 10s;
}

@keyframes rotateCircle {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.iot-device {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(77, 150, 255, 0.3);
    animation: floatDevice 3s ease-in-out infinite;
}

.device-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.device-2 {
    top: 15%;
    right: 10%;
    animation-delay: 0.5s;
}

.device-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.device-4 {
    bottom: 15%;
    right: 15%;
    animation-delay: 1.5s;
}

.device-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.3s;
    width: 70px;
    height: 70px;
    font-size: 28px;
}

@keyframes floatDevice {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* =====================================================
   PAGE MESSAGE
===================================================== */

.page-message {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 24px;
    margin: 20px 0 40px;
}

.message-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.message-icon {
    font-size: 48px;
    color: #4d96ff;
    margin-bottom: 20px;
    animation: pulseIcon 2s ease-in-out infinite;
}

.message-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.message-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.message-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
    margin: 0 auto 30px;
}

.message-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.message-stats .stat-item {
    text-align: center;
}

.message-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.message-stats .stat-label {
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
}

/* =====================================================
   SERVICE SECTIONS
===================================================== */

.iot-services {
    margin: 40px 0;
}

.service-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out both;
}

.service-section:nth-child(1) { animation-delay: 0.1s; }
.service-section:nth-child(2) { animation-delay: 0.2s; }
.service-section:nth-child(3) { animation-delay: 0.3s; }
.service-section:nth-child(4) { animation-delay: 0.4s; }
.service-section:nth-child(5) { animation-delay: 0.5s; }

.service-container {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-section.reverse .service-container {
    flex-direction: row-reverse;
}

/* Service Image */
.service-image-wrapper {
    flex: 1;
    min-width: 0;
}

.service-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    color: white;
}

.overlay-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.overlay-icon {
    font-size: 16px;
}

/* Service Content */
.service-content {
    flex: 1;
    min-width: 0;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(77, 150, 255, 0.08);
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}

.service-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #444;
    padding: 8px 12px;
    background: rgba(77, 150, 255, 0.04);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: rgba(77, 150, 255, 0.08);
    transform: translateX(5px);
}

.service-features li i {
    color: #4d96ff;
    font-size: 16px;
}

/* =====================================================
   APPLICATIONS SECTION
===================================================== */

.applications-section {
    padding: 80px 0 60px;
}

.applications-header {
    text-align: center;
    margin-bottom: 50px;
}

.apps-badge {
    display: inline-block;
    padding: 6px 24px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.apps-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.apps-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.apps-subtitle {
    color: #888;
    font-size: 1.05rem;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
}

.app-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.app-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.app-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(77, 150, 255, 0.1), rgba(107, 203, 119, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #4d96ff;
    transition: all 0.3s ease;
}

.app-item:hover .app-icon {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    transform: scale(1.1);
}

.app-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.app-item p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* =====================================================
   WHY CHOOSE SECTION
===================================================== */

.why-choose {
    padding: 80px 0 60px;
}

.why-choose-container {
    display: flex;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 24px;
    padding: 50px;
}

.why-choose-content {
    flex: 1;
}

.why-badge {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.why-choose-content h2 span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-content > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.why-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.why-feature i {
    font-size: 24px;
    color: #4d96ff;
    margin-top: 2px;
}

.why-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.why-feature p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.why-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.3);
}

.why-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(77, 150, 255, 0.4);
    color: white;
    gap: 18px;
}

.why-choose-visual {
    flex: 0 0 300px;
}

.visual-content {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: white;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.visual-content i {
    font-size: 60px;
    margin-bottom: 20px;
}

.visual-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.visual-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0 0 30px 0;
}

.visual-stats {
    display: flex;
    gap: 30px;
}

.vs-item {
    text-align: center;
}

.vs-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
}

.vs-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 1024px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }
    
    .header-title {
        font-size: 2.5rem;
    }
    
    .header-divider {
        justify-content: center;
    }
    
    .header-actions {
        justify-content: center;
    }
    
    .header-visual {
        flex: none;
        width: 100%;
        max-width: 400px;
        height: 350px;
        margin: 0 auto;
    }
    
    .message-title {
        font-size: 2rem;
    }
    
    .service-container {
        gap: 30px;
    }
    
    .service-image img {
        height: 260px;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .why-choose-container {
        flex-direction: column;
        padding: 40px;
    }
    
    .why-choose-visual {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 20px;
    }
    
    .header-title {
        font-size: 2rem;
    }
    
    .header-text {
        font-size: 1rem;
    }
    
    .header-visual {
        height: 280px;
    }
    
    .iot-device {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .device-5 {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .message-title {
        font-size: 1.6rem;
    }
    
    .message-text {
        font-size: 1rem;
    }
    
    .message-stats {
        gap: 30px;
    }
    
    .service-section {
        padding: 40px 0;
    }
    
    .service-container {
        flex-direction: column !important;
        gap: 25px;
    }
    
    .service-image img {
        height: 220px;
    }
    
    .service-number {
        font-size: 2.2rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .applications-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }
    
    .why-choose-container {
        padding: 30px 20px;
    }
    
    .why-choose-content h2 {
        font-size: 2rem;
    }
    
    .why-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .iot-page {
        padding: 0 10px;
    }
    
    .header-title {
        font-size: 1.6rem;
    }
    
    .header-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .header-visual {
        height: 220px;
        max-width: 300px;
    }
    
    .iot-device {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .device-5 {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .iot-circle {
        display: none;
    }
    
    .message-title {
        font-size: 1.3rem;
    }
    
    .message-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .message-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .service-image img {
        height: 180px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description p {
        font-size: 0.9rem;
    }
    
    .service-features li {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .apps-title {
        font-size: 1.5rem;
    }
    
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-content h2 {
        font-size: 1.6rem;
    }
    
    .why-choose-content > p {
        font-size: 0.9rem;
    }
    
    .why-cta {
        width: 100%;
        justify-content: center;
    }
    
    .visual-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .page-header,
    .service-section,
    .header-divider .divider-icon,
    .iot-device,
    .iot-circle,
    .service-image,
    .app-item,
    .why-feature {
        animation: none !important;
        transition: none !important;
    }
}

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.why-cta:focus-visible {
    outline: 3px solid #4d96ff;
    outline-offset: 3px;
}

/* =====================================================
   DARK MODE SUPPORT
===================================================== */

@media (prefers-color-scheme: dark) {
    .header-title {
        color: #ffffff;
    }
    
    .header-text {
        color: #bbb;
    }
    
    .page-message {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .message-title {
        color: #ffffff;
    }
    
    .message-text {
        color: #bbb;
    }
    
    .service-title {
        color: #ffffff;
    }
    
    .service-description p {
        color: #bbb;
    }
    
    .service-features li {
        color: #ccc;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .service-features li:hover {
        background: rgba(255, 255, 255, 0.08);
    }
    
    .service-section {
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }
    
    .app-item {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .app-item h4 {
        color: #ffffff;
    }
    
    .app-item p {
        color: #aaa;
    }
    
    .apps-title {
        color: #ffffff;
    }
    
    .apps-subtitle {
        color: #aaa;
    }
    
    .why-choose-container {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .why-choose-content h2 {
        color: #ffffff;
    }
    
    .why-choose-content > p {
        color: #bbb;
    }
    
    .why-feature {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .why-feature h4 {
        color: #ffffff;
    }
    
    .why-feature p {
        color: #aaa;
    }
}

/* =====================================================
   COMPANY / ABOUT US PAGE
===================================================== */

.page-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   HERO SECTION
===================================================== */

.company-hero {
    padding: 60px 0 40px;
    position: relative;
    animation: fadeInDown 0.8s ease-out;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 24px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-divider .divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4d96ff);
    border-radius: 2px;
}

.hero-divider .divider-line:last-child {
    background: linear-gradient(90deg, #6bcb77, transparent);
}

.hero-divider .divider-icon {
    color: #4d96ff;
    font-size: 24px;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    flex: 0 0 450px;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a2e;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card i {
    color: #4d96ff;
    font-size: 18px;
}

.card-1 {
    top: 20px;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 30px;
    right: -20px;
    animation-delay: 0.5s;
}

.card-3 {
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    animation-delay: 1s;
}

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

/* =====================================================
   COMPANY IMAGE SECTION
===================================================== */

.company-image-section {
    padding: 20px 0 40px;
}

.image-container {
    max-width: 900px;
    margin: 0 auto;
}

.company-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.company-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.image-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.overlay-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.overlay-item i {
    font-size: 20px;
    color: #4d96ff;
}

/* =====================================================
   CONTENT SECTIONS
===================================================== */

.company-content {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.content-badge {
    display: inline-block;
    padding: 6px 24px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
}

.content-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   TIMELINE / HISTORY
===================================================== */

.timeline-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4d96ff, #6bcb77);
    margin: 15px auto 0;
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item:hover {
    transform: translateX(10px);
    background: #f0f1f3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.timeline-dot {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    margin-top: 5px;
    box-shadow: 0 0 0 4px rgba(77, 150, 255, 0.2);
}

.timeline-content {
    flex: 1;
}

.timeline-year {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 800;
    color: #4d96ff;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* =====================================================
   APPROACH SECTION
===================================================== */

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.approach-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.approach-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.approach-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(77, 150, 255, 0.1), rgba(107, 203, 119, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #4d96ff;
    transition: all 0.3s ease;
}

.approach-item:hover .approach-icon {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.approach-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
}

.approach-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* =====================================================
   SUCCESS SECTION
===================================================== */

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.success-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.success-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.success-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(77, 150, 255, 0.08);
    line-height: 1;
    font-family: 'Arial Black', sans-serif;
    flex-shrink: 0;
}

.success-content i {
    font-size: 24px;
    color: #4d96ff;
    margin-bottom: 10px;
}

.success-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
}

.success-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* =====================================================
   MANAGEMENT MESSAGE
===================================================== */

.region-message {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 24px;
    margin: 20px 0;
}

.message-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.message-quote {
    position: relative;
    padding: 0 40px;
}

.quote-icon {
    font-size: 40px;
    color: #4d96ff;
    opacity: 0.3;
}

.quote-icon.right {
    transform: rotate(180deg);
}

.message-quote blockquote {
    margin: 20px 0;
}

.message-quote blockquote p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #1a1a2e;
    font-style: italic;
    font-weight: 500;
}

.message-quote blockquote footer {
    margin-top: 20px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
}

.footer-title {
    font-size: 0.9rem;
    color: #888;
}

.message-signature {
    margin-top: 20px;
}

.message-signature img {
    max-height: 60px;
    opacity: 0.7;
}

/* =====================================================
   ATTRIBUTES / VALUES SECTION
===================================================== */

.company-attributes-container {
    padding: 60px 0;
}

.attributes-header {
    text-align: center;
    margin-bottom: 50px;
}

.attributes-badge {
    display: inline-block;
    padding: 6px 24px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.attributes-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
}

.attributes-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.attributes-subtitle {
    font-size: 1.05rem;
    color: #888;
    margin-top: 10px;
}

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

.company-attributes {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.company-attributes:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.attribute-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.attribute-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.company-attributes:hover .attribute-image img {
    transform: scale(1.05);
}

.attribute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(77, 150, 255, 0.3), rgba(107, 203, 119, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.company-attributes:hover .attribute-overlay {
    opacity: 1;
}

.attribute-overlay i {
    font-size: 48px;
    color: white;
}

.attribute-content {
    padding: 25px;
    position: relative;
}

.attribute-number {
    position: absolute;
    top: -15px;
    right: 25px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(77, 150, 255, 0.04);
    font-family: 'Arial Black', sans-serif;
}

.attribute-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
}

.attribute-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* =====================================================
   CTA SECTION
===================================================== */

.company-cta {
    padding: 60px 0 40px;
}

.cta-container {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(77, 150, 255, 0.4);
    color: white;
    gap: 18px;
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-divider {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        flex: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image-wrapper img {
        height: 300px;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .company-hero {
        padding: 40px 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-image-wrapper img {
        height: 250px;
    }
    
    .company-image-wrapper img {
        height: 300px;
    }
    
    .image-overlay-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 20px;
    }
    
    .overlay-item {
        font-size: 0.9rem;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .timeline-dot {
        display: none;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
    }
    
    .success-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .message-quote blockquote p {
        font-size: 1.1rem;
    }
    
    .message-quote {
        padding: 0 20px;
    }
    
    .attributes-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .cta-container {
        padding: 40px 20px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-main {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-image-wrapper img {
        height: 200px;
    }
    
    .company-image-wrapper img {
        height: 220px;
    }
    
    .content-title {
        font-size: 1.6rem;
    }
    
    .overlay-item {
        font-size: 0.8rem;
    }
    
    .overlay-item i {
        font-size: 16px;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .approach-item {
        padding: 20px 15px;
    }
    
    .approach-item h4 {
        font-size: 1.1rem;
    }
    
    .success-item {
        padding: 20px;
    }
    
    .message-quote blockquote p {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 30px;
    }
    
    .attribute-content h3 {
        font-size: 1.1rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .company-hero,
    .company-attributes,
    .approach-item,
    .success-item,
    .timeline-item,
    .floating-card {
        animation: none !important;
        transition: none !important;
    }
}

.cta-button:focus-visible {
    outline: 3px solid #4d96ff;
    outline-offset: 3px;
}

/* =====================================================
   DARK MODE SUPPORT
===================================================== */

@media (prefers-color-scheme: dark) {
    .hero-title {
        color: #ffffff;
    }
    
    .hero-subtitle {
        color: #ccc;
    }
    
    .hero-text {
        color: #bbb;
    }
    
    .company-content {
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }
    
    .content-title {
        color: #ffffff;
    }
    
    .timeline-item {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .timeline-item:hover {
        background: rgba(255, 255, 255, 0.06);
    }
    
    .timeline-content p {
        color: #bbb;
    }
    
    .approach-item {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .approach-item h4 {
        color: #ffffff;
    }
    
    .approach-item p {
        color: #bbb;
    }
    
    .success-item {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .success-content h4 {
        color: #ffffff;
    }
    
    .success-content p {
        color: #bbb;
    }
    
    .region-message {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .message-quote blockquote p {
        color: #ffffff;
    }
    
    .company-attributes {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .attribute-content h3 {
        color: #ffffff;
    }
    
    .attribute-content p {
        color: #bbb;
    }
    
    .attributes-title {
        color: #ffffff;
    }
    
    .attributes-subtitle {
        color: #aaa;
    }
}


/* =====================================================
   CONTACT PAGE
===================================================== */

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

/* =====================================================
   CONTACT INFO WRAPPER
===================================================== */

.contact-info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    padding: 60px 0 40px;
    animation: fadeInUp 0.8s ease-out;
}

/* =====================================================
   CONTACT MESSAGE / INFO
===================================================== */

.contact-message {
    padding: 40px 30px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.contact-message:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.contact-header {
    margin-bottom: 25px;
}

.contact-badge {
    display: inline-block;
    padding: 6px 24px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.contact-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.contact-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-divider {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-divider .divider-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4d96ff);
    border-radius: 2px;
}

.contact-divider .divider-line:last-child {
    background: linear-gradient(90deg, #6bcb77, transparent);
}

.contact-divider .divider-icon {
    color: #4d96ff;
    font-size: 20px;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.contact-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f0f1f3;
    transform: translateX(5px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(77, 150, 255, 0.1), rgba(107, 203, 119, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4d96ff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    transform: scale(1.05);
}

.contact-info h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px 0;
}

.contact-info p {
    font-size: 1rem;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.5;
}

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

.contact-info a:hover {
    color: #6bcb77;
}

/* Social Media */
.contact-social h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-link {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 18px;
    color: #555;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: transparent;
    color: white;
}

.social-link .social-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
}

.social-link:hover .social-tooltip {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.social-link.facebook:hover { background: #1877f2; box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3); }
.social-link.instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); box-shadow: 0 10px 30px rgba(225, 48, 108, 0.3); }
.social-link.twitter:hover { background: #000000; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); }
.social-link.linkedin:hover { background: #0a66c2; box-shadow: 0 10px 30px rgba(10, 102, 194, 0.3); }
.social-link.youtube:hover { background: #ff0000; box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3); }
.social-link.whatsapp:hover { background: #25d366; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3); }

/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    padding: 40px 35px;
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.form-header h2 i {
    color: #4d96ff;
}

.form-header p {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

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

.contact-field {
    position: relative;
    margin-bottom: 20px;
}

.contact-field i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-field textarea + i {
    top: 20px;
    transform: none;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 14px 16px 14px 46px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
    color: #1a1a2e;
}

.contact-field textarea {
    padding-top: 18px;
    resize: vertical;
    min-height: 120px;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #4d96ff;
    background: white;
    box-shadow: 0 0 0 4px rgba(77, 150, 255, 0.08);
}

.contact-field input:focus + i,
.contact-field textarea:focus + i {
    color: #4d96ff;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #aaa;
}

.field-error {
    display: none;
    font-size: 0.8rem;
    color: #ff6b6b;
    margin-top: 5px;
}

.contact-field.error input,
.contact-field.error textarea {
    border-color: #ff6b6b;
    background: #fff5f5;
}

.contact-field.error .field-error {
    display: block;
}

.contact-field.full-width {
    grid-column: 1 / -1;
}

/* Form Actions */
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.3);
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(77, 150, 255, 0.4);
    gap: 18px;
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.submit-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-note {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-note i {
    color: #6bcb77;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.6s ease-out;
}

.success-icon {
    font-size: 60px;
    color: #6bcb77;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.success-message p {
    color: #888;
    margin-bottom: 25px;
}

.send-another {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #4d96ff;
    border-radius: 50px;
    color: #4d96ff;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.send-another:hover {
    background: #4d96ff;
    color: white;
}

/* =====================================================
   MAP SECTION
===================================================== */

.map-section {
    padding: 40px 0 60px;
}

.map-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.map-header {
    padding: 30px 35px 20px;
}

.map-badge {
    display: inline-block;
    padding: 4px 20px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.map-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
}

.map-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-wrapper {
    padding: 0 5px 5px;
}

.map-wrapper iframe {
    border-radius: 12px;
    display: block;
}

/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {
    padding: 20px 0 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-badge {
    display: inline-block;
    padding: 4px 20px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.faq-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
}

.faq-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-subtitle {
    color: #888;
    font-size: 1rem;
    margin-top: 10px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.faq-question {
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #1a1a2e;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    color: #4d96ff;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #4d96ff;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* =====================================================
   ANIMATIONS
===================================================== */

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

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 1024px) {
    .contact-info-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }
    
    .contact-message {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 0 15px;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-info-wrapper {
        padding: 40px 0 20px;
    }
    
    .contact-message {
        padding: 30px 20px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-header h2 {
        font-size: 1.4rem;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .submit-btn {
        justify-content: center;
    }
    
    .map-header {
        padding: 20px 20px 15px;
    }
    
    .map-title {
        font-size: 1.4rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .faq-title {
        font-size: 1.6rem;
    }
    
    .faq-question {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-container {
        padding: 0 10px;
    }
    
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 15px;
    }
    
    .form-header h2 {
        font-size: 1.2rem;
    }
    
    .contact-field input,
    .contact-field textarea {
        padding: 12px 14px 12px 40px;
        font-size: 0.85rem;
    }
    
    .submit-btn {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .map-wrapper iframe {
        height: 220px;
    }
    
    .faq-title {
        font-size: 1.3rem;
    }
    
    .faq-question {
        font-size: 0.85rem;
        padding: 12px 15px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        padding: 0 15px 15px;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .contact-info-wrapper,
    .social-link,
    .contact-item,
    .submit-btn,
    .faq-question i {
        animation: none !important;
        transition: none !important;
    }
}

.submit-btn:focus-visible,
.social-link:focus-visible,
.contact-field input:focus-visible,
.contact-field textarea:focus-visible,
.send-another:focus-visible {
    outline: 3px solid #4d96ff;
    outline-offset: 2px;
}

/* =====================================================
   DARK MODE SUPPORT
===================================================== */

@media (prefers-color-scheme: dark) {
    .contact-message {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .contact-title {
        color: #ffffff;
    }
    
    .contact-description {
        color: #bbb;
    }
    
    .contact-item {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .contact-item:hover {
        background: rgba(255, 255, 255, 0.06);
    }
    
    .contact-info p {
        color: #ddd;
    }
    
    .contact-info a {
        color: #4d96ff;
    }
    
    .contact-social h4 {
        color: #ffffff;
    }
    
    .social-link {
        color: #aaa;
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.05);
    }
    
    .contact-form-wrapper {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .form-header h2 {
        color: #ffffff;
    }
    
    .form-header p {
        color: #aaa;
    }
    
    .contact-field input,
    .contact-field textarea {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.05);
        color: #ffffff;
    }
    
    .contact-field input:focus,
    .contact-field textarea:focus {
        background: rgba(255, 255, 255, 0.08);
        border-color: #4d96ff;
    }
    
    .contact-field input::placeholder,
    .contact-field textarea::placeholder {
        color: #666;
    }
    
    .map-container {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .map-title {
        color: #ffffff;
    }
    
    .faq-item {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .faq-question {
        color: #ffffff;
    }
    
    .faq-answer p {
        color: #bbb;
    }
    
    .faq-title {
        color: #ffffff;
    }
    
    .faq-subtitle {
        color: #aaa;
    }
    
    .success-message h3 {
        color: #ffffff;
    }
    
    .success-message p {
        color: #bbb;
    }
}
/* =====================================================
   SERVICES PAGE
===================================================== */

.services-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   HERO SECTION
===================================================== */

.services-hero {
    padding: 60px 0 40px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 6px 24px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-divider .divider-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #4d96ff);
    border-radius: 2px;
}

.hero-divider .divider-line:last-child {
    background: linear-gradient(90deg, #6bcb77, transparent);
}

.hero-divider .divider-icon {
    color: #4d96ff;
    font-size: 24px;
    animation: pulseIcon 2s ease-in-out infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}

/* Hero Visual */
.hero-visual {
    flex: 0 0 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-grid-visual {
    position: relative;
    width: 350px;
    height: 350px;
}

.service-card-visual {
    position: absolute;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.4s ease;
    animation: floatVisual 3s ease-in-out infinite;
}

.service-card-visual:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card-visual i {
    font-size: 28px;
    color: #4d96ff;
}

.service-card-visual span {
    font-size: 11px;
    font-weight: 700;
    color: #1a1a2e;
}

.service-card-visual:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.service-card-visual:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); animation-delay: 0.5s; }
.service-card-visual:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.service-card-visual:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); animation-delay: 1.5s; }

.service-card-visual:nth-child(1):hover { transform: translateX(-50%) scale(1.1); }
.service-card-visual:nth-child(2):hover { transform: translateY(-50%) scale(1.1); }
.service-card-visual:nth-child(3):hover { transform: translateX(-50%) scale(1.1); }
.service-card-visual:nth-child(4):hover { transform: translateY(-50%) scale(1.1); }

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

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 40px rgba(77, 150, 255, 0.3);
    animation: pulseCenter 2s ease-in-out infinite;
}

@keyframes pulseCenter {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

/* =====================================================
   SERVICES OVERVIEW
===================================================== */

.services-overview {
    padding: 40px 0 60px;
}

.overview-container {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 24px;
    padding: 40px;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.overview-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.overview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.overview-number {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(77, 150, 255, 0.1);
    font-family: 'Arial Black', sans-serif;
    line-height: 1;
}

.overview-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 2px 0;
}

.overview-content p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

/* =====================================================
   SERVICE DETAILS
===================================================== */

.services-details {
    margin: 40px 0;
}

.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out both;
}

.service-detail:nth-child(1) { animation-delay: 0.1s; }
.service-detail:nth-child(2) { animation-delay: 0.2s; }
.service-detail:nth-child(3) { animation-delay: 0.3s; }
.service-detail:nth-child(4) { animation-delay: 0.4s; }

.service-detail-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-detail.reverse .service-detail-inner {
    flex-direction: row-reverse;
}

/* Service Icon */
.service-detail-icon {
    flex: 0 0 100px;
    text-align: center;
    position: relative;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(77, 150, 255, 0.1), rgba(107, 203, 119, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #4d96ff;
    transition: all 0.4s ease;
}

.service-detail:hover .icon-circle {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.3);
}

.service-tag {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

/* Service Content */
.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.service-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(77, 150, 255, 0.04);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #444;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(77, 150, 255, 0.08);
    transform: translateX(5px);
}

.feature-item i {
    color: #4d96ff;
    font-size: 14px;
}

/* =====================================================
   WHY CHOOSE SECTION
===================================================== */

.why-choose-services {
    padding: 80px 0 60px;
}

.why-choose-container {
    max-width: 1100px;
    margin: 0 auto;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-badge {
    display: inline-block;
    padding: 6px 24px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.why-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
}

.why-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-subtitle {
    color: #888;
    font-size: 1.05rem;
    margin-top: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.why-card {
    padding: 30px 25px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.why-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(77, 150, 255, 0.1), rgba(107, 203, 119, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #4d96ff;
    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    transform: scale(1.1);
}

.why-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px 0;
}

.why-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* =====================================================
   COMMITMENT SECTION
===================================================== */

.commitment-section {
    padding: 60px 0;
}

.commitment-container {
    display: flex;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 24px;
    padding: 50px;
}

.commitment-content {
    flex: 1;
}

.commitment-badge {
    display: inline-block;
    padding: 6px 20px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.commitment-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.commitment-title span {
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.commitment-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 15px;
}

.commitment-values {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0 30px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
}

.value-item i {
    color: #6bcb77;
}

.commitment-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #4d96ff, #6bcb77);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(77, 150, 255, 0.3);
}

.commitment-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(77, 150, 255, 0.4);
    color: white;
    gap: 18px;
}

.commitment-visual {
    flex: 0 0 200px;
    text-align: center;
}

.commitment-icon-wrapper {
    position: relative;
    display: inline-block;
}

.commitment-icon-wrapper i {
    font-size: 80px;
    color: #4d96ff;
    position: relative;
    z-index: 2;
}

.commitment-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid rgba(77, 150, 255, 0.2);
    animation: spinRing 10s linear infinite;
}

@keyframes spinRing {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.commitment-stats {
    margin-top: 20px;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.cs-item {
    text-align: center;
}

.cs-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.cs-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* =====================================================   RESPONSIVE DESIGN
===================================================== */

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-divider {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        flex: none;
        width: 100%;
        height: 300px;
    }
    
    .services-grid-visual {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    
    .overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-detail-inner {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .commitment-container {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-values {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-page {
        padding: 0 15px;
    }
    
    .services-hero {
        padding: 40px 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .services-grid-visual {
        width: 250px;
        height: 250px;
    }
    
    .service-card-visual {
        width: 80px;
        height: 80px;
    }
    
    .service-card-visual i {
        font-size: 22px;
    }
    
    .service-card-visual span {
        font-size: 10px;
    }
    
    .center-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .overview-container {
        padding: 25px 15px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .overview-item {
        padding: 12px 15px;
    }
    
    .overview-number {
        font-size: 1.5rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.6rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .why-title {
        font-size: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .commitment-title {
        font-size: 1.8rem;
    }
    
    .commitment-container {
        padding: 30px 20px;
    }
    
    .commitment-values {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .services-page {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-visual {
        height: 220px;
    }
    
    .services-grid-visual {
        width: 200px;
        height: 200px;
    }
    
    .service-card-visual {
        width: 65px;
        height: 65px;
    }
    
    .service-card-visual i {
        font-size: 18px;
    }
    
    .service-card-visual span {
        font-size: 8px;
    }
    
    .center-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .overview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .overview-item {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
    }
    
    .overview-content h3 {
        font-size: 0.9rem;
    }
    
    .overview-content p {
        font-size: 0.7rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.3rem;
    }
    
    .service-detail-text p {
        font-size: 0.9rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .why-title {
        font-size: 1.6rem;
    }
    
    .commitment-title {
        font-size: 1.4rem;
    }
    
    .commitment-cta {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {
    .services-hero,
    .service-detail,
    .why-card,
    .service-card-visual,
    .center-icon,
    .commitment-ring {
        animation: none !important;
        transition: none !important;
    }
}

.commitment-cta:focus-visible {
    outline: 3px solid #4d96ff;
    outline-offset: 3px;
}

/* =====================================================
   DARK MODE SUPPORT
===================================================== */

@media (prefers-color-scheme: dark) {
    .hero-title {
        color: #ffffff;
    }
    
    .hero-text {
        color: #bbb;
    }
    
    .services-overview .overview-container {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .overview-item {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .overview-content h3 {
        color: #ffffff;
    }
    
    .service-detail {
        border-bottom-color: rgba(255, 255, 255, 0.05);
    }
    
    .service-detail-content h2 {
        color: #ffffff;
    }
    
    .service-detail-text p {
        color: #bbb;
    }
    
    .feature-item {
        color: #ccc;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .feature-item:hover {
        background: rgba(255, 255, 255, 0.08);
    }
    
    .why-title {
        color: #ffffff;
    }
    
    .why-subtitle {
        color: #aaa;
    }
    
    .why-card {
        background: rgba(255, 255, 255, 0.03);
    }
    
    .why-card h4 {
        color: #ffffff;
    }
    
    .why-card p {
        color: #bbb;
    }
}

/*
.page-image{
width: 50%;
height: 400px;
margin: auto;
}
.page-image-wrapper{
position: relative;
}
.front{
background-image: url('../images/front.png');
background-repeat: no-repeat;
background-position: center center;
background-size: cover;  
}
.front-snippet{
width: 150px;
position: absolute;
}
#iot-snippet{
top: 220px;
left: 150px
}
#it-snippet{
 right: 150px; 
top: 50px;
}
#ss-snippet{
 top: 220px;
right: 150px;
}



.front-image img{
width: 100%;
height: 600px;
}
.slide-container{
margin: 0 40px;
padding: 0;
display: flex;
justify-content: flex-start;
align-items: center;
min-height: 100vh;
font-family: Raleway, sans-serif;
font-size: 32px;
font-weight: bold;
text-transform: uppercase;
position: absolute;
top: 0px;
width: 100%;
color: white;
}
.changebox{
   margin: 0 5px;
   color: #878787;
   overflow: hidden;
   transition: .50s;
   white-space: nowrap;
   text-shadow: 0px 1px 0px #4c4a4a;
}

.container-header {
padding: 10px 40px 10px;
font-weight: 700;
}
.page-message {
text-align: center;
width: 90%;
margin: 20px auto;
}
.content{
display: inline-block;
 height: 300px;
 width: 100%;
 position: relative;
 padding: 5px;
}
.content.it img, 
.content.iot img {
width:  50%;
object-fit: cover;
height: 300px;
}
.content.it img{
float: right;
}
.content.iot img {
float: left;
}
.caption{
position: absolute;
top: 70px;
}
.content.iot .caption{
left: 50%;
}
.content.it .caption{
left: 10%;
}
.caption h2{
font-weight: 600;
margin-top: 30px;
margin-bottom: -15px;
color: #686767;
}
.caption p{
text-align: center;
margin: 20px 0;
letter-spacing: 2px;
}


.expertise {
  padding: 40px 0;
  display: block;
  background: linear-gradient(135deg, #f9f9f9, #eef2f7);
}

.container-header h2 {
  font-size: 2rem;
  text-align: center;
  color: #1c2a48;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.expertise-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.expertise-block {
  flex: 1 1 40%;
  max-width: 45%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.expertise-block i {
  font-size: 45px;
  color: #1c2a48;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.expertise-block:hover i {
  color: #ff4b2b;
}

.expertise-block h2 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.expertise-block p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.contact-container {
background:  white;
margin:  auto;
width:  100%;
padding-bottom: 30px;
padding-top: 50px;
display: inline-block;
}
.contact-message {
width: 35%;
height: 100vh;
float: left;
text-align: center;
}
.contact-field{
 display: flex;
 flex-wrap: nowrap;
 align-content: center;
 justify-content: flex-start;
 align-items: center;
}
.contact-message h2 {
margin: 2px 2px;
}
 .contact-message h3 {
margin: 2px 2px;
 }
.contact-form {
width:  60%;
float:  right;
padding-left: 20px;
}
.contact-form i{
 font-size: 34px;
 padding-right: 15px;
}
.contact-field i{
 font-size: 20px;
 padding-right: 15px;
 color: #172a55;
}
input {
width: 60%;
height: 35px;
margin-bottom: 20px;
border-radius: 5px;
border: 1px solid lightgrey;
}
textarea {
width: 550px;
height:  250px;
border-radius: 5px;
border: 1px solid lightgrey;
}
::placeholder{
 padding-left: 20px;
 font-weight: 600;
 font-family: raleway;
}
input:hover,
textarea:hover{
border: none;
border-bottom: 1px solid #172a55;
border-left: 4px solid #172a55;
box-shadow: none;
background: white;
}
#submit {
width: 200px;
height: 40px;
font-size: 16px;
border: none;
color: white;
background: #172a55;
position: relative;
left: 400px;
margin: 20px 0;
}
i.fa-paper-plane{
 position: relative;
 font-size: 20px;
  left: -70px;
  color: white
}
#submit:hover {
color:  maroon;
background:white;
border: 1px solid #172a55;
border-left: 1px solid #172a55;
}
#submit:hover i.fa-paper-plane{
color:  #172a55;
}
.social i {
font-size:  25px;
padding: 5px;
color: maroon
}
.envelope {
width: 100%;
text-align:center;
display: none;
}
.envelope img {
width: 200px;
}
.success_message{
display: none ;
text-align: center;
color: blue;
}

/* IT Page 

.page-main img{
width: 100%;
height: 600px;
}
.page-main h1{
margin: 200px 5%;
animation:slide-it 2s;
color: white;
position: absolute;
top: 0;
z-index: 2;
}
.page-main h2,
.page-main h3{
margin: 200px 5%;
animation:slide-it 2s;
color: white;
position: absolute;
top: 80px;
z-index: 2;
}
@keyframes slide-it {
  from {margin: 200px 0%;}
  to {margin: 200px 5%;}
}
.it-content{
background-color: white;
z-index: 1;
}
.page-container{
display: inline-block;
padding: 50px 20px;
}
.page-container h2{
color: #172a55;
}
.page-right{
float: right;
width: 50%;
text-align: center;
}
.page-left{
float: left;
width: 50%;
}
.it-bottom{
width: 100%;
display: inline-block;
text-align: center;
}
.page-left img, .page-right img{
width: 100%;
}
#web{
height: 50px;
}

/* IOT 
/*
.iot{
display: inline-block;
width: 100%;
background-color: white;
}

.iot-quote{
padding: 60px 0px;
text-align: center;
}
.iot-quote h3{
color: #424242;
font-family:Raleway ;
width: 80%;
margin: auto;
}
#iot{
width: 100%;
height: 500px;
}
.iot h2{
text-align:center
}

/* company 

.region-message{
width: 90%;
text-align: center;
margin: 40px auto;
}
.message{
font-size: 30px;
font-family:Shadows Into Light;
font-weight: 600;
}
.message-title{
font-size: 18px;
font-family: arial;
padding-top: 10px; 
}
.company-content {
  color: #1c2a48;
  text-align: center;
  margin: 40px auto;
  max-width: 900px;
  line-height: 1.6;
}

.company-content h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #ff4b2b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-content p {
  margin-bottom: 10px;
  color: #555;
}

.company-content ul {
  padding: 0;
  list-style: disc;
  color: #555;
}

.region-message {
  background: #fff;
  margin-top: 30px;
  text-align: center;
}

.region-message h4 {
  color: #333;

}

.region-message h6 {
  color: #777;
  font-style: italic;
}
.company-attributes-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  margin: 40px 0;
}

.company-attributes {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding-bottom: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 350px
}

.company-attributes:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.company-attributes img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.company-attributes h4 {
  font-size: 20px;
  color: #1c2a48;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-attributes p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.footer {
  background: linear-gradient(135deg, #0a0f1c, #1c2a48);
  color: #f0f0f0;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffd700;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin: 8px 0;
}

.footer-nav a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #ffd700;
}

.social-icons a {
  margin-right: 15px;
  font-size: 1.4rem;
  color: #f0f0f0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  color: #ffd700;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #ccc;
}
