/*
Theme Name: Evolvedigital
Author: Dipan Samadder
Version: 1.0
*/

body { margin:0; padding:0; }
:root {
  --bg: #111827;
  --fg: #fff;
  --gap: 16px;
  --header-height: 72px;
  --text: #111827;
}

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

body {
  font-family: 'Inter', sans-serif;

}

.full-container {width: 1320px; margin: 0 auto;}

/* Header container */
.site-header {
  background: var(--bg);
  color: var(--fg);
  height: auto;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  /* vertical center */
  /* padding:0 var(--gap); */
  padding: 15px 50px 15px 50px;
}

/* three equal columns */
.header-row {
  display: flex;
  width: 100%;
  gap: var(--gap);
}

.col {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  /* vertical center inside each column */
}

/* First column - logo left aligned */
.col.logo {
  justify-content: flex-start
}

#menu-new-menu{
    display: flex;
    list-style: none;
    gap: 22px;
    
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
}

/* Center column - nav centered */
.col.nav {
  justify-content: center
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}

nav a {
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
}

/* Right column - button right aligned */
.col.cta {
  justify-content: flex-end
}

.btn {
  background: transparent;
  color: #FFFFFF;
  border-radius: 6px;
  padding: 8px 14px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
}

/* Mobile: stack behavior for nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--fg);
  font-size: 18px;
  cursor: pointer;
}

/* Dropdown menu (mobile) */
.mobile-nav {
  display: none;
  width: 100%;
  background: var(--bg);
  text-align: center;
  flex-direction: column;
  gap: 8px;
  padding: 12px 0;
}

.mobile-nav a {
  display: block;
  width: 100%;
  color: var(--fg);
  text-decoration: none;
  padding: 10px 0;
}

/* Responsive breakpoints */
@media (max-width:800px) {
  .site-header {
    padding: 8px 20px 8px 20px
  }

  .header-row {
    gap: 8px
  }

  nav {
    display: none
  }

  /* hide desktop nav */
  .nav-toggle {
    display: inline-flex
  }

  .logo img {
    height: 50px
  }
}

/* Keep columns equal width on very small screens */
@media (max-width:420px) {
  .site-header {
    min-height: 64px
  }

  .logo img {
    height: 32px
  }
}


/* Desktop / Tablet grid */
.two-col-section {
  padding: 50px 0px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 300px;
  /* ensure visible area for bg */
  background-image: url("./assets/hero-img.png");
  background-repeat: no-repeat;
  
  background-size: cover;
  /* or contain / 50% auto as needed */

}




/* LEFT column - relative container to position top and bottom */
.col-left {

  min-height: 420px;
  /* adjust for desired spacing on desktop */
  box-sizing: border-box;
  padding-right: 20px;
}

/* H1 at top */
.col-left h1 {
  font-weight: 700;
  font-style: normal;
  font-size: 79px;
  line-height: 104%;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: left;
  color: var(--text);
}

/* Paragraph at bottom */
.col-left p {

  font-size: 20px;
  line-height: 1.6;
  color: var(--text);
  text-align: left;
  max-width: 90%;
}

/* RIGHT column image */
.col-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.col-right img {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border-radius: 25px;
}

/* Responsive: on small screens stack columns and keep H1 top & P bottom inside left column */
@media (max-width: 800px) {

  .full-container {width: 100%; margin: 0 auto; padding: 0px 5px}
  .two-col-section {
    grid-template-columns: 1fr;
    padding: 50px 20px;
    gap: 20px;

  }

  /* Left column becomes a shorter relative container so H1 stays at top and P at bottom */
  .col-left {
    min-height: 260px;
    /* space between top and bottom on mobile */
    padding-right: 0;
    padding-left: 0;

  }

  .col-left h1,
  .col-left p {
    left: 0;
    right: 0;
    text-align: center;
  }

  .col-left h1 {
   /* position: absolute;
    top: 16px;*/
    /* small gap from top of the column */
    font-size: clamp(28px, 6.5vw, 44px);
    line-height: 1.06;
    margin: 0;
  }

  .col-left p {
   /* position: absolute;
    bottom: 16px;*/
    /* small gap from bottom of the column */
    font-size: 20px;
    line-height: 1.5;
    max-width: 100%;
    padding-right: 8px;
    word-spacing: 5px;
  }

  /* Center image on mobile */
  .col-right {
    justify-content: center;
    align-items: center;
  }

  .col-right img {
    max-width: 400px;
    width: 100%;

  }
}

