/* Color Palette */
:root {
  --dark-blue: #00204A;
  --medium-blue: #0e4b9a;
  --cream-bg: #fcfcfc;
  --light-brown: #00BBF0;
  --white: #fff;
  --shadow-color: rgba(27, 60, 83, 0.15);
}

/* Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--cream-bg);
  color: var(--dark-blue);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1100px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

/* Header/Nav */
header {
  background-color: var(--dark-blue);
  padding: 1rem 0;
  box-shadow: 0 2px 8px var(--shadow-color);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  color: var(--cream-bg);
  font-size: 1.8rem;
  font-weight: 700;
  align-item: left;
  text-decoration: none;
  letter-spacing: 1.5px;
  border: 2px solid transparent;
  padding: 4px 10px;
  border-radius: 6px;
  transition: background-color 0.3s ease, border 0.3s ease;
}

.logo a:hover,
.logo a:focus {
  background-color: var(--medium-blue);
  border-color: var(--light-brown);
  outline: none;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--cream-bg);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--light-brown);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--light-brown);
  left: 0;
  bottom: -6px;
  border-radius: 3px;
}

/* Hamburger menu button for mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--cream-bg);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background-color: var(--medium-blue);
  color: var(--cream-bg);
  text-align: center;
  padding: 4rem 1rem 6rem;
  box-shadow: 0 5px 15px var(--shadow-color);
  border-radius: 12px;
  margin-top: 1rem;
}

.hero h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  animation: slideDown 0.8s ease forwards;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  animation: fadeIn 1.2s ease forwards;
}

/* Services Section */

.services-preview,
.services-list {
  margin: 3rem 0;
  padding: 2rem 1rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow-color);
  outline: 3px solid var(--light-brown);
}

.services-preview h3,
.page-header h2 {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.services-preview p,
.page-header p {
  text-align: center;
  font-weight: 500;
  color: var(--medium-blue);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.service-cards,
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.service-card {
  background-color: var(--cream-bg);
  border-radius: 10px;
  border: 2px solid var(--medium-blue);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 4px 10px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(69, 104, 130, 0.4);
}

.service-card h3,
.service-card h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

.service-card p {
  font-weight: 500;
  color: var(--medium-blue);
  line-height: 1.4;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--dark-blue);
  color: var(--cream-bg);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  margin: 0 auto;
  display: block;
  width: max-content;
  margin-top: 2rem;
}

.btn:hover,
.btn:focus {
  background-color: var(--light-brown);
  color: var(--dark-blue);
  border-color: var(--dark-blue);
  outline: none;
}

/* Contact Section */
.contact-form {
  max-width: 600px;
  margin: 3rem auto;
  background-color: var(--white);
  padding: 2rem 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px var(--shadow-color);
  outline: 3px solid var(--light-brown);
}

.contact-form h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
  font-weight: 700;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--medium-blue);
}

.contact-form input,
.contact-form textarea {
  border: 1.8px solid var(--medium-blue);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--light-brown);
  outline: none;
}

.contact-form button {
  background-color: var(--dark-blue);
  color: var(--cream-bg);
  border: none;
  font-weight: 700;
  padding: 0.9rem 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.contact-form button:hover,
.contact-form button:focus {
  background-color: var(--light-brown);
  color: var(--dark-blue);
  outline: none;
}

/* Footer */
footer {
  background-color: var(--dark-blue);
  color: var(--cream-bg);
  text-align: center;
  padding: 1.25rem 1rem;
  box-shadow: 0 -2px 10px var(--shadow-color);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {

  .nav-container {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin-left: 0;
    margin-bottom: 1rem;
  }

  .nav-toggle {
    display: flex;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Animations */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

/* Utility Outlined Section */
.outlined {
  outline-offset: 6px;
}
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem auto;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-form,
.contact-details {
  flex: 1 1 48%;
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 12px var(--shadow-color);
  outline: 3px solid var(--light-brown);
}

.contact-details ul {
  list-style: none;
  margin-bottom: 1rem;
}

.contact-details li {
  color: var(--medium-blue);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-details a {
  color: var(--dark-blue);
  font-weight: bold;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 1rem;
}

.social-icons a {
  color: var(--medium-blue);
  font-size: 1.3rem;
  margin-right: 1rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--light-brown);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
  .contact-form, .contact-details {
    flex: 1 1 100%;
  }
}
.digital-marketing-card {
  position: relative;
  background-color: var(--cream-bg);
  border: 2px solid var(--medium-blue);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(69, 104, 130, 0.15);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.digital-marketing-card .icon-wrapper {
  font-size: 4rem;
  color: var(--dark-blue);
  margin-bottom: 1rem;
  animation: bounce 2.5s infinite;
}

.digital-marketing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(69, 104, 130, 0.35);
  border-color: var(--light-brown);
}

.digital-marketing-card h3 {
  margin-bottom: 1rem;
  color: var(--dark-blue);
}

.digital-marketing-card p {
  color: var(--medium-blue);
  font-weight: 500;
  line-height: 1.4;
}

/* Bounce Animation for Icon */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); 
  }
  40% {
    transform: translateY(-12px);
  }
  60% {
    transform: translateY(-6px);
  }
}
:root {
  --dark-blue: #1B3C53;
  --mid-blue: #456882;
  --light: #F9F3EF;
  --accent: #D2C1B6;
}

body {
  background-color: var(--light);
  font-family: 'Segoe UI', sans-serif;
  color: var(--dark-blue);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
header {
  background-color: var(--dark-blue);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(27, 60, 83, 0.6);
}

.logo a {
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: border-bottom 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
  border-bottom: 2px solid var(--accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}

.nav-toggle span {
  height: 3px;
  background: white;
  border-radius: 2px;
  display: block;
}

/* Main Content */
main {
  margin-top: 3rem;
}

.page-header h2 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.page-header p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  font-size: 1.1rem;
  color: var(--mid-blue);
}

/* Service Grid */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(27, 60, 83, 0.2);
}

.service-card svg {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
  color: var(--dark-blue);
}

.service-card p {
  color: var(--mid-blue);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Footer */
footer {
  background-color: var(--dark-blue);
  color: white;
  padding: 1rem 0;
  text-align: center;
  margin-top: 4rem;
  font-size: 0.9rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .navbar .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 2rem;
    flex-direction: column;
    background-color: var(--dark-blue);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(27, 60, 83, 0.7);
  }

  .nav-links.active {
    display: flex;
  }
}
/* Color Palette */
:root {
  --blue-dark: #1B3C53;
  --blue-mid: #456882;
  --cream-bg: #F9F3EF;
  --tan: #D2C1B6;
  --white: #fff;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: var(--cream-bg);
  color: var(--blue-dark);
}

/* Layout */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background: var(--blue-dark);
  color: var(--white);
  padding: 1rem 0;
}

.logo a {
  color: var(--white);
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: bold;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

.nav-links a.active,
.nav-links a:hover {
  border-bottom: 2px solid var(--tan);
}

.nav-toggle {
  display: none;
}

/* Page Header */
.page-header {
  text-align: center;
  margin: 3rem 0;
}

.page-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--blue-mid);
  font-size: 1.1rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding-bottom: 4rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
  padding: 1.25rem 1rem;
  font-size: 0.9rem;
}

/* Responsive */
@media(max-width: 768px){
  .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
}


