@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



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

a{
    text-decoration: none!important;
}

ul li {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

.cmn-pad{
    padding: 100px 0px;
}

.cmn-pad-btm{
    padding-bottom: 100px;
}



:root {
  --purple-dark:    #5D007A; /* deep purple */
  --purple-medium:  #7E3DAD; /* medium purple */
  --purple-light:   #CDA4DE; /* lavender */
  --baby-blue:      #AED6F1; /* very light blue */
  --navy-blue:      #0B3D91; /* dark blue accent */
  --pink-fuchsia:   #FF69B4; /* fuchsia pink / hot pink */
  --silver:         #C0C0C0; /* silver-grey */
  --white:          #FFFFFF;
  --text-dark:      #333333; /* dark gray for body text */
  --text-light:     #F2F2F2; /* off-white text on dark backgrounds */
  --head-font:"Inter", sans-serif;
  --para-font:"Poppins" , sans-serif;
}

:active, :hover, :focus {
  outline: 0!important;
  outline-offset: 0;
}

.cmn-btn{
    display: inline-block;
    padding: 12px 36px;
    background-color: var(--purple-dark);
    font-family: var(--head-font);
    color: white;
    font-size: 15px;
    font-weight: 500;
    transition: .5s ease-in-out;
}

.cmn-btn:hover{
    background-color: var(--navy-blue);
}



/* navbar css */


/* ─── NAVBAR STYLES ─── */
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0px;
      background-color: #ffffff;
      transition: all 0.3s ease;
      z-index: 1000; /* Make sure it sits above content when sticky */
    }

    /* Brand/Logo */
    .navbar .brand {
      font-size: 1.25rem;
      font-weight: bold;
    }

    .brand a img{
        width: 180px;
        height: 100%;
    }

    /* Navigation links (desktop) */
    .navbar .nav-links {
      display: flex;
      list-style: none;
    }

     .navbar ul{
        margin: 0px;
        padding:0px;
     }

    .navbar .nav-links li {
      margin-left: 0;
    }

  .navbar .nav-links li a {
    font-size: 1rem;
    color: #333333;
    padding: 10px 15px;
    transition: color 0.2s ease;
    font-weight: 500;
}

    .navbar .nav-links li a:hover {
      color: var(--purple-dark);
    }

    /* Search area */
    .navbar .search-container {
      display: flex;
      align-items: center;
      margin-left: 1.5rem;
    }

    .navbar .search-container input[type="text"] {
      padding: 0.4rem 0.6rem;
      border: 1px solid #ccc;
      border-radius: 4px 0 0 4px;
      outline: none;
    }

    .navbar .search-container button {
      padding: 0.4rem 0.8rem;
      border: 1px solid var(--purple-dark);
      background-color: var(--purple-dark);
      color: #fff;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .navbar .search-container button:hover {
      background-color: var(--purple-dark);
    }

    /* “Sign In” / “Mail” style buttons */
    .navbar .action-buttons {
      display: flex;
      align-items: center;
      margin-left: 1.5rem;
    }

    .navbar .action-buttons a {
      margin-left: 0.75rem;
      padding: 0.45rem 0.9rem;
      font-size: 0.9rem;
      border: 1px solid var(--purple-dark);
      background-color: transparent;
      color: var(--purple-dark);
      border-radius: 4px;
      cursor: pointer;
      transition: background-color 0.2s ease, color 0.2s ease;
    }

    .navbar .action-buttons a:hover {
      background-color: var(--purple-dark);
      color: #fff;
    }

    /* Hamburger icon (hidden on desktop) */
    .navbar .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .navbar .hamburger div {
      width: 25px;
      height: 3px;
      background-color: #333;
      margin: 4px 0;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .navlink-act{
        font-weight: bold;
        color: var(--purple-dark)!important;
    }

    /* ─── STICKY BEHAVIOR ─── */
    .navbar.sticky {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background-color: #ffffff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 0.5rem 1.5rem;
    }

    /* When sticky, shrink brand text slightly */
    .navbar.sticky .brand {
      font-size: 1.1rem;
    }

    /* ─── RESPONSIVE (MOBILE) ─── */
    @media (max-width: 768px) {
      .navbar {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
      }

      /* Hide desktop nav links & actions */
      .navbar .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #ffffff;
        border-top: 1px solid #e0e0e0;
      }
      .navbar .nav-links.active {
        display: flex;
      }

      .navbar .nav-links li {
        margin: 0.5rem 0;
        text-align: center;
      }

      .navbar .search-container {
        display: none;
        width: 100%;
        padding: 0.5rem 0;
        justify-content: center;
        border-top: 1px solid #e0e0e0;
      }
      .navbar .search-container.active {
        display: flex;
      }

      .navbar .action-buttons {
        display: none;
        width: 100%;
        justify-content: center;
        padding: 0.5rem 0;
        border-top: 1px solid #e0e0e0;
      }
      .navbar .action-buttons.active {
        display: flex;
      }

      /* Show hamburger on mobile */
      .navbar .hamburger {
        display: flex;
      }
    }













    /* banner-css */

