

/* ===== CONTACT SECTION ===== */
.main-wrapper{
  padding:60px 20px;
  background:#f4f4f4;
}

/* FORM TITLE */
.lifestyle h4{
  font-size:18px;
  font-weight:600;
  margin-bottom:10px;
}

.lifestyle hr{
  border:0;
  height:1px;
  background:#ddd;
  margin-bottom:20px;
}

/* FORM LABELS */
.commentform label{
  font-size:13px;
  font-weight:600;
  margin-bottom:5px;
  display:block;
}

/* INPUT FIELDS */
.commentform input,
.commentform textarea{
  width:100%;
  padding:10px;
  border:1px solid #ccc;
  border-radius:2px;
  margin-bottom:15px;
  font-size:14px;
}

/* TEXTAREA HEIGHT */
.commentform textarea{
  height:120px;
  resize:none;
}

/* BUTTON */
.commentform .btn{
  background:#f4b400;   /* 🔥 yellow button */
  border:none;
  padding:12px 25px;
  color:#fff;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
}

.commentform .btn:hover{
  background:#d89c00;
}

/* RIGHT SIDE TEXT */
.contact-para p{
  font-size:14px;
  color:#555;
  line-height:1.7;
  margin-bottom:12px;
}

.contact-para strong{
  color:#000;
}

/* SOCIAL LINKS */
.sociallinks{
  list-style:none;
  padding:0;
}

.sociallinks li{
  margin-bottom:10px;
}

.sociallinks a{
  color:#333;
  text-decoration:none;
  font-size:14px;
}

.sociallinks a:hover{
  color:#0207f6;
}


@media(max-width:768px){

  .main-wrapper{
    padding:40px 15px;
  }

  .commentform input,
  .commentform textarea{
    margin-bottom:12px;
  }

}


/* ===== CONTACT SECTION ===== */
.main-wrapper{
  padding:80px 20px;
  background:#f3f3f3;
}

/* FORM TITLE */
.lifestyle h4{
  font-size:16px;
  font-weight:600;
  letter-spacing:1px;
  margin-bottom:10px;
}

.lifestyle hr{
  border:none;
  height:1px;
  background:#e0e0e0;
  margin-bottom:25px;
}

/* LABELS */
.commentform label{
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
  color:#333;
  margin-bottom:6px;
  display:block;
}

/* INPUTS */
.commentform input,
.commentform textarea{
  width:100%;
  padding:10px 12px;
  border:1px solid #ddd;       /* 🔥 thin border */
  background:#fff;
  font-size:14px;
  outline:none;
  margin-bottom:18px;
}

/* FOCUS EFFECT */
.commentform input:focus,
.commentform textarea:focus{
  border-color:#0207f6;
}

/* TEXTAREA */
.commentform textarea{
  height:130px;
  resize:none;
}

/* BUTTON */
.commentform .btn{
  background:#f4b400;          /* 🔥 exact yellow */
  color:#fff;
  border:none;
  padding:12px 30px;
  font-size:13px;
  font-weight:600;
  letter-spacing:1px;
  cursor:pointer;
  display:inline-block;
}

.commentform .btn:hover{
  background:#d89c00;
}

/* RIGHT CONTENT */
.contact-para h5{
  font-size:14px;
  font-weight:700;
  margin-bottom:8px;
}

.contact-para p{
  font-size:14px;
  color:#555;
  line-height:1.7;
  margin-bottom:12px;
}

/* SOCIAL LINKS */
.sociallinks{
  list-style:none;
  padding:0;
}

.sociallinks li{
  margin-bottom:8px;
}

.sociallinks a{
  color:#333;
  font-size:14px;
  text-decoration:none;
}

.sociallinks a:hover{
  color:#0207f6;
}



/* MAIN SECTION */
.main-wrapper{
  padding:80px 20px;
  background:#f3f3f3;
}

