#hamburger {
  display: none;
}
/* General Styles */
* {
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8fafc;
    color: #222;
}
.container {
    width: 100vw;
    max-width: none;
    margin: 0;
}

/* Header & Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
header .container.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    max-width: 100%;
    margin: 0;
    padding-left: 4vw;
    padding-right: 4vw;
    box-sizing: border-box;
}
nav {
    margin-left: 0;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 0.7rem;
  align-items: center;
}
nav ul::-webkit-scrollbar {
    display: none;
}
nav ul li {
    display: flex;
    align-items: center;
}
nav ul li a {
    color: #1a6ec1;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.97rem;
    font-weight: 500;
    transition: color 0.2s, border-bottom 0.2s, background 0.2s;
    padding: 0.3rem 0.6rem;
    border-radius: 1.2rem;
    white-space: nowrap;
    letter-spacing: 0.01em;
}
nav ul li a:hover, nav ul li a.active {
    color: #fff;
    background: #1a6ec1;
    border-bottom: 2px solid #3ed6ff;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo img {
    height: 48px;
}
.logo span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a6ec1;
}
.logo small {
    font-size: 0.8rem;
    color: #888;
    margin-left: 0.5rem;
}
nav li {
    cursor: pointer;
    font-weight: 500;
    color: #1a6ec1;
    transition: color 0.2s;
}
nav li:hover {
    color: #0a3d62;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #1a6ec1 60%, #0a3d62 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0 4rem 0;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5);
}
.hero .container {
    position: relative;
    z-index: 2;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero .highlight {
    color: #3ed6ff;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.btn-primary {
    background: #fff;
    color: #1a6ec1;
    padding: 0.8rem 2.2rem;
    border-radius: 2rem;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: #1a6ec1;
    color: #fff;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  width: 100vw;
  min-height: 420px;
  height: 480px;
  overflow: hidden;
  margin-bottom: 0;
  max-width: 100vw;
  box-sizing: border-box;
}
.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.carousel-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0; top: 0;
  z-index: 1;
  filter: brightness(0.5);
}
.carousel-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.carousel-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.carousel-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  z-index: 3;
}
.carousel-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff7;
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-dots .dot.active {
  background: #fff;
}
@media (max-width: 700px) {
  .hero-carousel, .carousel-slide {
    min-height: 320px;
    height: 340px;
  }
  .carousel-content h1 {
    font-size: 1.5rem;
  }
  .carousel-content p {
    font-size: 1rem;
  }
}
.carousel-content, .carousel-content h1, .carousel-content p {
  word-break: break-word;
}
.carousel-content .highlight,
.carousel-content h1.highlight {
    color: #1a6ec1;
}

/* Section Headings */
section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin: 2.5rem 0 1.5rem 0;
    color: #1a6ec1;
    font-weight: 700;
}

/* About Section */
.about {
    width: auto;
    margin-left: 0;
    transform: none;
    background: #f8fafc;
    padding: 3rem 0 2rem 0;
}
.about .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}
.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}
.about-img {
    max-width: 400px;
    width: 100%;
    height: 96px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.about-cards {
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 4vw;
    padding-right: 4vw;
}
@media (max-width: 1100px) {
    .about-cards {
        flex-wrap: wrap;
        gap: 1rem;
        padding-left: 2vw;
        padding-right: 2vw;
    }
}
.about-cards .card {
    background: #00598a;
    color: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(26,110,193,0.08);
    padding: 0;
    text-align: center;
    flex: 1 1 0;
    min-width: 280px;
    max-width: 1fr;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}
.about-cards .card * {
    color: #fff;
}
.about-cards .card .card-img-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    margin-bottom: 0;
    padding: 0;
}
.about-cards .card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
    z-index: 1;
}
.about-cards .card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(26,110,193,0.15);
}
.about-cards img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1rem;
}
.about-cards .card p {
    background: transparent;
    padding: 0.8rem 1rem;
    border-radius: 0.7rem;
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.98rem;
}
.about-card-img {
    position: relative;
    width: 100%;
    height: 220px;
    margin: 0;
    padding: 0;
}
.about-card-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 1.2rem 1.2rem 0 0;
    display: block;
}
.about-card-content {
    margin-top: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-card-content h3 {
    font-size: 1.35rem;
}
.about-card-content p {
    margin-top: 0.5rem;
    text-align: justify;
}

/* Why Section */
.why-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}
.why-cards .card {
    background: #eaf4fb;
    border-radius: 1rem;
    padding: 1.5rem 1.2rem;
    width: 260px;
    box-shadow: 0 2px 8px rgba(26,110,193,0.06);
    font-size: 1rem;
    text-align: center;
}

