* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

.custom-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.nav-wrapper {
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;   /* 🔥 kam height */
  height: 80px;        /* 🔥 fixed slim navbar */
  position: relative;
}

/* LOGO */
.nav-logo {
  flex: 0 0 auto;  /* No flex-grow, align logo to left */
  margin-left: 0px;  /* Adjusted to zero to ensure logo aligns perfectly to left */
}

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}


/* LOGO IMAGE */

.nav-logo img {
  height: 100%;   /* 🔥 wrapper ke andar fit */
  max-height: 150px;
  width: auto;
  display: block;
}

/* hover effect (optional) */
.nav-logo img:hover {
  opacity: 0.8;
  transition: 0.3s ease;
}


/* MENU */
.nav-menu {
  flex: 1;
  display: flex;
  justify-content: center;  /* Center the menu items */
  z-index: 1000;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 180px;
  display: none;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.dropdown-content li {
  padding: 10px;
}

.nav-dropdown:hover .dropdown-content {
  display: block;
}

/* RIGHT MENU */
.right-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.right-menu a {
  text-decoration: none;
  color: #000;
}

.contact-btn {
  background: #0154a0;
  color: #fff !important;
  padding: 8px 15px;
  border-radius: 4px;
}

/* MOBILE BUTTON */
.hamburger-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
  z-index: 1001;
}

/* MOBILE */
.mobile-only-item {
  display: none;
}

@media (max-width: 900px) {

  .hamburger-menu {
    display: block;
  }

  /* NAV CONTAINER */
  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
  }

  /* OPEN MENU */
  .nav-menu.active {
    max-height: 100vh;
    overflow-y: auto;
  }

  /* VERTICAL LEFT ALIGNED MENU */
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* left align */
    padding: 10px 20px;
    gap: 0;
    width: 100%;
  }

  .nav-links li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #eee;
  }

  /* LINKS FULL WIDTH */
  .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 0;
    text-align: left;
  }

  .nav-logo img {
  height: 100px;   /* mobile size */
}

  /* DROPDOWN MOBILE */
  .dropdown-content {
    position: static;
    display: none;
    background: #f5f5f5;
    box-shadow: none;
    padding-left: 15px;
  }

  /* JS CONTROL */
  .nav-dropdown.active .dropdown-content {
    display: block !important;
  }

  .nav-dropdown > a {
    cursor: pointer;
  }

  /* IMPORTANT FIX: remove hover conflict */
  /* Removed .nav-dropdown:hover .dropdown-content as hover is not needed in mobile */

  /* RIGHT SIDE HIDE */
  .right-menu {
    display: none;
  }

  /* MOBILE ITEMS */
  .mobile-only-item {
    display: block;
  }

  /* ================= SERVICES FIX ================= */
  .services {
    width: 100%;
    padding: 0;
  }

  .services li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .title {
    font-size: 26px;
    line-height: 1.2;
  }

  .number {
    font-size: 12px;
    color: #999;
  }

}






/* html,
body {
  width: 100%;
  overflow-x: hidden;
}
 */




/* HERO */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 80px;
    overflow: hidden;
    text-align: left;
}

/* CONTENT */
.content-container {
    max-width: 1400px;
    z-index: 2;
    width: 100%;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    color: #000;
    letter-spacing: -2px;
    margin-left: 80px;
}

/* BACKGROUND LINES */
.bg-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    --x: 0px;
    --y: 0px;
    transform: translate(var(--x), var(--y));
}

.bg-lines::before,
.bg-lines::after {
    content: "";
    position: absolute;
    width: 150%;
    height: 2px;
    background: black;
    top: 40%;
    left: -20%;
}

.bg-lines::before {
    transform: rotate(30deg);
}

.bg-lines::after {
    transform: rotate(-30deg);
}



@media (max-width: 992px) {
  .hero {
    justify-content: center;
    text-align: center;
    min-height: 65vh;
  }

  .content-container {
    margin: auto;
  }

  .hero h1 {
    margin-left: 0;
    max-width: 90%;
  }

}


@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
    justify-content: flex-start;
    text-align: left;
    padding: 30px 15px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.15;
    margin-top: 50px;
    margin-left: 0;
  }


  .bg-lines::before,
  .bg-lines::after {
    opacity: 0.3;
  }
}