/* CARD CONTAINER */
.contact-box{
  max-width:1100px;
  margin:auto;
  background:#fff;
  padding:30px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* GRID LAYOUT */
.contact-row{
  display:flex;
  gap:30px;
}

/* LEFT FORM */
.contact-form{
  flex:2;
}

/* RIGHT DETAILS */
.contact-info{
  flex:1;
}










/* MAIN WRAPPER FIX */
.main-wrapper{
  padding:100px 20px 60px;   /* space from navbar */
}

/* CENTER CONTENT */
.main-wrapper .container{
  max-width:1100px;
  margin:auto;
}

/* GRID FIX */
.main-wrapper .row{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
}

/* LEFT FORM */
.col-md-7{
  flex:2;
}

/* RIGHT DETAILS */
.col-md-3{
  flex:1;
}

/* SOCIAL */
.col-md-2{
  flex:1;
}


/* REMOVE BOOTSTRAP EFFECT */
.commentform .row{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
}

/* 3 INPUT ROW */
.commentform .col-md-4{
  width:32%;
}

/* FULL WIDTH */
.commentform .col-md-12{
  width:100%;
}

/* MOBILE */
@media(max-width:768px){
  .commentform .col-md-4{
    width:100%;
  }
}


/* BUTTON CENTER */
.commentform .btn{
  display:inline-block;
  width:auto;            /* 🔥 FIX full width issue */
  padding:12px 25px;
}

/* OPTIONAL CENTER */
.commentform .col-md-12{
  text-align:left;       /* change to center if needed */
}

/* RIGHT SIDE SPACING */
.contact-para{
  padding-top:10px;
}

/* HEADINGS */
.contact-para p strong{
  display:block;
  margin-top:10px;
  margin-bottom:5px;
}

/* STACK ALL */
@media(max-width:768px){

  .main-wrapper .row{
    flex-direction:column;
  }

  .col-md-7,
  .col-md-3,
  .col-md-2{
    width:100%;
  }

}

/* INPUT ROW FIX */
.commentform .row{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}

/* 3 INPUTS SAME LINE */
.commentform .col-md-4{
  flex:1;
  min-width:200px;
}

/* CENTER WHOLE SECTION */
.main-wrapper{
  padding:100px 20px;
  background:#f3f3f3;
}

.main-wrapper .container{
  max-width:1100px;   /* 🔥 reduce width */
  margin:auto;
}

/* MAIN ROW */
.main-wrapper .row{
  display:flex;
  gap:50px;
  align-items:flex-start;
}

/* LEFT FORM */
.col-md-7{
  flex:1.5;
}

/* RIGHT DETAILS */
.col-md-3{
  flex:1;
}

/* SOCIAL */
.col-md-2{
  flex:0.8;
}











/* MOBILE */
@media(max-width:768px){

  .hamburger{
    display:flex;
  }

  /* HIDE MENU */


  /* SHOW MENU WHEN ACTIVE */
  #nav-menu.active{
    display:flex;
  }

}


/* DESKTOP */
.main-wrapper{
  margin-top:90px;
}

/* MOBILE */
@media(max-width:768px){
  .main-wrapper{
    margin-top:80px;
  }
}
/* BUTTON COLOR SAME AS NAVBAR */
.commentform .btn{
  background:#0207f6 !important;  /* 🔥 navbar blue */
  color:#fff;
  border:none;
  padding:12px 28px;
  font-weight:600;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}
/* HOVER EFFECT */
.commentform .btn:hover{
  background:#0000cc;  /* slightly darker blue */
}



.brand-banner {
  font-size: 22px;
  font-weight: bold;
  color: #0a567a;
  margin-left: 10px;
  display: flex;
}
.logo{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-banner {
  font-size: 20px;
  font-weight: 700;
  color: #fff; /* IMPORTANT for blue bg */
  line-height: 1.2;
}

.brand-banner {
  white-space: nowrap;
}


.hero {
  margin-top: 80px; /* adjust based on navbar height */
}


.hero {
  padding-top: 120px;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
}


.logo {
  display: flex;
  align-items: center;
  gap: 12px; /* 👈 THIS ADDS SPACE BEFORE ICON */
}

.logo img {
}



@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    padding: 20px 15px; /* reduce space */
    min-height: auto;   /* remove full height issue */
  }

  .hero-content {
    width: 100%;
    text-align: center;
    margin-top: 0; /* remove extra push */
  }

  .hero-content h1 {
    padding-top: 20px; /* FIX: was 140px ❌ */
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
    margin: 10px 0;
  }

}