/* Services Section */
.services .service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
    padding-left: 4vw;
    padding-right: 4vw;
}
.service-cards .card {
    flex: 1 1 30%;
    max-width: 33.33%;
    min-width: 260px;
    box-sizing: border-box;
}
@media (max-width: 1100px) {
    .service-cards .card {
        flex-basis: 100%;
        max-width: 100%;
    }
    .service-cards {
        padding-left: 2vw;
        padding-right: 2vw;
        gap: 1rem;
    }
}
.services .card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(26,110,193,0.08);
    padding: 2rem 1.5rem;
    width: 300px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.services .card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(26,110,193,0.15);
}
.services-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    color: #222;
    font-size: 1.1rem;
}
.service-icon {
    display: block;
    margin: 0 auto 1rem auto;
    height: 56px;
    object-fit: contain;
}

/* Products Section */
.products .product-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.products .product-tabs button {
    background: #eaf4fb;
    border: none;
    border-radius: 1.5rem;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    color: #1a6ec1;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.products .product-tabs button.active,
.products .product-tabs button:hover {
    background: #1a6ec1;
    color: #fff;
}
.products .product-content {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(26,110,193,0.08);
    padding: 2rem 1.5rem;
    margin: 0 auto 2rem auto;
    max-width: 700px;
    text-align: center;
}
.products ul {
    text-align: left;
    display: inline-block;
    margin: 1rem auto 0 auto;
}

/* CTA Section */
.cta {
    background: #1a6ec1;
    color: #fff;
    text-align: center;
    padding: 3rem 0 2.5rem 0;
}
.cta .btn-primary {
    margin-top: 1.5rem;
}

/* Domains Section */
.domains .domain-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}
.domains .card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(26,110,193,0.08);
    padding: 1.5rem 1.2rem;
    width: 260px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.domains .card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(26,110,193,0.15);
}

/* Portfolio Section */
.portfolio .portfolio-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}
.portfolio .card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(26,110,193,0.08);
    padding: 1.5rem 1.2rem;
    width: 300px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio .card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0.7rem;
    margin-bottom: 1rem;
}
.portfolio .card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(26,110,193,0.15);
}

/* Clients Section */
.clients .client-logos {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}
.clients .client-logos img {
    height: 48px;
    filter: grayscale(1) brightness(0.8);
    transition: filter 0.2s;
}
.clients .client-logos img:hover {
    filter: none;
}

/* Testimonials Section */
.testimonials .testimonial-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
}
.testimonials .card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(26,110,193,0.08);
    padding: 2rem 1.5rem;
    width: 320px;
    text-align: center;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.testimonials .card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(26,110,193,0.15);
}
.testimonials .role {
    color: #1a6ec1;
    font-size: 0.95rem;
    margin-bottom: 0.7rem;
}
.testimonials blockquote {
    font-style: italic;
    color: #444;
    margin: 1rem 0 0 0;
    padding-left: 1rem;
    border-left: 3px solid #1a6ec1;
}