.banner-sec {
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center;
    min-height:500px;
    display:flex;
    align-items:center;
    position: relative;
    isolation: isolate;
}

.banner-sec::before {
    content: '';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height: 100%;
    z-index: -1;
    background: #000;
    opacity: 0.3;
}

   .banner-main-div {
        width: 100%;
        padding: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
        /* min-height: 500px; */
        justify-content: center;
    }
    /* news sec css */

    .news-ad-div{
        width: 100%;
        /* padding: 75px 0px; */
        height: 100%;
        background-color: var(--silver);
    }

    .news-content-div{
        display: flex;
        margin-bottom: 20px;
    }

    .news-content-div-text{
        width: 40%;
        padding:20px;
        /* height: 0px; */
        background-color: var(--silver);
    }

    .news-content-div-text h1{
        font-family: var(--head-font);
        color: var(--navy-blue);
        font-weight: 700;
        font-size: 36px;
        line-height: 44px;
    }

    .news-content-div-text p{
        font-family: var(--para-font);
        color: var(--text-dark);
        font-weight: 400;
        font-size: 15px;
        line-height: 25px;
        margin-bottom: 20px;
    }

     .news-content-div-img{
        width: 60%;
     }

    .news-content-div-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news-tab-content-img img{
        width: 100%;
        height: 130px;
        object-fit: cover;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    .news-tab-content-text h6{
        font-family: var(--head-font);
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        transition: .3s ease-in-out;
        line-height: 18px;
    }

    .news-tab-content-text h6:hover{
        color: var(--navy-blue);
    }











    /* story css */

    .story-sec h3{
      font-family: var(--head-font);
      font-size: 24px;
      color: var(--text-dark);
      font-weight: 600;
      margin-bottom: 30px;
    }

    .story-main-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .story-main-content a{
      display: inline-block;
      color: var(--text-dark);
      font-family: var(--head-font);
      font-size: 24px;
      font-weight: 600;
      padding-bottom: 8px;
      transition: .5s ease-in-out;
    }

    .story-main-content a:hover{
      color: var(--purple-dark);
    }

    .story-main-content-top{
      margin-bottom: 10px;
    }

    .story-main-content-top span:nth-child(1){
      color: var(--navy-blue);
      font-size: 14px;
      font-family: var(--para-font);
      font-weight: 500;
      margin-right: 20px;
      position: relative;
    }

    .story-main-content-top span:nth-child(1):before{
      content: "";
      position: absolute;
      width:2px;
      height: 100%;
      display: inline-block;
      background-color: var(--text-dark);
      right: -11px;

    }

    .story-main-content-top span:nth-child(2){
      color: var(--text-dark);
      font-size: 14px;
      font-family: var(--para-font);
      font-weight: 500;
      margin-right: 20px;
      position: relative;
    }

    .story-main-content-btm i{
      color: var(--navy-blue);
      font-size: 14px;
      margin-right: 20px;
      position: relative;
    }

    .story-main-content-btm span{
      color: var(--text-dark);
      font-size: 14px;
      font-family: var(--para-font);
      font-weight: 500;
      margin-right: 20px;
      position: relative;
    }

    .story-main-content-btm span::after{
      content: "";
      position: absolute;
      width:2px;
      height: 100%;
      display: inline-block;
      background-color: var(--text-dark);
      left: -11px;
    }

    .story-sec-ad-div{
      width: 100%;
      height: 100%;
      /*background-color: #d9d9d9;*/
    }









    /* like area css */

    .like-sec h3{
      font-family: var(--head-font);
      font-size: 24px;
      color: var(--text-dark);
      font-weight: 600;
      margin-bottom: 30px;
    }

    .like-main-div-img img{
      width: 100%;
    height: 130px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 10px;
    }

    .like-main-div-text h6{
    font-family: var(--head-font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    transition: .3s ease-in-out;
    line-height: 18px;
    }

    .like-main-div-text h6:hover{
      color: var(--purple-dark);
    }

    .like-sec-ad-div{
       
      width: 100%;
      height: 100%;
      background-color: #d9d9d9;

    }







    /* footer area css */

    .ftr-sec{
      background-color: var(--navy-blue);
      width: 100%;
      padding: 80px 0px 30px 0px;
    }

    .ftr-sec hr{
      height: 3px;
      background-color: white;
    }

    .ftr-top-main-div h3{
      color: white;
      font-size: 24px;
      font-weight: 600;
      font-family: var(--head-font);
      margin-bottom: 15px;
    }

    .ftr-top-main-div h5{
      color: white;
      font-size: 18px;
      font-weight: 600;
      font-family: var(--head-font);
      margin-bottom: 15px;
    }

    .ftr-top-main-div p{
      color: white;
      font-size: 15px;
      font-weight: 400;
      font-family: var(--para-font);
      line-height: 25px;
      margin-top: 15px;
    }

     .ftr-top-main-div form{
      position: relative;
     }

    .ftr-top-main-div input{
      padding: 7px 20px;
      width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px 4px 4px 4px;
    outline: none;
    }

    .ftr-top-main-div button{
      position: absolute;
      right: 0px;
      padding: 8px 40px;
      border-radius: 0px 4px 4px 0px;
      border: none;
      background-color: var(--purple-dark);
      font-family: var(--head-font);
      font-size: 16px;
      font-weight: 600;
      color: white;
    }

    .ftr-top-main-link-div h6{
      font-family: var(--head-font);
      font-weight: 500;
      font-size: 18px;
      color: white;
    }

    .ftr-top-main-link-div a{
      color: white;
      transition: .5s ease-in-out;
      padding-right: 15px;
    }

    .ftr-top-main-link-div a:hover{
      color: var(--purple-dark);
    }

    .ftr-top-main-link-div a i{
      font-size: 20px;
    }


    .footer-nav {
      padding: 0px 32px 16px 0px;
      display: flex;
      gap: 24px;
    }
    .footer-nav a {
      position: relative;
      color: #fff;
      text-decoration: none;
      padding: 8px 8px;
      transition: color 0.2s;
      border-radius: 5px;
      font-family: var(--head-font);
      font-size: 18px;
      font-weight: 500;
    }
  
    .footer-nav a:hover,
    .footer-nav a.activate {
      color: #ffffff;
      background-color: rgba(255, 255, 255, 0.3);
    }
   

    /* ---------- new: content pane styles ---------- */
    .tab-content > div {
      display: none;
      padding: 15px 0px;
      margin-top: 8px;
      color: white;
    }
    .tab-content > div.activate {
      display: block;
    }

    .tab-content-line{
      background-color: white;
      width:1.5px;
      height: 40px;
      display: inline-block;
      margin: 0px 15px;
    }

    .tab-content a{
      color: white;
      font-size: 16px;
      font-weight: 400;
      font-family: var(--para-font);
      display: inline-block;
      transition: .5s ease-in-out;
      transform: translateY(-50%);
    }

    .tab-content a:hover{
      text-decoration: underline!important;
    }

    .ftr-logo-div a img{
      width: 100%;
      height: 100%;
    }

     .copy-right-div p{
      font-family: var(--para-font);
      font-size: 15px;
      font-weight: 400;
      color: white;
    }

    .copy-right-div a{
      font-family: var(--para-font);
      font-size: 16px;
      font-weight: 600;
      color: white;
      transition: .5s ease-in-out;
    }

    .copy-right-div a:hover{
      color: var(--purple-dark);
    }





    /* about us page */



    /* news section */

    .news-inner-main img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    .news-inner-main h1 a{
    font-family: var(--head-font);
    color: var(--navy-blue);
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    margin: 20px 0px;
    transition: .5s ease-in-out;
    }

    .news-inner-main h1 a:hover{
      color: var(--purple-dark);
    }

    .news-inner-main p{
    font-family: var(--para-font);
    color: var(--text-dark);
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 20px;
    }

    .news-inner-main-small img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .news-inner-main-small a{
      display: inline-block;
    color: var(--text-dark);
    font-family: var(--head-font);
    font-size: 24px;
    font-weight: 600;
    transition: .5s ease-in-out;
    }

     .news-inner-main-small a:hover{
      color: var(--purple-dark);
     }

     .news-inner-main-small ul{
      padding-left: 0px;
      color: var(--text-dark);
      font-family: var(--head-font);
      font-size: 14px;
      font-weight: 500;
      list-style-type: dotted;
     }

     /* .news-inner-main-small ul li{
      list-style:circle!important;
     } */

    



    .news-inner-content-div-2 img{
      margin-bottom: 15px;
    }

    .news-inner-content-div-2 a{
    display: inline-block;
    color: var(--text-dark);
    font-family: var(--head-font);
    font-size: 24px;
    font-weight: 600;
    transition: .5s ease-in-out;
    }

    .news-inner-content-div-2 a:hover{
      color: var(--purple-dark);
    }

    .news-inner-content-div-2 ul{
      padding: 0px;
      color: var(--text-dark);
      font-family: var(--head-font);
      font-size: 14px;
      font-weight: 500;
      list-style-type: dotted;
    }

    /* .news-inner-content-div-2 ul li{
      list-style:circle!important;
     } */

    .news-ad-div{
      height: 100%;
      background-color: #d9d9d9;
    }




    .news-main-btm-div img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    .news-main-btm-div h1 a{
    font-family: var(--head-font);
    color: var(--navy-blue);
    font-weight: 700;
    font-size: 36px;
    line-height: 44px;
    margin: 20px 0px;
    transition: .5s ease-in-out;
    }

    .news-main-btm-div h1 a:hover{
      color: var(--purple-dark);
    }

    .news-main-btm-div p{
    font-family: var(--para-font);
    color: var(--text-dark);
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 20px;
    }



    .news-main-btm-right-img-div img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 10px;
    }

    .news-main-btm-right-content-div a{
    display: inline-block;
    color: var(--text-dark);
    font-family: var(--head-font);
    font-size: 24px;
    font-weight: 600;
    transition: .5s ease-in-out;
    }

    .news-main-btm-right-content-div a:hover{
      color: var(--purple-dark);
    }

    .news-main-btm-right-content-div ul{
      padding-left: 0px;
      color: var(--text-dark);
      font-family: var(--head-font);
      font-size: 14px;
      font-weight: 500;
      list-style-type: dotted;
     }
     .weather-widget {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    max-width: 300px;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
}
.weather-widget h4 {
    margin: 0 0 10px;
    font-size: 16px;
}
.weather-days {
    display: flex;
    justify-content: space-between;
}
.weather-widget .day {
    text-align: center;
    flex: 1;
}
.weather-widget .label {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 5px;
}
.weather-widget .icon {
    font-size: 20px;
}
.weather-widget .temp {
    margin-top: 5px;
}
.weather-widget .temp strong {
    display: block;
    font-size: 14px;
}
.weather-widget .temp span {
    font-size: 12px;
    color: #555;
}
.weather-widget .see-more {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}
.weather-widget .see-more:hover {
    text-decoration: underline;
}
.trend-widget {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    max-width: 320px;
}

.trend-widget h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #222;
}