.sociallinks {
  list-style: none;
  padding: 0;
}

.sociallinks li {
  margin: 8px 0;
}

.sociallinks a {
  text-decoration: none;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.sociallinks a:hover {
  color: #0a567a;
}

.sociallinks i {
  font-size: 16px;
  width: 20px;
}

.sociallinks a {
  color: #000000;              /* FIX: dark text */
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

/* ICON COLOR */
.sociallinks i {
  color: #0a2cff;          /* brand blue */
  font-size: 16px;
  width: 20px;
}

/* HOVER EFFECT */
.sociallinks a:hover {
  color: #0a2cff;
  transform: translateX(5px);
}


.sociallinks a {
  color: #000;              /* DARK TEXT */
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
}

/* ICON STYLE */
.sociallinks i {
  color: #0a2cff;           /* BRAND BLUE */
  font-size: 16px;
  width: 22px;
}

/* HOVER EFFECT */
.sociallinks a:hover {
  color: #0a2cff;
  transform: translateX(5px);
}



.sociallinks {
  list-style: none;
  padding: 0;
}

.sociallinks li {
  margin: 10px 0;
}

.sociallinks a {
  color: #000 !important;   /* FORCE DARK */
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sociallinks i {
  color: #0a2cff;
  font-size: 16px;
  width: 22px;
}

.sociallinks a:hover {
  color: #0a2cff !important;
}

.darkcolor {
  color: #000 !important;
  opacity: 1 !important;
}.sociallinks a {
  color: #000 !important;   /* FORCE BLACK */
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sociallinks i {
  color: #0a2cff;
  font-size: 16px;
  width: 22px;
}

.sociallinks a:hover {
  color: #0a2cff !important;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-container {
  display: flex;
  justify-content: center;   /* 🔥 CENTER ALL */
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  max-width: 300px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-container {
  display: flex;
  justify-content: center;   /* 🔥 CENTER ALL */
  gap: 60px;
  flex-wrap: wrap;
}

.footer-col {
  max-width: 300px;
}

.whatsapp-icon {
  color: #25D366;
  font-size: 22px;
  margin-right: 10px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 10px;
}


.whatsapp-icon{
    color:#25D366 !important;
    font-size:24px;
    margin-right:10px;
}


.info-box{
    display:flex;
    align-items:center;
    gap:10px;
}

.location-icon{
    color:#EA4335 !important;   /* Google Maps red */
    font-size:24px;
    width:24px;
    text-align:center;
}

.info-box span{
    color:#fff;
    font-size:16px;
    font-weight:500;
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:12px;
    margin:12px 0;
    color:#fff;
    font-size:15px;
}

.footer-icon{
    width:22px;
    font-size:20px;
    text-align:center;
}

.location{
    color:#EA4335;      /* Google Maps Red */
}

.email{
    color:#ffffff !important;      /* Blue */
}

.whatsapp{
    color:#25D366;      /* WhatsApp Green */
}


.footer-icon.email{
    color: #4dabff;
    font-size: 22px;
    margin-right: 10px;
    transition: .3s;
}

/* Footer Contact */
.footer-contact{
    margin-top:20px;
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:14px;
    margin:14px 0;
    color:#fff;
    font-size:16px;
    line-height:1.5;
}

/* SAME SIZE FOR ALL ICONS */
.footer-contact i{
    width:26px;
    min-width:26px;
    text-align:center;
    font-size:22px;
    vertical-align:middle;
}

/* Individual Colors */
.footer-contact .fa-map-marker{
    color:#EA4335;
}

.footer-contact .fa-envelope{
    color:#4dabff;
}

.footer-contact .fa-whatsapp{
    color:#25D366;
}


/* =========================================================
   FINAL CONTACT PAGE DESIGN
   Header + footer are intentionally unchanged.
========================================================= */

.main-wrapper{
  margin-top:80px !important;
  padding:72px 24px 70px !important;
  background:#f3f3f3 !important;
  width:100%;
}

.main-wrapper .container{
  width:100%;
  max-width:1180px !important;
  margin:0 auto !important;
  padding:0 !important;
}

.main-wrapper .row{
  display:grid !important;
  grid-template-columns:minmax(0,1.55fr) minmax(0,1fr) minmax(170px,.65fr) !important;
  gap:48px !important;
  align-items:start !important;
  margin:0 !important;
}

.main-wrapper .row > [class*="col-"]{
  width:auto !important;
  min-width:0 !important;
  padding:0 !important;
  float:none !important;
}

.main-wrapper .lifestyle h4{
  margin:0 0 11px !important;
  padding:0 !important;
  color:#111 !important;
  font-size:15px !important;
  font-weight:700 !important;
  letter-spacing:.2px !important;
  line-height:1.3 !important;
}

.main-wrapper .lifestyle hr{
  width:100% !important;
  height:1px !important;
  margin:0 0 24px !important;
  border:0 !important;
  background:#dedede !important;
  position:relative !important;
}

.main-wrapper .lifestyle hr::after{
  content:"";
  display:block;
  width:42px;
  height:2px;
  background:#0207f6;
  position:relative;
  top:-1px;
}

.main-wrapper .commentform{
  width:100%;
}

.main-wrapper .commentform .row{
  display:grid !important;
  grid-template-columns:1fr 1fr !important;
  gap:20px 24px !important;
  margin:0 !important;
}

.main-wrapper .commentform .col-md-4,
.main-wrapper .commentform .col-md-12{
  width:auto !important;
  min-width:0 !important;
  padding:0 !important;
  margin:0 !important;
}

.main-wrapper .commentform .col-md-4:nth-child(3),
.main-wrapper .commentform .col-md-12:nth-of-type(4),
.main-wrapper .commentform .col-md-12:nth-of-type(5){
  grid-column:1 / -1 !important;
}

.main-wrapper .commentform label{
  display:block !important;
  margin:0 0 8px !important;
  color:#303030 !important;
  font-size:12px !important;
  font-weight:600 !important;
  letter-spacing:.1px !important;
}

.main-wrapper .commentform .required{
  color:#e31e24 !important;
}

.main-wrapper .commentform input[type="text"],
.main-wrapper .commentform input[type="email"],
.main-wrapper .commentform textarea{
  display:block !important;
  width:100% !important;
  margin:0 !important;
  padding:0 13px !important;
  height:45px !important;
  border:1px solid #d9d9d9 !important;
  border-radius:4px !important;
  background:#fff !important;
  color:#222 !important;
  font-size:14px !important;
  line-height:1.4 !important;
  outline:none !important;
  box-shadow:none !important;
  transition:border-color .2s ease,box-shadow .2s ease !important;
}

.main-wrapper .commentform textarea{
  height:145px !important;
  min-height:145px !important;
  padding:12px 13px !important;
  resize:vertical !important;
}

.main-wrapper .commentform input[type="text"]:focus,
.main-wrapper .commentform input[type="email"]:focus,
.main-wrapper .commentform textarea:focus{
  border-color:#0207f6 !important;
  box-shadow:0 0 0 3px rgba(2,7,246,.08) !important;
}

.main-wrapper .commentform .col-md-12:last-child{
  padding-top:2px !important;
}

.main-wrapper .commentform input[type="submit"].btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:auto !important;
  min-width:140px !important;
  height:44px !important;
  margin:0 !important;
  padding:0 26px !important;
  border:0 !important;
  border-radius:4px !important;
  background:#0207f6 !important;
  color:#fff !important;
  font-size:13px !important;
  font-weight:700 !important;
  letter-spacing:0 !important;
  cursor:pointer !important;
  transition:background .25s ease,transform .25s ease,box-shadow .25s ease !important;
}

.main-wrapper .commentform input[type="submit"].btn:hover{
  background:#0000cc !important;
  transform:translateY(-1px);
  box-shadow:0 7px 18px rgba(2,7,246,.18);
}

/* Middle story column */
.main-wrapper .contact-para{
  padding-top:0 !important;
  margin:0 !important;
}

.main-wrapper .contact-para p{
  margin:0 0 17px !important;
  padding:0 !important;
  color:#555 !important;
  font-size:13px !important;
  line-height:1.8 !important;
}

.main-wrapper .contact-para p strong{
  display:block !important;
  margin:22px 0 7px !important;
  color:#111 !important;
  font-size:14px !important;
  font-weight:700 !important;
}

.main-wrapper .contact-para p:first-child strong{
  margin-top:0 !important;
}

/* Social column */
.main-wrapper .sociallinks{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
}

.main-wrapper .sociallinks li{
  margin:0 0 13px !important;
  padding:0 !important;
}

.main-wrapper .sociallinks a{
  display:flex !important;
  align-items:center !important;
  gap:11px !important;
  color:#111 !important;
  font-size:13px !important;
  font-weight:600 !important;
  line-height:1.4 !important;
  text-decoration:none !important;
  transition:.2s ease !important;
}

.main-wrapper .sociallinks i{
  width:20px !important;
  color:#0207f6 !important;
  font-size:15px !important;
  text-align:center !important;
}

.main-wrapper .sociallinks a:hover{
  color:#0207f6 !important;
  transform:translateX(3px);
}

/* =========================================================
   LOWER WORKING-WITH AREA
   ========================================================= */

.dbros-work-section{
  width:100%;
  margin:54px 0 0;
  padding:40px 0 0;
  border-top:1px solid #dedede;
}

.dbros-work-section h2{
  margin:0 0 8px;
  color:#111;
  font-size:25px;
  font-weight:700;
  line-height:1.3;
}

.dbros-work-intro{
  margin:0 0 24px;
  color:#666;
  font-size:14px;
}

.dbros-client-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin:0 0 30px;
}

.dbros-client-item{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:14px 12px;
  background:#fff;
  border:1px solid #e1e1e1;
  border-radius:7px;
  color:#333;
  text-align:center;
  font-size:13px;
  font-weight:600;
  transition:.25s ease;
}

.dbros-client-item:hover{
  color:#0207f6;
  border-color:rgba(2,7,246,.35);
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.dbros-work-description{
  max-width:900px;
}

.dbros-work-description p{
  margin:0 0 15px;
  color:#555;
  font-size:13px;
  line-height:1.8;
}

.dbros-work-description h3{
  margin:5px 0 7px;
  color:#111;
  font-size:16px;
  font-weight:700;
}

/* Contact information row */
.dbros-contact-info-area{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  width:100%;
  margin-top:40px;
  padding-top:30px;
  border-top:1px solid #dedede;
}

.dbros-info-box{
  padding:21px;
  background:#fff;
  border:1px solid #e2e2e2;
  border-radius:8px;
  transition:.25s ease;
}

.dbros-info-box:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 28px rgba(0,0,0,.06);
}

.dbros-info-icon{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
  border-radius:50%;
  background:rgba(2,7,246,.08);
  color:#0207f6;
  font-size:16px;
}

.dbros-info-box h3{
  margin:0 0 5px;
  color:#111;
  font-size:15px;
  font-weight:700;
}

.dbros-info-box p,
.dbros-info-box a{
  margin:0;
  color:#555;
  font-size:13px;
  line-height:1.6;
  text-decoration:none;
}

.dbros-info-box a:hover{
  color:#0207f6;
}

/* Responsive main section only */
@media (max-width:1050px){

  .main-wrapper{
    padding-left:20px !important;
    padding-right:20px !important;
  }

  .main-wrapper .row{
    grid-template-columns:minmax(0,1.35fr) minmax(0,1fr) minmax(145px,.65fr) !important;
    gap:28px !important;
  }

  .dbros-client-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){

  .main-wrapper{
    margin-top:75px !important;
    padding:48px 18px 60px !important;
  }

  .main-wrapper .row{
    display:flex !important;
    flex-direction:column !important;
    gap:42px !important;
  }

  .main-wrapper .row > [class*="col-"]{
    width:100% !important;
  }

  .main-wrapper .commentform .row{
    display:grid !important;
    grid-template-columns:1fr !important;
    gap:18px !important;
  }

  .main-wrapper .commentform .col-md-4,
  .main-wrapper .commentform .col-md-12{
    grid-column:auto !important;
    width:100% !important;
  }

  .main-wrapper .commentform input[type="submit"].btn{
    width:auto !important;
  }

  .dbros-work-section{
    margin-top:44px;
    padding-top:34px;
  }

  .dbros-work-section h2{
    font-size:22px;
  }

  .dbros-contact-info-area{
    grid-template-columns:1fr;
  }
}

@media (max-width:480px){

  .main-wrapper{
    padding-left:15px !important;
    padding-right:15px !important;
  }

  .main-wrapper .commentform input[type="text"],
  .main-wrapper .commentform input[type="email"]{
    height:43px !important;
  }

  .main-wrapper .commentform textarea{
    min-height:125px !important;
    height:125px !important;
  }

  .main-wrapper .commentform input[type="submit"].btn{
    width:100% !important;
  }

  .dbros-client-grid{
    grid-template-columns:1fr;
  }
}
/* =========================================================
   WORKING WITH + CONTACT INFO CARDS
   ========================================================= */

/* CLIENT CARDS */
.dbros-client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 25px 0 32px;
}

.dbros-client-item {
  min-height: 72px;
  padding: 18px 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;

  color: #222;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;

  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.04);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.dbros-client-item:hover {
  transform: translateY(-4px);

  border-color: #0207f6;

  color: #0207f6;

  box-shadow: 0 10px 25px rgba(2, 7, 246, 0.10);
}


/* =========================================================
   CONTACT INFORMATION CARDS
   ========================================================= */

.dbros-contact-info-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

  width: 100%;

  margin-top: 42px;
  padding-top: 32px;

  border-top: 1px solid #dedede;
}

.dbros-info-box {
  position: relative;

  min-height: 145px;

  padding: 24px 22px;

  background: #ffffff;

  border: 1px solid #e5e7eb;
  border-radius: 10px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.dbros-info-box:hover {
  transform: translateY(-5px);

  border-color: rgba(2, 7, 246, 0.35);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}


/* ICON */

.dbros-info-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 15px;

  background: #eef0ff;

  border-radius: 50%;

  color: #0207f6;

  font-size: 17px;
}


/* CARD TITLE */

.dbros-info-box h3 {
  margin: 0 0 6px;

  color: #111;

  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}


/* CARD TEXT */

.dbros-info-box p,
.dbros-info-box a {
  display: block;

  margin: 0;

  color: #555;

  font-size: 14px;
  font-weight: 400;

  line-height: 1.6;

  text-decoration: none;
}


/* LINK HOVER */

.dbros-info-box a:hover {
  color: #0207f6;
}


/* =========================================================
   WORKING WITH SECTION
   ========================================================= */

.dbros-work-section {
  padding-top: 42px;
}

.dbros-work-section h2 {
  margin-bottom: 8px;

  color: #111;

  font-size: 28px;
  font-weight: 700;
}

.dbros-work-intro {
  margin-bottom: 24px;

  color: #666;

  font-size: 14px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .dbros-client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dbros-contact-info-area {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

  .dbros-client-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }

  .dbros-client-item {
    min-height: 64px;

    padding: 15px;

    font-size: 14px;
  }

  .dbros-contact-info-area {
    grid-template-columns: 1fr;

    gap: 15px;

    margin-top: 32px;
    padding-top: 25px;
  }

  .dbros-info-box {
    min-height: auto;

    padding: 20px;
  }

  .dbros-work-section h2 {
    font-size: 23px;
  }

}