* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
nav {
    position: relative;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-menu li a {
  color: #0f1e2e;
  text-decoration: none;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #0f1e2e;
  cursor: pointer;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #0f1e2e;
    letter-spacing: 1px;
}

.logo img {
  height: 60px; 
  width: auto;
  display: block;
}

nav {
  padding: 15px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #0f1e2e;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #1f3b5b;
}

/* HEADER */
header {
    background: linear-gradient(135deg,#0f1e2e,#1f3b5b);
    color: white;
    padding: 200px 0 140px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .container {
    max-width: 800px;
}

header h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease-out;
}

header p {
    font-size: 18px;
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 30px;
    opacity: 0.9;
    animation: fadeInUp 0.7s ease-out 0.1s both;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #0f1e2e;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* SECTIONS */
section {
    padding: 100px 0;
    animation: fadeInUp 0.8s ease-out;
}

h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #0f1e2e;
    animation: fadeInUp 0.6s ease-out;
}

.about p {
    max-width: 800px;
}

/* STATS */
.stats {
    background: linear-gradient(135deg, #1f3b5b 0%, #0f1e2e 100%);
    color: white;
    padding: 80px 0;
}

.stats h2 {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-box {
    text-align: center;
    animation: scaleIn 0.6s ease-out;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4fbdff;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* SERVICES */
.services {
    background: #f7f9fb;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-box {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.service-box:nth-child(1) { animation-delay: 0.1s; }
.service-box:nth-child(2) { animation-delay: 0.2s; }
.service-box:nth-child(3) { animation-delay: 0.3s; }
.service-box:nth-child(4) { animation-delay: 0.4s; }

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-box h3 {
    margin-bottom: 15px;
    color: #0f1e2e;
}

.service-box ul {
    list-style: none;
}

.service-box ul li {
    margin-bottom: 8px;
}

/* WHY */
.why {
    padding: 0;
}

.why ul {
    list-style: none;
}

.why ul li {
    margin-bottom: 12px;
}

.why-wrapper {
    display: flex;
    min-height: 500px;
}

.why-image {
    position: relative;
    flex: 1;
    background: url('../images/office.jpg') center/cover no-repeat;
}

.why-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.why-content {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f5f7fa;
    padding: 80px 40px;
}

/* FOOTER */
footer {
    background: #09131d;
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: #4fbdff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(79, 189, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: rgba(79, 189, 255, 0.2);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    stroke: #4fbdff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a2332;
    font-size: 13px;
}

.service-box {
    text-align: center;
}

.service-box ul {
    text-align: left;
    display: inline-block;
    margin-top: 15px;
}

.service-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    stroke: #1f3b5b;
    transition: 0.3s;
}

.service-box:hover .service-icon svg {
    stroke: #4fbdff;
    transform: scale(1.1);
}

/* CONTACT */
.testimonials {
    background: #f7f9fb;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.testimonial-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #1f3b5b;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    transition: 0.3s;
}

.testimonial-box:nth-child(1) { animation-delay: 0.1s; }
.testimonial-box:nth-child(2) { animation-delay: 0.2s; }
.testimonial-box:nth-child(3) { animation-delay: 0.3s; }

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-box p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #0f1e2e;
    font-size: 14px;
}

/* CONTACT FORM */
.contact-section {
    position: relative;
    background: #0f1e2e;
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: url('../images/world-map-outline.png') no-repeat left center;
    background-size: contain;
    opacity: 0.28;
	pointer-events: none;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 60px;
	color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}


.contact-box h3 {
    margin-bottom: 20px;
}

.contact-box form input,
.contact-box form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    background: #ffffff;
    color: #000;
    font-family: inherit;
}


.contact-box button {
    padding: 12px 20px;
    background: white;
    color: #0f2742;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.contact-box button:hover {
    background: #e2e8f0;
}


/* MOBILE */
@media(max-width:768px) {
	.logo img {
    height: 40px;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b1c2d;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }
  
  .nav-menu li a {
    color: white;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  
  header h1 {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stat-number {
    font-size: 36px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }
	
	.contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
	
	.service-grid {
        grid-template-columns: 1fr;
    }
	
	.why-wrapper {
        display: flex;          
        flex-direction: column;
        min-height: auto;
    }

    .why-image {
        flex: none;           
        height: 300px;
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    .why-content {
        padding: 50px 25px;
    }
	
	.contact-grid {
        grid-template-columns: 1fr;
    }
	
	.contact-section::before {
        width: 100%;
        opacity: 0.36;
        background-position: center;
    }

    nav ul {
        gap: 15px;
        font-size: 14px;
    }

    section {
        padding: 70px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}