.trend-widget .trend-icon {
    color: #7f4df7;
    font-weight: bold;
    margin-right: 6px;
}

.trend-widget ol {
    margin: 0;
    padding-left: 0px;
    list-style-position: inside;
}

.trend-widget li {
    margin-bottom: 6px;
    font-size: 14px;
}

.trend-widget li a {
    text-decoration: none;
    color: #111;
}

.trend-widget li a:hover {
    text-decoration: underline;
    color: #0056b3;
}
.contact-container {
      max-width: 1200px;
      margin: 50px auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 0 15px;
    }
    .contact-box {
      background: #fff;
      border-radius: 10px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 3px 6px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }
    .contact-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 12px rgba(0,0,0,0.15);
    }
    .contact-box i {
      font-size: 40px;
      color: #007BFF;
      margin-bottom: 15px;
    }
    .contact-box h4 {
      font-size: 18px;
      color: #333;
      margin-bottom: 8px;
      font-weight: bold;
    }
    .contact-box p {
      font-size: 15px;
      color: #555;
      margin: 0;
      line-height: 1.5;
    }
    .contact-box a {
      color: #007BFF;
      text-decoration: none;
    }
    .contact-box a:hover {
      text-decoration: underline;
    }

    /* ✅ Mobile Adjustments */
    @media (max-width: 600px) {
      .contact-container {
        margin: 20px auto;
        padding: 0 10px;
      }
      .contact-box {
        padding: 20px 15px;
      }
    }