@media (max-width: 430px) {
  .hero {
    min-height: 50vh;
    padding: 25px 12px;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.1;
    margin-top: 70px;
    padding-left: 15px;
  }


  .bg-lines::before,
  .bg-lines::after {
    opacity: 0.25;
  }
}















                                             /* custom-marquee */
     .custom-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  background-color: #000;
  padding: 25px 0;
  box-sizing: border-box;
  cursor: pointer;
}

.marquee-runner {
  display: flex;
  width: max-content;
  animation: marqueeMove 35s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 60px; /* ✅ correct place */
}

.marquee-content span {
  font-size: 18px;
  font-weight: 500;
  color: white;
  white-space: nowrap; /* ✅ IMPORTANT */
}

/* Hover pause */
.custom-marquee:hover .marquee-runner {
  animation-play-state: paused;
}

/* TABLET */
@media (max-width: 992px) {
  .marquee-content {
    gap: 40px;
  }

  .marquee-content span {
    font-size: 14px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .custom-marquee {
    padding: 18px 0;
  }

  .marquee-content {
    gap: 25px;
  }

  .marquee-content span {
    font-size: 12px;
  }

  .marquee-runner {
    animation-duration: 25s; /* ✅ better speed */
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .marquee-content {
    gap: 20px;
  }

  .marquee-content span {
    font-size: 11px;
  }

  .marquee-runner {
    animation-duration: 20s;
  }
}

/* ANIMATION */
@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}










                                                  /* about-info */
.about-info {
  padding: 120px 20px;
  background: #fff;
  margin-top: 60px;
}

/* CONTAINER */
.about-container {
  max-width: 1000px;
  margin: auto;
}

/* TEXT */
.about-text {
  text-align: left;
}

/* PARAGRAPH */
.about-description {
  font-size: clamp(18px, 2.5vw, 26px); /* ✅ responsive */
  line-height: 1.6;
  color: #111;
  margin-bottom: 25px;
  letter-spacing: -0.3px;
}

/* LINK */
.about-link {
  text-decoration: none;
  font-size: clamp(16px, 2vw, 22px); /* ✅ responsive */
  color: #093d74;
  font-weight: 500;
  position: relative;
}

.about-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #0158a7;
  transition: 0.3s;
}

.about-link:hover::after {
  width: 100%;
}

/* ANIMATION */
.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: all 1s ease;
}

