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

    :root {
      --blue: #1a3ed4;
      --blue-dark: #1530b0;
      --orange: #f07232;
      --orange-hover: #e06020;
      --white: #ffffff;
      --gray-light: #f4f5f7;
      --text-muted: #6b7280;
      --nav-height: 64px;
    }
    
    .container {
        margin-right: auto;
        margin-left: auto;
        padding-left: 120px;
        padding-right: 120px;
        width: auto;
    }

    @media screen and (max-width: 768px) {
        .container {
            padding-left: 10px !important;
            padding-right: 10px !important;
            width: auto !important;
        }
            
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--white);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 200;
      background: linear-gradient(to right top, rgb(7, 56, 157), rgb(5, 65, 185), rgb(14, 73, 185), rgb(37, 106, 226), rgb(41, 118, 244));
      height: var(--nav-height);
      display: flex;
      align-items: center;
      padding: 0 32px 0 0;
      gap: 16px;
      box-shadow: 0 2px 16px rgba(0,0,0,.25);
    }

    .nav-logo {
        width: 227px;
        background: white;
        border-bottom-right-radius: 32px;
        margin-top: -15px;
    }
    .logo-icon {
        display: block;
        max-width: none;
        max-height: 3.5rem;
        height: 3.5rem;
        margin-left: 4px;
    }
    .logo-icon svg { width: 36px; height: 36px; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-left: auto;
      list-style: none;
    }
    .nav-links > li { position: relative; }

    .nav-links > li > a {
      color: white;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      opacity: .9;
      transition: opacity .2s;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 4px;
      cursor: pointer;
      padding: 22px 0;
    }
    .nav-links > li > a:hover { opacity: 1; }
    .nav-arrow { font-size: 10px; transition: transform .22s; display: inline-block; }
    .nav-links > li:hover .nav-arrow { transform: rotate(180deg); }

    /* Desktop Dropdown */
    .dropdown {
      position: absolute;
      top: 100%;
      left: 50%;
      background: white;
      border-radius: 8px;
      box-shadow: 0 8px 32px rgba(0,0,0,.18);
      min-width: 210px;
      padding: 8px 0;
      opacity: 0;
      pointer-events: none;
      transform: translateX(-50%) translateY(-6px);
      transition: opacity .2s, transform .2s;
      z-index: 300;
    }
    .nav-links > li:hover .dropdown {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .dropdown::before {
      content: '';
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%);
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 6px solid white;
    }
    .dropdown a {
      display: block;
      padding: 10px 20px;
      color: #1e293b;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .5px;
      text-decoration: none;
      transition: background .15s, color .15s;
    }
    .dropdown a:hover { background: var(--gray-light); color: var(--blue); }

    .nav-login {
      display: flex;
      align-items: center;
      gap: 6px;
      color: white;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      white-space: nowrap;
      border: 1.5px solid rgba(255,255,255,.5);
      padding: 6px 14px;
      border-radius: 4px;
      transition: background .2s;
      flex-shrink: 0;
    }
    .nav-login:hover { background: rgba(255,255,255,.12); }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      margin-left: auto;
      background: none;
      border: none;
      padding: 4px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: white;
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      position: fixed;
      top: var(--nav-height);
      left: 0; right: 0;
      background: var(--blue-dark);
      z-index: 199;
      flex-direction: column;
      box-shadow: 0 8px 32px rgba(0,0,0,.3);
      max-height: calc(100vh - var(--nav-height));
      overflow-y: auto;
    }
    .mobile-menu.open { display: flex; }

    .mob-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: white;
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 15px 24px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      cursor: pointer;
      user-select: none;
      transition: background .15s;
    }
    .mob-item:hover { background: rgba(255,255,255,.07); }
    .mob-arrow { font-size: 11px; transition: transform .25s; }
    .mob-item.expanded .mob-arrow { transform: rotate(180deg); }

    .mob-sub {
      display: none;
      flex-direction: column;
      background: rgba(0,0,0,.22);
    }
    .mob-sub.open { display: flex; }
    .mob-sub a {
      color: rgba(255,255,255,.78);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .5px;
      text-transform: uppercase;
      padding: 12px 40px;
      border-bottom: 1px solid rgba(255,255,255,.05);
      transition: color .15s, background .15s;
    }
    .mob-sub a:hover { color: white; background: rgba(255,255,255,.07); }
    
    
    @media (max-width: 768px) {
      nav { padding: 0 16px; }
      .nav-links, .nav-login { display: none; }
      .hamburger { display: flex; }
    }    

