.custom-pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.custom-pagination ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
}

.custom-pagination li {
    display: inline-block;
}

.custom-pagination a,
.custom-pagination span {
    display: inline-block;
    padding: 8px 16px;
    color: #333;
    background-color: #f0f0f0;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.custom-pagination a:hover {
    background-color: #007bff;
    color: #fff;
}

.custom-pagination .current {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
}


/* slider css */

.slider-sec {
    background: #f8f1e5;
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0 76px;
}

.slider {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.slider-item {
    flex: 0 0 230px;
    max-width: 230px;
    height: 58px;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.13);
    overflow: hidden;
    transition: all 0.3s ease;
}

.slider-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.slider-item img {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 7px;
    object-fit: cover;
}

.slider-item p {
    margin: 0;
    color: #111111;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #111111;
    font-size: 24px;
    line-height: 54px;
    text-align: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: #0b4d5c;
    color: #ffffff;
}

.slider-arrow.left {
    left: 22px;
}

.slider-arrow.right {
    right: 50px;
}

/* Tablet */
@media (max-width: 991px) {
    .slider-container {
        padding: 0 66px;
    }

    .slider-item {
        flex: 0 0 220px;
        max-width: 220px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .slider-sec {
        padding: 14px 0;
    }

    .slider-container {
        padding: 0 54px;
    }

    .slider {
        gap: 14px;
    }

    .slider-item {
        flex: 0 0 210px;
        max-width: 210px;
        height: 56px;
        padding: 7px 10px;
    }

    .slider-item img {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .slider-item p {
        font-size: 12px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        line-height: 44px;
        font-size: 20px;
    }

    .slider-arrow.left {
        left: 6px;
    }

    .slider-arrow.right {
        right: 6px;
    }
}


.news-ad-div {
    width: 100%;
    margin-bottom: 24px;
}

.news-ad-div .weather-widget {
    width: 100%;
    background: linear-gradient(135deg, #102a43 0%, #1f78b4 100%);
    border-radius: 20px;
    padding: 22px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 14px 35px rgba(16, 42, 67, 0.22);
    position: relative;
    overflow: hidden;
}

.news-ad-div .weather-widget::before {
    content: "";
    position: absolute;
    top: -55px;
    right: -55px;
    width: 145px;
    height: 145px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.news-ad-div .weather-widget::after {
    content: "";
    position: absolute;
    bottom: -45px;
    left: -45px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.news-ad-div .weather-widget h4 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.news-ad-div .weather-widget h4 img {
    width: 22px;
    height: 22px;
}

.news-ad-div .weather-days {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: relative;
    z-index: 1;
}

.news-ad-div .weather-days .day {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 15px;
    padding: 13px 7px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.news-ad-div .weather-days .day:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.news-ad-div .weather-days .label {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 9px;
}

.news-ad-div .weather-days .icon {
    margin-bottom: 8px;
}

.news-ad-div .weather-days .icon img {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
}

.news-ad-div .weather-days .temp {
    min-height: 18px;
    color: #ffffff;
    font-size: 13px;
}

.news-ad-div .weather-days .temp strong {
    font-size: 17px;
    font-weight: 800;
}

.news-ad-div .weather-days .temp span {
    opacity: 0.8;
}

.news-ad-div .weather-widget .see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 10px 18px;
    background: #ffffff;
    color: #102a43;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.news-ad-div .weather-widget .see-more:hover {
    background: #eef6ff;
    color: #0b4f7a;
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .news-ad-div .weather-widget {
        padding: 18px;
        border-radius: 16px;
    }

    .news-ad-div .weather-widget h4 {
        font-size: 19px;
    }

    .news-ad-div .weather-days {
        grid-template-columns: repeat(2, 1fr);
    }
}
    
  
.story-sec-ad-div {
    width: 100%;
    margin-bottom: 28px;
}

.story-sec-ad-div .trend-widget {
    width: 100%;
    background: #ffffff;
    border-radius: 18px;
    padding: 4px;
    box-shadow: 0 12px 30px rgba(15, 50, 90, 0.10);
    border: 1px solid #e8eef5;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.story-sec-ad-div .trend-widget::before {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #edf3f8;
}

.story-sec-ad-div .trend-widget li {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
}

.story-sec-ad-div .trend-widget li:last-child {
    margin-bottom: 0;
}

.story-sec-ad-div .trend-widget a {
    display: block;
    position: relative;
    padding: 2px 2px 2px 46px;
    background: #f7fbff;
    border: 1px solid #edf3f8;
    border-radius: 14px;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.story-sec-ad-div .trend-widget a::before {
    content: "↗";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #0b74bc;
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    line-height: 24px;
    text-align: center;
    font-weight: 800;
    transition: all 0.3s ease;
}

.story-sec-ad-div .trend-widget a:hover {
    background: #0b74bc;
    border-color: #0b74bc;
    color: #ffffff;
    transform: translateX(6px);
    box-shadow: 0 10px 22px rgba(11, 116, 188, 0.22);
}

.story-sec-ad-div .trend-widget a:hover::before {
    background: #ffffff;
    color: #0b74bc;
}

@media (max-width: 575px) {
    .story-sec-ad-div .trend-widget {
        padding: 14px;
        border-radius: 14px;
    }

    .story-sec-ad-div .trend-widget::before {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .story-sec-ad-div .trend-widget a {
        font-size: 14px;
        padding: 12px 12px 12px 42px;
    }
}

.search-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: 600px;
    width:100%;
}

.search-box {
    position: relative;
    width: 100%;
    margin: 0 !important;
}

.search-box .search-form {
    width: 100%;
    margin: 0;
}

.search-box .search-inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 46px;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.search-box .search-field {
    flex: 1;
    width: 100%;
    min-width: 0;
    height: 46px;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: #ffffff;
    color: #111111;
    font-size: 15px;
    padding: 0 14px;
    margin: 0;
}

.search-box .search-btn {
    flex: 0 0 100px;
    height: 46px;
    border: 0;
    outline: 0;
    background: #5b007c;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.search-box .search-btn:hover {
    background: #3d0054;
}

/* Remove default browser X from search input */
.search-box input[type="search"]::-webkit-search-cancel-button,
.search-box input[type="search"]::-webkit-search-decoration,
.search-box input[type="search"]::-webkit-search-results-button,
.search-box input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.search-box input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
}

/* Hide hidden input gap if any theme/plugin CSS affects it */
.search-box input[type="hidden"] {
    display: none !important;
}

/* Auto search result dropdown */
.search-box .auto-search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
    border: 1px solid #eeeeee;
    z-index: 99999;
    overflow: hidden;
}

.search-box .auto-search-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-box .auto-search-list li {
    margin: 0;
    border-bottom: 1px solid #eeeeee;
}

.search-box .auto-search-list li:last-child {
    border-bottom: 0;
}

.search-box .auto-search-list li a {
    display: block;
    padding: 13px 16px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
    transition: all 0.25s ease;
}

.search-box .auto-search-list li a::before {
    content: "🔎";
    margin-right: 8px;
    font-size: 13px;
}

.search-box .auto-search-list li a:hover {
    background: #f5ecff;
    color: #5b007c;
    padding-left: 22px;
}

@media (max-width: 991px) {
    .search-container {
        width: 100%;
        margin-top: 14px;
    }

    .search-box .search-inner {
        height: 44px;
    }

    .search-box .search-field {
        height: 44px;
    }

    .search-box .search-btn {
        height: 44px;
        flex-basis: 90px;
        padding: 0 14px;
    }
}

@media (max-width: 575px) {
    .search-container {
        padding: 0 15px;
    }

    .search-box .search-field {
        font-size: 14px;
    }

    .search-box .search-btn {
        font-size: 14px;
        flex-basis: 84px;
    }
}

.banner-main-div h1{
    color: #fff;
    text-align: center;
}

.footer-advertise-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    background: #5b007c;
    color: #ffffff !important;
    border: 2px solid #5b007c;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(91, 0, 124, 0.22);
}

.footer-advertise-link:hover {
    background: transparent;
    color: #5b007c !important;
    border-color: #5b007c;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(91, 0, 124, 0.28);
}

.footer-advertise-link::after {
    content: "→";
    margin-left: 8px;
    transition: all 0.3s ease;
}

.footer-advertise-link:hover::after {
    margin-left: 14px;
}

@media (max-width: 575px) {
    .footer-advertise-link {
        padding: 10px 18px;
        font-size: 14px;
        width: 100%;
        max-width: 230px;
    }
}

 .social-links-main a{
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .social-links-main a i{
    font-size: 20px;
    color: #0B3D91;
  }


.blog-category-banner {
    padding: 90px 0;
    background: linear-gradient(135deg, #0b4f5f 0%, #12343b 100%);
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.blog-category-banner::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.blog-category-banner::after {
    content: "";
    position: absolute;
    bottom: -110px;
    left: -110px;
    width: 300px;
    height: 300px;
    background: rgba(242, 153, 74, 0.18);
    border-radius: 50%;
}

.blog-category-banner .container {
    position: relative;
    z-index: 1;
}

.blog-category-banner span {
    display: inline-block;
    margin-bottom: 10px;
    color: #f2994a;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.blog-category-banner h1 {
    margin: 0;
    color: #ffffff;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.2;
}

.category-desc {
    max-width: 760px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.7;
}

.blog-category-section {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-category-card {
    height: 100%;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(18, 52, 59, 0.10);
    border: 1px solid rgba(18, 52, 59, 0.08);
    transition: all 0.35s ease;
}

.blog-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(18, 52, 59, 0.16);
}

.blog-card-img {
    display: block;
    height: 240px;
    overflow: hidden;
    background: #e9eef2;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.45s ease;
}

.blog-category-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    color: #f2994a;
    font-size: 13px;
    font-weight: 800;
}

.blog-card-meta span + span::before {
    content: "•";
    margin-right: 10px;
    color: #9ca3af;
}

.blog-card-content h2 {
    margin: 0 0 12px;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 800;
}

.blog-card-content h2 a {
    color: #12343b;
    text-decoration: none;
    transition: all 0.25s ease;
}

.blog-card-content h2 a:hover {
    color: #f2994a;
}

.blog-card-content p {
    margin: 0 0 18px;
    color: #5d6b70;
    font-size: 15px;
    line-height: 1.7;
}

.blog-card-btn {
    display: inline-flex;
    align-items: center;
    color: #0b4f5f;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.blog-card-btn::after {
    content: "→";
    margin-left: 8px;
    transition: all 0.3s ease;
}

.blog-card-btn:hover {
    color: #f2994a;
}

.blog-card-btn:hover::after {
    margin-left: 14px;
}

.blog-category-pagination {
    margin-top: 45px;
    text-align: center;
}

.blog-category-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0 4px;
    padding: 0 13px;
    background: #ffffff;
    color: #0b4f5f;
    border: 1px solid #dce7ea;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s ease;
}

.blog-category-pagination .page-numbers.current,
.blog-category-pagination .page-numbers:hover {
    background: #0b4f5f;
    color: #ffffff;
}

.no-post-found {
    max-width: 600px;
    margin: 0 auto;
    padding: 45px 25px;
    background: #ffffff;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(18, 52, 59, 0.08);
}

.no-post-found h3 {
    margin: 0 0 8px;
    color: #12343b;
    font-size: 26px;
    font-weight: 800;
}

.no-post-found p {
    margin: 0;
    color: #5d6b70;
}

@media (max-width: 991px) {
    .blog-category-banner {
        padding: 70px 0;
    }

    .blog-category-banner h1 {
        font-size: 38px;
    }

    .blog-category-section {
        padding: 60px 0;
    }

    .blog-card-img {
        height: 220px;
    }
}

@media (max-width: 575px) {
    .blog-category-banner {
        padding: 55px 0;
    }

    .blog-category-banner h1 {
        font-size: 30px;
    }

    .category-desc {
        font-size: 15px;
    }

    .blog-category-section {
        padding: 45px 0;
    }

    .blog-card-img {
        height: 210px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-content h2 {
        font-size: 20px;
    }
}

.contact-popup-link {
    display:inline-block;
    padding:12px 32px;
    background:#5b007c;
    border-radius:6px;
    color:#fff !important;
    font-weight:600;
    transition: all 0.3s ease-in-out;
}


.contact-popup-link:hover {
     background:#3d0054;
}