.reveal-left.show {
  opacity: 1;
  transform: translateX(0);
}
/* ================= TABLET ================= */
@media (max-width: 992px) {
  .about-info {
    padding: 90px 20px;
  }

  .about-text {
    text-align: left; /* ✅ LEFT ALIGN */
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .about-info {
    padding: 70px 15px;
  }

  .about-text {
    text-align: left; /* ✅ ensure left */
  }

  .about-description {
    line-height: 1.5;
  }

  .reveal-left {
    transform: translateX(-40px);
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .about-info {
    padding: 60px 15px;
  }

  .about-text {
    text-align: left; /* ✅ again force left */
  }

  .about-description {
    font-size: 16px;
  }

  .about-link {
    font-size: 15px;
  }
}



 






/* ==========================================
   QUOTE SECTION
========================================== */

.quote-section {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 20px;
    overflow: hidden;
}

/* CONTAINER */
.quote {
    position: relative;
    display: flex;
    align-items: flex-start;
    max-width: 1400px;
    gap: 20px;
    margin-left: 100px;
}

/* LEFT QUOTE */
.quote-mark-left {
    font-size: 120px;
    font-weight: 800;
    color: #093D74;
    line-height: 1;
    flex-shrink: 0;
}

/* RIGHT QUOTE */
.quote-mark-right {
    position: absolute;
    right: 440px;
    bottom: -60px;
    font-size: 120px;
    font-weight: 800;
    color: #093D74;
    line-height: 1;
}

/* ==========================================
   TEXT
========================================== */

.quote-text {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.3;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

/* ==========================================
   WORD SCROLL REVEAL ANIMATION
========================================== */

/* Default faded words */
.quote-text .word {
    color: rgba(9, 61, 116, 0.10);
    opacity: 0.2;
    transition:
        color 0.4s ease,
        opacity 0.4s ease;
}

/* Active words */
.quote-text .word.active {
    color: #093D74;
    opacity: 1;
}


/* ==========================================
   TABLET
========================================== */

@media(max-width:1024px){

.quote{
    margin-left:35px;
}

.quote-text{
    font-size:42px;
    line-height:1.45;
}

.quote-mark-left{
    font-size:85px;
}

.quote-mark-right{
    font-size:85px;
    right:18%;
    bottom:-28px;
}

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.quote-section{
    padding:60px 20px;
}

.quote{
    margin-left:0;
    gap:12px;
    width:100%;
}

.quote-text{
    font-size:30px;
    line-height:1.5;
    max-width:100%;
    padding-right:30px;
}

.quote-mark-left{
    font-size:60px;
}

.quote-mark-right{
    font-size:60px;
    right:10px;
    bottom:-18px;
}

}

/* ==========================================
   SMALL MOBILE
========================================== */

@media(max-width:480px){

.quote-section{
    padding:45px 16px;
}

.quote{
    gap:8px;
}

.quote-text{
    font-size:22px;
    line-height:1.6;
    padding-right:22px;
}

.quote-mark-left{
    font-size:46px;
}

.quote-mark-right{
    font-size:46px;
    right:5px;
    bottom:-12px;
}

}

/* ==========================================
   iPhone 14 Pro Max (430px)
========================================== */

@media(max-width:430px){

.quote-section{
    padding:42px 16px;
}

.quote-text{
    font-size:23px;
    line-height:1.6;
    padding-right:20px;
}

.quote-mark-left{
    font-size:42px;
}

.quote-mark-right{
    font-size:42px;
    right:2px;
    bottom:-10px;
}

}

/* ==========================================
   iPhone 14 / 13 / 12 (390px)
========================================== */

@media(max-width:390px){

.quote-text{
    font-size:21px;
}

.quote-mark-left{
    font-size:40px;
}

.quote-mark-right{
    font-size:40px;
    right:0;
    bottom:-8px;
}

}

/* ==========================================
   iPhone SE
========================================== */

@media(max-width:375px){

.quote-text{
    font-size:19px;
    line-height:1.65;
}

.quote-mark-left{
    font-size:36px;
}

.quote-mark-right{
    font-size:36px;
    right:0;
    bottom:-6px;
}

}





















/* img folder ha  */

/* Wrapper */
.wrapper45 {
    width: 100%;
    padding: 50px 20px;
    background: #0f0f0f;
    color: #fff;
    font-family: Arial, sans-serif;
}

.inner-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

/* Section caption */
.section-caption_text h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Carousel */
.previews-carousel {
    display: flex;
    overflow: hidden;
    gap: 20px;
}

.preview {
    min-width: 300px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.preview:hover {
    transform: translateY(-5px);
}

.preview-media {
    position: relative;
}

.preview-media img {
    width: 100%;
    display: block;
}

.preview-action {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #0158A7;
    padding: 6px 12px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s;
}

.preview:hover .preview-action {
    opacity: 1;
}

.previews-carousel.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
}

.previews-carousel {
    cursor: grab;
    cursor: -webkit-grab;
}

.preview-action a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* Preview content */
.preview-content {
    padding: 15px;
}

.preview-name {
    font-size: 14px;
    margin: 4px 0;
}

.preview-name__caption a {
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

/* Footer link */
.section-footer {
    margin-top: 40px;
    text-align: center;
}

.redlink span {
    color: #093D74;
    font-weight: bold;
    text-decoration: none;
}












/*=========================
 GOOGLE FONT
=========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    overflow-x:hidden;
}

.finance-section{
    position:relative;
    padding:120px 8%;
    overflow:hidden;
}

/*=========================
 BACKGROUND SHAPES
=========================*/

.bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    z-index:0;
}

.shape1{
    width:350px;
    height:350px;
    background:#0183C630;
    top:-100px;
    left:-120px;
}

.shape2{
    width:320px;
    height:320px;
    background:#00c6ff20;
    right:-100px;
    bottom:-80px;
}

/*=========================
 CONTAINER
=========================*/

.container{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

/*=========================
 LEFT CONTENT
=========================*/

.section-tag{
    display:flex;
    align-items:center;
    gap:15px;
    color:#0183C6;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:30px;
}

.section-tag .line{
    width:70px;
    height:3px;
    background:#0183C6;
}

.finance-content h1{
    font-size:65px;
    line-height:1.1;
    color:#111;
    margin-bottom:30px;
}

.finance-content p{
    color:#666;
    font-size:18px;
    line-height:1.9;
    margin-bottom:45px;
}

/*=========================
 FEATURE BOXES
=========================*/

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.feature-box{
    display:flex;
    align-items:center;
    gap:18px;

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.6);

    border-radius:24px;

    padding:22px;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.4s;
}

.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(1,131,198,.25);

}

.icon{

    width:60px;
    height:60px;

    border-radius:18px;

    background:#0183C6;

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:28px;

}

.feature-box span{

    font-size:18px;
    font-weight:600;

}

/*=========================
 RIGHT SIDE
=========================*/

.finance-right{

position:relative;

}

.cards-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

}

/*=========================
 GLASS CARD
=========================*/

.finance-card{

background:rgba(255,255,255,.75);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.8);

border-radius:35px;

padding:35px;

text-align:center;

box-shadow:0 20px 60px rgba(0,0,0,.08);

transition:.45s;

position:relative;

overflow:hidden;

}