/* footer */
.footer {
    background: linear-gradient(to right top, rgb(7, 56, 157), rgb(5, 65, 185), rgb(14, 73, 185), rgb(37, 106, 226), rgb(41, 118, 244));
    padding: 40px 0;
    border-top: 1px solid #eee;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* container */
.footer .container{
max-width:1200px;
margin:auto;
padding:0 15px;
}

/* follow section */
.footer-follow{
display:flex;
align-items:center;
gap:20px;
flex-wrap:wrap;
padding-bottom:20px;
margin-bottom:20px;
border-bottom:1px solid #eee;
}

.footer-follow h5{
margin:0;
font-size:18px;
}

/* social icons */
.social{
display:flex;
gap:10px;
list-style:none;
margin:0;
padding:0;
}

.social a{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
background:#f5f5f5;
border-radius:50%;
color:#666;
transition:0.3s;
}

.social a:hover{
    background:#266de7;
    color:#fff;
    transform:translateY(-3px);
}

.social svg{
    width:18px;
    height:18px;
    fill:rgb(67,66,66);
}

.social a:hover svg{
    fill:rgb(255,255,255);
}

/* footer bottom */
.footer-bottom{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.footer-left{
display:flex;
align-items:center;
gap:40px;
flex-wrap:wrap;
}

/* logo */
.logo img{height: 57px;background: white;padding: 9px;border-radius: 11px;}

/* menu */
.footer-menu{
display:flex;
gap:20px;
list-style:none;
margin:0;
padding:0;
flex-wrap:wrap;
}

.footer-menu a{text-decoration:none;color: #ffffff;font-size:14px;transition:0.3s;}

.footer-menu a:hover{
color:#ff3d3d;
}

/* copyright */
.footer-right{font-size:14px;color: #ffffff;}

/* responsive */
@media(max-width:768px){

.footer-bottom{
flex-direction:column;
align-items:flex-start;
}

.footer-left{
gap:20px;
}

}
























.text-center{text-align: center;}
#load-more {
    background: linear-gradient(to right top, rgb(7, 56, 157), rgb(5, 65, 185), rgb(14, 73, 185), rgb(37, 106, 226), rgb(41, 118, 244));
    border-radius: 29px;
    padding: 10px 43px;
    margin-top: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-left: 10px;
    transition: .4s;
}
.search-section {
    background: linear-gradient(to right top, rgb(7, 56, 157), rgb(5, 65, 185), rgb(14, 73, 185), rgb(37, 106, 226), rgb(41, 118, 244));
    padding: 40px 20px;
    text-align: center;
    display: flex;
    color: white;
}
.search-section h1{
    margin-bottom: 10px;
}
.search-form{
    display: inline-block;
}
.search-form input[type='text'] {
    width: 700px;
    padding: 11px;
    border-radius: 5px;
    height: 61px;
    font-size: 19px;
    letter-spacing: 1px;
    text-align: center;
    border: white;
}

#myUL {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

#myUL li {
    list-style: none;
}

#myUL li a {
    border: 1px solid #ddd;
    margin-top: -1px;
    background-color: #f6f6f6;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    color: black;
    display: block;
}

@media (max-width: 480px) {
    .search-form input[type='text'] {
        width: -webkit-fill-available!important;
    }

.search-section h1 {
    margin-bottom: 14px;
    font-size: 17px;
}  

.search-section{
    padding: 20px 10px;
}  

.search-section .container{
    width: -webkit-fill-available !important;
}

.search-form {
    display: block;
}
    
}
























.blog{
    padding: 60px 80px;
}

/* GRID */

.blog-grid{
    display:grid;
    gap:30px;
    grid-template-columns: repeat(3, 1fr);
}

/* CARD */

.card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    border:1px solid #eee;
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
}

/* IMAGE */

.card-img{
    position:relative;
}

.card-img img{
    width:100%;
    height: auto;
    object-fit:cover;
}

/* SHARE */

.share{
    /* position:absolute; */
    bottom: 12px;
    right:10px;
    display:flex;
    gap:6px;
    float: right;
    margin-top: -42px;
    margin-right: 10px;
}

.share a{
    width:30px;
    height:30px;
    background: #2468df;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.share svg{
    width:14px;
    fill:white;
}

/* BODY */

.card-body{
    padding: 7px 20px 17px;
}

.card-cat span{
    font-size:12px;
    margin-right:10px;
}

.cat1{color:#17a2b8;}
.cat2{color:#28a745;}

.card-title{
    margin: 10px 0 20px;
    font-size: 18px;
    color: black;
}

.card-title a{
    color: black;
    text-decoration: unset;
}

.card-text{
    color:#777;
    font-size: 13px;
    line-height: 22px;
    margin-bottom:15px;
}

.card-meta{
    font-size:11px;
    text-transform:uppercase;
    color:#999;
    margin-top: 13px;
}

.card-meta span{
    margin-right:10px;
}

.yyt{
     text-align:center;margin-top:40px;
}

@media (max-width: 480px) {
    
  .blog {
    padding: 20px 10px;
}

.yyt{
     text-align:center;margin-top:10px;
}


.blog-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(1, 1fr);
}
     
}