/* Footer */
footer {
    background: #1a6ec1;
    color: #fff;
    padding: 2.5rem 4vw 1rem 4vw;
    margin-top: 3rem;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.footer-about, .footer-links, .footer-contact {
    min-width: 0;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.footer-about p, .footer-links ul, .footer-contact p, .footer-links li, .footer-links a {
    color: #fff;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.footer-about {
    flex: 2;
    min-width: 220px;
}
.footer-links {
    flex: 1;
    min-width: 160px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.7rem;
    cursor: pointer;
    transition: color 0.2s;
}
.footer-links li:hover {
    color: #3ed6ff;
}
.footer-contact {
    flex: 1.5;
    min-width: 180px;
}
.social-links {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0;
}
.social-links a {
    color: #fff;
    margin-left: 1.2rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.social-links a:hover {
    color: #3ed6ff;
}
.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ff3333;
}
.copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #3ed6ff33;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.95rem;
    text-align: left;
    gap: 1.5rem;
    flex-direction: row;
}
.social-links img {
    height: 38px;
    width: 38px;
    display: inline-block;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .about-cards, .service-cards {
        flex-wrap: wrap;
        gap: 1rem;
        padding-left: 2vw;
        padding-right: 2vw;
    }
    .about-cards .card, .service-cards .card {
        min-width: 220px;
        max-width: 100%;
        flex-basis: 100%;
    }
    .about-card-img, .about-card-img img {
        height: 180px;
    }
    .service-icon, .social-links img {
        height: 32px;
        width: 32px;
    }
}
@media (max-width: 900px) {
    header .container.nav-container, .footer-container {
        flex-direction: column;
        gap: 1.2rem;
        align-items: stretch;
    }
    .about-cards, .service-cards {
        flex-direction: column;
        align-items: stretch;
        padding-left: 2vw;
        padding-right: 2vw;
    }
    .about-cards .card, .service-cards .card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        margin: 0 0 1.2rem 0;
    }
    .about-card-img, .about-card-img img {
        height: 140px;
    }
    .service-icon, .social-links img {
        height: 28px;
        width: 28px;
    }
    .container {
        width: 100vw;
        padding: 0 1vw;
    }
}
@media (max-width: 700px) {
    .hero-carousel, .carousel-slide {
        min-height: 220px;
        height: 260px;
    }
    .carousel-content h1 {
        font-size: 1.2rem;
    }
    .carousel-content p {
        font-size: 0.95rem;
    }
    .about-img {
        max-width: 98vw;
        height: 72px;
    }
    .about-card-img, .about-card-img img {
        height: 100px;
    }
    .service-icon, .social-links img {
        height: 22px;
        width: 22px;
    }
    .footer-container {
        gap: 1rem;
    }
    .copyright {
        flex-direction: column;
        gap: 0.7rem;
        align-items: flex-start;
    }
}
@media (max-width: 600px) {
    .container {
        width: 100vw;
        padding: 0 0.5vw;
    }
    .about-cards, .service-cards {
        padding-left: 1vw;
        padding-right: 1vw;
    }
    .about-cards .card, .service-cards .card {
        padding: 0.5rem 0.2rem;
    }
    .about-card-content h2, .about-card-content h3 {
        font-size: 1rem;
    }
    .about-card-content p, .service-cards .card p {
        font-size: 0.95rem;
    }
    .footer-about, .footer-links, .footer-contact {
        min-width: unset;
    }
    .copyright {
        flex-direction: column;
        gap: 0.7rem;
        align-items: flex-start;
    }
    .social-links {
        gap: 0.7rem;
    }
} 

/* Responsive footer logo/text row */
.footer-logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-logo-row img {
  margin-right: 12px;
  height: 48px;
  max-width: 100%;
}
.footer-logo-row span {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 700px) {
  header .container.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 0;
  }
  #hamburger {
    display: block;
    z-index: 201;
    margin-left: auto;
  }
  nav {
    position: fixed;
    top: 0;
    right: -240px;
    width: 220px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 12px rgba(0,0,0,0.12);
    transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
  }
  nav.open {
    right: 0;
  }
  nav ul {
    display: flex;
    flex-direction: column;
    min-width: 160px;
    padding: 0.5rem 0;
    margin: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    position: static;
  }
  nav ul li {
    width: 100%;
    text-align: left;
    padding: 0.5rem 1.2rem;
  }
}