/* Shine Effect */

.finance-card::before{

content:"";

position:absolute;

top:-150%;

left:-40%;

width:70%;

height:300%;

background:rgba(255,255,255,.4);

transform:rotate(25deg);

transition:.7s;

}

.finance-card:hover::before{

left:140%;

}

.finance-card:hover{

transform:translateY(-15px) scale(1.04);

box-shadow:0 30px 70px rgba(1,131,198,.25);

}

.card-icon{

width:75px;
height:75px;

margin:auto;

border-radius:24px;

background:#0183C6;

display:flex;

justify-content:center;

align-items:center;

font-size:34px;

color:#fff;

margin-bottom:22px;

}

.finance-card h3{

font-size:22px;

margin-bottom:12px;

color:#111;

}

.finance-card p{

font-size:16px;

color:#666;

line-height:1.7;

}

/*=========================
 FLOATING STATS
=========================*/

.floating-card{

position:absolute;

background:#fff;

padding:30px 35px;

border-radius:28px;

box-shadow:0 20px 60px rgba(0,0,0,.12);

z-index:10;

animation:float 4s ease-in-out infinite;

}

.top-card{

top:-40px;

left:-60px;

}

.bottom-card{

right:-40px;

bottom:-40px;

}

.floating-card h2{

font-size:55px;

color:#0183C6;

}

.floating-card p{

margin-top:10px;

color:#666;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-15px);

}

}

/*=========================
 SCROLL REVEAL
=========================*/

.reveal{

opacity:0;

transform:translateY(80px);

transition:1s;

}

.reveal.active{

opacity:1;

transform:translateY(0);

}

/*=========================
 RESPONSIVE
=========================*/

@media(max-width:1100px){

.container{

grid-template-columns:1fr;

}

.finance-content h1{

font-size:52px;

}

.top-card{

left:0;

}

.bottom-card{

right:0;

}

}

@media(max-width:768px){

.cards-grid{

grid-template-columns:1fr;

}

.feature-grid{

grid-template-columns:1fr;

}

.finance-content h1{

font-size:42px;

}

.floating-card{

display:none;

}

}












                                   /* ////////////////dm-form-section //// */
  .dm-form-section {
  padding: 90px 20px;
  background: #fff;
}

.dm-container {
  max-width: 1300px;
  margin: auto;
}

/* TITLE */
.dm-title {
  text-align: center;
}

.dm-title h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* FORM */
.dm-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT INPUTS */
.dm-left input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
  margin-bottom: 25px;
  font-size: 16px;
  outline: none;
}

/* BUDGET */
.dm-budget {
  position: relative;
  cursor: pointer;
}

.dm-budget input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
  cursor: pointer;
  background: transparent;
}

.dm-arrow {
  position: absolute;
  right: 0;
  top: 18px;
}