/* Very small screens */
@media (max-width: 360px) {
  .col-left {
    min-height: 220px;
  }

  .col-left h1 {
    font-size: clamp(22px, 8.5vw, 34px);
    top: 12px;
  }

  .col-left p {
    font-size: 14px;
    bottom: 12px;
  }
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}

.single-col-section {
  display: block;
  padding: 30px 0px;
  box-sizing: border-box;
  background: var(--bg);
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  word-spacing: 5px;
  line-height: 1.5;

}

/* make content layout constrained (optional) */
.single-col-section .content {
  max-width: 1000px;
  margin: 0 auto;
}

/* Mobile: top/bottom 20px, left/right 60px */
@media (max-width: 600px) {
  .single-col-section {
    padding: 20px 60px;
    font-size: 15px;
    text-align: center;
  }
}

.third-section {
  padding: 50px 0px;
  /* desktop default */
  box-sizing: border-box;
  background: var(--section-bg, #fff);
  color: var(--section-fg, #111);
}

.third-section .container {

  margin: 0 auto;
}

.third-section h2 {
  margin: 0 0 16px;
  font-size: 60px;
  line-height: 1.1;
}

.third-section p {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 20px;
  word-spacing: 5px;
  line-height: 1.5;
}

.third-section ul {
  margin: 0;
  padding-left: 20px;
  font-size: 20px;
  word-spacing: 5px;
  line-height: 1.5;


}

/* Mobile: 50px top/bottom, 20px left/right */
@media (max-width: 600px) {
  .third-section {
    padding: 50px 20px;
  }

  .third-section h2 {
    font-size: 25px;

  }

  .third-section ul li {
    text-align: left;
  }
}

.left-align {

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

/* Mobile: screen width ≤ 600px — adjust breakpoint as needed */
@media (max-width: 600px) {
  .left-align {
    text-align: center;
    align-items: center;
    /* centers flex children */
  }
}

.right-align {
  display: flex;
  flex-direction: column;
  /* or row as needed */
  align-items: flex-end;
  /* right-align children */
  justify-content: flex-start;
}

@media (max-width: 600px) {
  .right-align {
    text-align: center;
    align-items: center;
  }
}

.center-align {
  display: flex;
  flex-direction: column;
  /* or row */
  align-items: center;
  /* horizontal centering of children */
  justify-content: center;
  /* vertical centering of children */
  gap: 8px;
  /* optional */
}


@media (max-width: 600px) {
  .center-align {
    text-align: center;
    align-items: center;
  }
}

.fourth-section {
  padding: 50px 0px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #1f2a33 0%, #162028 100%);
  color: #fff;
  text-align: left;
  /* desktop: left */
  display: block;
}

.fourth-section h2 {
  font-size: 60px;
  padding-bottom: 10px;
  line-height: 1.1;
}

.fourth-section p {
  font-size: 20px;
  word-spacing: 5px;
  line-height: 1.5;

}




@media (max-width: 600px) {
  .fourth-section {
    display: flex;
    flex-direction: column;
    align-items: center;

    /* centers children horizontally */
  }

  .fourth-section .container {
    width: 100%;
    max-width: 900px;
    text-align: center;
  }
.fourth-section h2 {
  font-size: 25px;
}
}

.fifth-section {
  display: flex;
  gap: 50px;
  padding: 50px 0px;
  box-sizing: border-box;
  align-items: stretch;
  flex-wrap: wrap;
}

.fifth-section .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* vertical centering */
  align-items: flex-start;
  /* left-align content */
  text-align: left;
  background: #fff;
  padding: 50px 30px;
  box-sizing: border-box;
  width: calc((100% - 48px) / 3);

  min-width: 0;
  height: 50vh;
  border-radius: 15px;
  box-shadow: 0 6px 18px gray;
  /* light grey shadow */
}




.fifth-section .col--bg {
  background-image: url('./assets/ai-search-bg.png');
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  color: var(--text);
  position: relative;
  padding: 50px 30px;
  background-color: #3B82F6;

}



.fifth-section .col--bg img,
.fifth-section .col--bg h2,
.fifth-section .col--bg p {
  position: relative;
  z-index: 1;
  color: #FFFFFF !important;


}


.fifth-section .col img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 0 12px 0;
}

.fifth-section .col h2 {
  margin: 0 0 8px 0;
  font-size: 28px;
  color: #3B82F6;
  
}

.fifth-section .col p {
  margin: 0;
  line-height: 1.4;
  font-size: 24px;
  
}

@media (max-width: 800px) {
  .fifth-section {
    padding: 20px;
    /* optional */
    flex-direction: column;
    /* forces vertical stacking */
    gap: 25px;
    /* vertical spacing between columns */
    
  }

  .fifth-section .col {
    width: 100% !important;
    /* full width */
    margin: 0;
    box-sizing: border-box;
    min-height: 60vh;
    /* keeps visual height on mobile */
    height: auto;
    /* lets content expand naturally */
    padding: 50px 30px;
    align-items: center;
    text-align: center;
  }


  .fifth-section .col:last-child {
    margin-bottom: 0;
  }
}

.sixth-section {
  display: flex;
  align-items: center;
  /* vertical center of the two columns */
  gap: 24px;
  padding: 50px 0px;
  box-sizing: border-box;
}

/* columns */
.sixth-section .col {
  flex: 1 1 0;
  min-width: 0;
}

/* Ensure the content column is NOT a flex container */
.sixth-section .col-content {
  display: block;
  /* NOT flex */
  text-align: left;
  margin-left: -30px;
}

/* image */
.sixth-section .col-image img {
  width: 80%;
  height: 100vh;
  display: block;
  object-fit: cover;
  border-radius: 20px;

}

.sixth-section .col-image {
  justify-content: left;
}

/* spacing inside content */
.sixth-section .col-content h2 {
  margin: 0 0 8px;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
}

.sixth-section .col-content p {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 550;
  line-height: 1.4;
}

.sixth-section .col-content span {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.sixth-section .col-content ul {
  margin: 0 0 12px;
  padding-left: 1.25em;
  font-size: 20px;
  line-height: 1.4;
}

/* Mobile: stack columns vertically (no flex) */
@media (max-width: 768px) {
  .sixth-section {
    display: block;
    padding: 20px;
  }

  .sixth-section .col {
    width: 100%;
    margin-bottom: 16px;
    margin-left: 0;

  }

  .sixth-section .col-image img {
    width: 100%;
    height: auto;
  }

  .sixth-section .col-content h2 {
    margin: 0 0 8px;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1;

  }

  .sixth-section .col-content p {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;

  }

  .sixth-section .col-content ul {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
  }

  .sixth-section .col-content span {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
  }
}

.section-seven {
  background: url(./assets/bubble-bg-blue.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0px;
  color: #ffffff;
  /* text and headings white */
}

/* container: two-column flex layout */
.section-seven__container {
  display: flex;
  gap: 20px;
  /* adjust as needed */
  align-items: center;
  /* vertical center alignment of columns */
}

/* columns */
.section-seven__col {
  display: flex;
  align-items: center;
  /* vertically center content inside each column */
  justify-content: flex-start;
}

/* widths: left 70%, right 30% */
.section-seven__col--left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* ensure left alignment */
  text-align: left;
  /* explicit text alignment */
}


.section-seven__col--left p {
  margin: 0 0 16px 0;
  color: #ffffff;
  font-size: 20px;

}

.section-seven__col--left h2 {
  font-size: 36px;
  color: #ffffff;
}

/* keep last paragraph margin smaller */
.section-seven__col--left p {
  margin-bottom: 0;
}

/* right column 30% and center its content horizontally */
.section-seven__col--right {
  flex: 0 0 45%;
  justify-content: right;
  /* center button horizontally in the column */
}

/* button style */
.btn-contact {
  background: rgba(255, 255, 255, 0.27);
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 0;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* arrow (optional styling) */
.btn-arrow {
  display: inline-block;
}

/* Responsive: on small screens stack columns and make each 100% width, showing one by one */
@media (max-width: 768px) {
  .section-seven__container {
    flex-direction: column;
    align-items: stretch;
  }

  .section-seven__col--left,
  .section-seven__col--right {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .section-seven__col--left h2 {
    font-size: 25px;
    color: #ffffff;

  }

  /* ensure vertical spacing between stacked columns */
  .section-seven__col+.section-seven__col {
    margin-top: 20px;
  }

}

.section-eight {
  padding: 50px 0px;
}

.section-eight__col {
  position: relative;
  padding: 30px;
  min-height: 200px;
  /* adjust as needed to ensure vertical centering space */
  background-image: url('./assets/bubble-bg-gray.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  /* vertical middle */
  justify-content: center;
  /* horizontal center */
  text-align: center;
  color: #ffffff;
  /* ensure paragraph is readable */
  overflow: hidden;
  border-radius: 25px ;
}

/* overlay with color #374151 at desired opacity (e.g., 0.6) */
.section-eight__col::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(55, 65, 81, 0.6);
  /* #374151 with 0.6 opacity */
  z-index: 0;
}

/* paragraph sits above overlay */
.section-eight__col p {
  position: relative;
  z-index: 1;
  font-size: 25px;
  margin: 0;
  max-width: 1100px;
}

@media (max-width: 768px) {
  .section-eight__col {
    justify-content: center;
    /* horizontal center */
    align-items: center;
    /* vertical middle */

  }

  .section-eight__col p {
    text-align: center;
    font-size: 20px;
    
  }
  .section-eight {
  padding: 50px 20px;
}
}



.faq-wrap {

  margin: 0 auto;
  padding: 50px 0px;
}

.faq-title {
  font-size: 40px;
  font-weight: 800;
  margin: 6px 0 18px;
}

/* Accordion container */
.accordion {
  display: grid;
  gap: 10px;
}

/* Item container */
.item {
  background: transparent;
  border-radius: 12px;
}

/* Button that looks like pill card */
.summary-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  background: #E5E7EB;
  /* card bg */
  border: 1px solid #e1e6ee;
  /* border */
  border-radius: 999px;
  /* pill */
  box-shadow: 0 2px 6px rgba(16, 24, 40, 0.06);
  cursor: pointer;
  transition: all .18s ease;
  font-weight: 600;
  color: #111827;
  text-align: left;
}

.summary-btn:focus {
  outline: 3px solid rgba(15, 62, 138, 0.12);
  outline-offset: 3px;
}

.summary-btn .qtext {
  flex: 1 1 auto;
  font-size: 20px;
}

.summary-btn .chev {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #ffffff;
  transition: transform .22s ease, background .18s ease;
  color: #bfc7d0;
  /* muted */
}

/* Active item style: dark blue background with white text */
.item[aria-expanded="true"] .summary-btn {
  background: #0f3e8a;
  /* accent */
  color: #ffffff;
  border-color: #0f3e8a;
}

.item[aria-expanded="true"] .summary-btn .chev {
  background: #3B82F6;
  color: #000000;
  transform: rotate(180deg);
}

/* Panel area with animated height */
.panel {
  overflow: hidden;
  border-radius: 12px;
  padding: 0 2px;
  background: transparent;
  transition: height .28s cubic-bezier(.2, .9, .2, 1);
}

.panel-inner {
  padding: 14px 18px;
  background: #f3f6fa;
  border: 1px solid #e1e6ee;
  border-radius: 30px;
  margin-top: 8px;
  color: #233044;
  font-weight: 400;
  line-height: 1.5;
  font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 520px) {


  .faq-wrap {
    padding: 50px 20px;
  }

  .summary-btn {
    padding: 12px 14px;
  }

  .summary-btn .chev {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .faq-title {
    font-size: 25px;
    text-align: center;
  }

  .summary-btn .qtext {
    flex: 1 1 auto;
    font-size: 14px;

  }

  .panel-inner {
    font-size: 14px;
  }
}

/* Section wrapper */
.section10 {
  padding: 50px 0px;
  box-sizing: border-box;
  background-color: #e9ecef;
  background-image: url('./assets/gray-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.section10 h2 {
  font-size: 60px;
  text-align: center;
}

/* Container that holds columns */
.section10 .columns {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-top: 50px;
}

/* Column card */
.section10 .col {
  flex: 1 1 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-height: 200px;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
  position: relative;
  overflow: hidden;
  height: 50vh;
  justify-content: center;
}

/* Subtle overlay for image backgrounds */
.section10 .col.bg-image::before {
  content: "";
  position: absolute;
  inset: 0;


  pointer-events: none;
}

/* Background images for specific columns */
.section10 .col.bg-image.col-2 {
  background-image: url('./assets/card-background.png');
  background-size: cover;
  background-position: center;
  color: white;


}
.section10 .col.bg-image.col-2 p{
  color: white;
}




.section10 .col.bg-image.col-3 {

  background-size: cover;
  background-position: center;
  color: #fff;
}

.section10 .col .content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.section10 .col img {
  width: 60px;
  margin-bottom: 15px;
  
  object-fit: cover;
  border-radius: 8px;
}

.section10 h2 {
  font-size: 45px;
}

.section10 .col h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  color: #3B82F6;
}
.section10 .col-2 h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  color: white;
}

.section10 .col p {
  margin-top: 10px;
  color: #474747;
  font-size: 20px;
}

.section10 .col .btn {
  margin-top: 50px;
  display: inline-block;
  padding: 10px 14px;
  background: transparent;
  color: black;
  border-radius: 1px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  border: 2px solid #1f6feb;
}
.section10 .col-2 .btn{
  color: white;
  border-radius: 1px;
  background: transparent;
  border: 2px solid #ffffff;

}



/* Responsive: mobile stacked columns */
@media (max-width:768px) {
  .section10 {
    padding: 30px 20px;
  }

  .section10 h2 {
    font-size: 25px;
  }

  .section10 .columns {
    display: block;
    
  }

  .section10 .col {
    width: 100%;
    margin-bottom: 24px;
    display: block;
    padding: 18px;
    

  }

  .section10 .col img {
    width: 40px;
    height: 40px;
  }

  .section10 .col .btn {
    display: inline-block;
    margin-top: 12px;
  }

  
}

/* Replace the URL below with your image path */
.blog-feed{
  display: flex;
  flex-direction: column; /* or row if horizontal */
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
  height: 50vh;
  background-image: url('./assets/bubble-bg-white.png');
  background-size: cover;
  background-position: center right;
  padding: 50px 0px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  color: #0b0b0b;
}


/* optional decorative bubbles on the right */
.blog-feed::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 90% 20%, rgba(255,255,255,0.35) 0 40px, transparent 41px),
    radial-gradient(circle at 95% 65%, rgba(255,255,255,0.25) 0 60px, transparent 61px);
  mix-blend-mode: overlay;
  
}

.blog-feed__inner{
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  
}

/* Title */
.blog-feed__title{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 16px;
}

/* Meta row */
.blog-feed__meta{
  display: flex;
  gap: 18px;
  justify-content: center;
  color: black;
  font-size: 18px;
  letter-spacing: 1px;
}

.blog-feed__meta .meta-item{
  display: inline-block;
  padding: 4px 6px;
}
.blog-feed__meta .dot{
  color:gray;
}

/* Responsive: mobile padding 50px 20px */
@media (max-width: 600px){
  .blog-feed{
    padding: 50px 20px;
  }
  .blog-feed__title{
    font-size: 25px;
  }
  .blog-feed__meta{
    gap: 12px;
    font-size: 15px;
  }
}

/* Footer with 20px padding; mobile padding 20px (top/bottom) */
.site-footer{
  background:#0f1720; /* dark navy */
  color:#e6eef7; /* light text */
  padding:50px;
  box-sizing:border-box;
  text-align:center;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.site-footer__inner{
  max-width:980px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}

/* Logo */
.site-footer__logo img{
  width:150px;
  height:150px;
  object-fit:contain;
  display:block;
  margin:0 auto;
}

/* Description */
.site-footer__desc{
  margin:0;
  font-size:20px;
  line-height:1.45;
  max-width:520px;
  color:#ffffff;
}

/* Nav */
.site-footer__nav{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:center;
  padding:0;
  margin:0;
}

.site-footer__link{
  color:#ffffff;
  text-decoration:none;
  font-size:20px;
  transition:color .15s;
}

.site-footer__link:hover,
.site-footer__link:focus{
  color:#ffffff;
}

/* Phone */
.site-footer__phone{
  display:flex;
  gap:8px;
  align-items:center;
  color:#ffffff;
  font-size:18px;
}



.site-footer__phone .phone-number{
  color:inherit;
  text-decoration:none;
  font-weight:600;
  
}

/* small separator dot between nav and phone on wide screens (optional) */
@media (min-width:720px){
  .site-footer__inner{
    gap:18px;
  }
  .site-footer__nav{
    order:0;
  }
  .site-footer__phone{
    order:0;
  }
}

/* Mobile adjustments: padding 20px (top/bottom) and stacked compact layout */
@media (max-width:719px){
  .site-footer{
    padding:20px 20px;
  }
  .site-footer__inner{
    gap:10px;
  }
  .site-footer__logo img{
    width:100px;
    
  }
  .site-footer__desc{
    font-size:18px;
    max-width:320px;
  }
  .site-footer__nav{
    gap:12px;
    flex-wrap:wrap;
  }
  .site-footer__link{
    font-size:15px;
  }
  .site-footer__phone{
    font-size:15px;
    
  }
}

/* Accessibility: focus outlines */
.site-footer__link:focus,
.site-footer__phone a:focus{
  outline:3px solid rgba(255,255,255,0.08);
  outline-offset:3px;
  border-radius:4px;
}