/* DROPDOWN */
.dm-budget-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  display: none;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dm-budget-list div {
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.dm-budget-list div:hover {
  background: #f5f5f5;
}

/* OPEN STATE */
.dm-budget.active .dm-budget-list {
  display: block;
}

/* RIGHT */
.dm-right h4 {
  margin-bottom: 20px;
}

/* TAGS */
.dm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.dm-tags input {
  display: none;
}

.dm-tags label span {
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s;
}

.dm-tags input:checked + label span {
  background: #093d74;
  color: #fff;
}

/* BUTTON ROW */
.dm-full {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start; /* DESKTOP: LEFT */
  margin-top: 20px;
}

/* BUTTON */
.dm-btn {
  background: #093d74;
  color: #fff;
  padding: 14px 40px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 4px;
}

.dm-btn:hover {
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 900px) {
  .dm-form {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dm-title h2 {
    font-size: 34px;
  }

  .dm-full {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .dm-form-section {
    padding: 60px 15px;
  }

  .dm-title h2 {
    font-size: 26px;
  }

  .dm-left input {
    font-size: 14px;
  }

  .dm-tags label span {
    font-size: 12px;
    padding: 6px 10px;
  }

  .dm-btn {
    width: 100%;
    padding: 12px;
  }

  .dm-full {
    justify-content: center; /* MOBILE: CENTER */
  }
}














/*==========================
        FOOTER
==========================*/

.site-footer{
    background:#111;
    color:#fff;
    padding:80px 20px 40px;
    font-family:Arial,sans-serif;
}

.footer-wrapper{
    max-width:1300px;
    margin:auto;
}

/*==========================
        TOP
==========================*/
.footer-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    margin-bottom:30px;      /* 10px se 30px kar dein */
    padding-bottom:30px;     /* 20px se 30px kar dein */
    border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-title h2{
    font-size:32px;
    line-height:1.3;
    max-width:750px;
    margin-bottom: 20px;
}

.footer-btn{
    display:inline-block;
    padding:12px 30px;
    border:1px solid #fff;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-btn:hover{
    background:#0158A7;
    border-color:#0158A7;
}

.footer-email a{
    color:#fff;
    text-decoration:none;
    font-size:20px;
}

.footer-email a:hover{
    color:#0158A7;
}

/*==========================
        GRID
==========================*/

.footer-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:40px;
    padding:60px 0;
}

.footer-col h4{
    font-size:22px;
    margin-bottom:18px;
    color:#fff;
}

.footer-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-col ul li{
    margin-bottom:12px;
    line-height:1.7;
    color:#ccc;
}

.footer-col ul li a{
    color:#ccc;
    text-decoration:none;
    transition:.3s;
}

.footer-col ul li a:hover{
    color:#0158A7;
    padding-left:5px;
}

/*==========================
      SOCIAL ICONS
==========================*/

.footer-social{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    border:1px solid #444;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff !important;
    transition:.3s;
}

.footer-social a i{
    color:#fff !important;
    font-size:17px;
}

.footer-social a:hover{
    background:#0158A7;
    border-color:#0158A7;
    transform:translateY(-3px);
}

/*==========================
        BOTTOM
==========================*/

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:35px;

    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:30px;
}

.footer-copy{
    justify-self:start;
}

.footer-copy p{
    margin:4px 0;
    font-size:14px;
    color:#999;
    line-height:1.6;
}

.footer-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.footer-logos img{
    height:42px;
    width:auto;
}

.footer-right{
    justify-self:end;
    color:#999;
    font-size:14px;
}

/*==========================
      RESPONSIVE
==========================*/

@media(max-width:1200px){

.footer-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:900px){

.footer-top{
    flex-direction:column;
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.footer-bottom{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-copy{
    justify-self:center;
}

.footer-logos{
    justify-content:center;
}

.footer-right{
    justify-self:center;
    text-align:center;
}

}

@media(max-width:600px){

.footer-grid{
    grid-template-columns:1fr;
}

.footer-title h2{
    font-size:26px;
}

.footer-btn{
    width:100%;
    text-align:center;
}

.footer-email{
    margin-top:15px;
}

.footer-email a{
    font-size:17px;
}

.footer-social{
    flex-wrap:wrap;
}

}

@media(max-width:400px){

.site-footer{
    padding:60px 15px 30px;
}

.footer-title h2{
    font-size:22px;
}

.footer-col h4{
    font-size:18px;
}

.footer-col ul li,
.footer-col ul li a{
    font-size:15px;
}

.footer-logos img{
    height:32px;
}

.footer-copy p,
.footer-right{
    font-size:13px;
}

}