/* ==========================
   Font Faces
========================== */

/* XX Thin 100 */
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayXXThin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayXXThinItalic.ttf") format("truetype");
    font-weight: 100;
    font-style: italic;
}

/* Thin 200 */
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayThin.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayThinItalic.ttf") format("truetype");
    font-weight: 200;
    font-style: italic;
}

/* Light 300 */
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayLight.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayLightItalic.ttf") format("truetype");
    font-weight: 300;
    font-style: italic;
}

/* Roman 400 */
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayRoman.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayRomanItalic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

/* Medium 500 */
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayMedium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayMediumItalic.ttf") format("truetype");
    font-weight: 500;
    font-style: italic;
}

/* Bold 700 */
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayBold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayBoldItalic.ttf") format("truetype");
    font-weight: 700;
    font-style: italic;
}

/* Black 900 */
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayBlack.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Neue Haas Grotesk Display Pro";
    src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayBlackItalic.ttf") format("truetype");
    font-weight: 900;
    font-style: italic;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===============================
   HERO SECTION
=============================== */
.cursor-ring {
    display: none;
  }
.hero-desktop ,.hero-tab {
    display: none;
}
.hero-mobile {
    width: 100%;
    height: 602px;
    position: relative;
    margin-bottom: 50px;
    background-size: cover;        
    background-repeat: no-repeat;  
    background-position: center; 
}
/* ===============================
   NAVBAR
=============================== */
.navbar {
    width: 100%;
    height: 80px; 
    padding: 0 25px;
    position: fixed;
    top: 0;
    left: 0;
    background: #151515;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

/* Logo */
.logo img {
    width: 80px;
    height: auto;
}
.nav-links {
    display: none;
}
.nav-links a{
    display: none;
}
.social-icons{
    display: flex;
    gap: 8px;
}
.social-icons img{
   width: 30px;
   height: 30px;
}
.mobile-menu a {
    color: var(--color-light);
    font-family: var(--ff-primary);
    font-size: 18px;
    padding: 12px 0;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu .mb-social-icons img {
    width: 30px;
    height: 30px;
}
.mb-social-icons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}
.mb-social-icons a{
border-bottom: none !important;
}

.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.menu a {
    color: var(--color-light);
    font-family: var(--ff-primary);
    font-size: 18px;
    padding: 12px 0;
    text-decoration: none;
    border-bottom: 1px solid #333;
}

.menu a:last-child {
    border-bottom: none;
}

@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}


/* end hero section */

/* start about */
.about-wrapper {
    padding: 0 20px;
    display: block;
    padding-bottom: 80px;
    
}
.about-container{
    padding-bottom: 30px;
}
.about-container h2 {
    font-family: var(--ff-primary);
    color: #151515;
    font-size: var(--fs-mb-lg);
    font-weight: 700;
    line-height: 100%;
    padding-bottom: 20px;
}

.about-container h3 {
    font-family: var(--ff-primary);
    color: var(--color-dark);
    font-size: var(--fs-mb-sm);
    font-weight: 600;
    line-height: 100%;
     padding-bottom: 20px;
}

.about-container p {
    font-family: var(--ff-primary);
    color: var(--color-dark);
    font-size: var(--fs-mb-sm);
    font-weight: 500;
    line-height: 24px;
    text-align: justify;
    padding-bottom: 20px;
}

.danu-img-container {
    width: 100%;
    height: auto;
}

.danu-img {
    object-fit: contain;
    width: 100%;
    height: 430px;
    border-radius: 4px;
}
/* end about  */
/* start black container */
.back-wrapper {
  background-color: var(--color-dark);
  display: block;
  margin-bottom: 80px;
}
.back-inner-wrapper{
    padding: 60px 20px;
}

.history-conatiner h3{
    color: var(--color-light);
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-sm);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 20px;
}
.history-conatiner h2{
    color: var(--color-light);
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-lg);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 20px;
}
.history-conatiner p{
    color: var(--color-light);
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-sm);
    font-style: normal;
    font-weight: 500;
    line-height: 24px; 
    padding-bottom: 20px;
}
.jaffna-img-conatiner{
    width: 100%;
    height: 516px;
    object-fit: contain;
    margin-bottom: 20px;
}
.jaffna-img-conatiner .danu-img-jaffna{
    width: 100%;
    height: 516px;
}
.history-conatiner .btn-white{
    display: flex;
    width: 140px;
    height: 48px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var( --color-dark);
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-sm);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
/* end black container */
/* start social content */
.social-wrapper{
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}
.social-wrapper h3{
    color: var(--color-dark);
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-sm);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 20px;

}
.social-wrapper h2{
    color: var(--color-dark);
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-lg);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 20px;
}
.social-img-container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.social-img-container .img-box{
    width: 100%;
    height: auto;
    position: relative;
}
.social-img-container .img-box .single-image{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.social-img-container .img-box h3{

    color: var(--color-light);
    font-family: var(--ff-primary);
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;

}
.social-img-container .img-box .top-details{
    position: absolute;
    bottom: 0; 
    top: 50%;
    left: 50%;
    transform: translate(-50%); 
    text-align: center;
}
.social-img-container .img-box .top-details .social-img{
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 10px;
}
.social-img-container .img-box .top-details .social-img:hover{
    cursor: pointer;
    
}

/* end social content */
/* start youtube container */
.youtube-wrapper {
  background-color: var(--color-dark);
  margin-bottom: 80px;

}
.youtube-inner-wrapper{  
    padding: 20px 20px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
}
.youtube-conatiner{
    width: unset;
    padding-top: 20px;
}
.youtube-conatiner h3{
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-lg);
    font-weight: 600;
    line-height: 100%;
    padding-bottom: 20px;
    color: var(--color-light);
}
.youtube-conatiner h2{
    color: var(--color-light);
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-lg);
    line-height: 100%;
    padding-bottom: 20px;
}
.youtube-conatiner p{
    color: var(--color-light);
    font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-weight: 500;
    line-height: 24px;
    text-align: justify;
    padding-bottom: 20px;
}
.youtube-video-conatiner{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.youtube-conatiner .btn-white{
    display: flex;
    width: 140px;
    height: 48px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var( --color-dark);
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-sm);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}
.youtube-video-conatiner {
    width: 100%;     
    height: 201.375px;     
    margin: 0 auto;    
}

.youtube-video-conatiner iframe {
    width: 100%;      
    height: 100%;      
}

/* end youtube container */

/* start instergram */
.instagram-wrapper{
    margin-bottom: -133px;
}
.eapps-instagram-feed-title-container{
    display: none !important;
}
.instergram-conatiner{
    display: flex;
    flex-wrap: unset;
}
.instergram-conatiner img{
    width: 320px;
    height: 320px;
    object-fit: cover;
}

/* end insteagram */

/* start social work */

.socialwork-wrapper {
    padding: 0 20px;
    margin: auto; 
    max-width: 1360px;
    margin-bottom: 100px; 
}

.socialwork-wrapper h3 {
    font-family: var(--ff-primary);
    font-size: var( --fs-mb-lg);
    font-weight: 600;
    line-height: 100%;
    padding-bottom: 20px;
    color: var(--color-dark);
}

.socialwork-wrapper h2 {
    color: var(--color-dark);
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-lg);
    line-height: 100%;
    padding-bottom: 20px;
}

.socialwork-wrapper p {
    color: var(--color-dark);
    font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-weight: 500;
    line-height: 24px;
    text-align: justify;
    padding-bottom: 40px;
}

/* Work card text */
.details-top h3{
    color: #F1F0EC;
    font-family: var(--ff-primary);
    font-size:var(--fs-mb-lg);
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.details-top p{
    color: #FFF;
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; 
    margin: 5px 0 0;
}

/* Work images container */
.socialwork-wrapper .work-img {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}

.socialwork-wrapper .work-img .work-single {
    position: relative;
    width: 100%;
    height: 350px;     
    border-radius: 16px;
}

/* Image */
.socialwork-wrapper .work-img .work-single img {
    width: 100%;
    height: 350px;      
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Gradient overlay – always visible */
.socialwork-wrapper .work-img .work-single::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    opacity: 1;
    z-index: 1;
    border-radius: 16px;
}

/* Text position – final hover state */
.socialwork-wrapper .work-img .work-single .details-top {
    position: absolute;
    bottom: -40px;       
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    text-align: left;   
    z-index: 2;
    padding: 0 20px;
    
}

/* Title */
.socialwork-wrapper .work-img .work-single .details-top h3 {
    transform: translateY(-20px);
}

/* Descript*

/* end social work */
/* start contact */
.contact-wrapper{
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}
.contact-wrapper .contact-details h3{
    color: var(--color-dark);
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-sm);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 20px;
}
.contact-wrapper .contact-details h2{
    color: var(--color-dark);
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-lg);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 20px;
}
.contact-wrapper .contact-details p{
    color: var(--color-dark);
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-sm);
    font-style: normal;
    font-weight: 500;
    line-height: 24px; 
    padding-bottom: 20px;
}
.contact-wrapper .contact-details a {
    color: #151515;
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; 
    text-decoration: none;
}
.contact-info{
    padding-bottom: 30px;
}
.contact-info .single-info,.single-info-mail{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}
.contact-info .single-info-mail{
    padding-bottom: 20px;

}
.lbl-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.lbl-container p {
    flex: 1;
    margin-bottom: 20px;
}

.wpcf7-form-control {
    width: 100%;
    padding: 8px 0;
    font-size: 15px;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
}

.wpcf7-form-control::placeholder {
    color: #848080;
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    font-family: var(--color-dark);
}
.wpcf7-form-control,
textarea.wpcf7-form-control {
  text-align: left;             
  font-family: var(--ff-primary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.wpcf7-form-control::placeholder,
.wpcf7-form-control::-webkit-input-placeholder, 
.wpcf7-form-control::-moz-placeholder,          
.wpcf7-form-control:-ms-input-placeholder,      
.wpcf7-form-control::-ms-input-placeholder {   
  color: #848080;
  font-family: var(--ff-primary); 
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.button-wrapper {
    display: flex;
    justify-content: flex-end;
    position: relative;
    height: 48px;
    width: 50%;
    margin-left: auto;
}

.white-comman-button:hover::after {
  filter: brightness(0) invert(1) !important; 
}

.white-comman-button {
    border-radius: 2px;
    border: 1px solid #151515;
    height: 48px;
    padding: 8px 12px;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
}

.wpcf7-response-output{
    border-color: transparent;
    color: #dc3232;
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; 
    padding-bottom: 20px;
}
.wpcf7 form.invalid .wpcf7-response-output {
    border-color: transparent !important;
}

/* end contact */
/* start footer */
footer{
    background-color: var(--color-dark);
    text-align: center;
    height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
}
footer p, footer a{
    text-align: center;
    color: #FFF;
    font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}

.footer-social-icons{
    display: flex;
    justify-content: center;
    gap: 10px;
}
footer .footer-social-icons img{
    width: 32px;
    height: 32px;
}

/* end footer */
/* ==========================
   Tablets (min-width: 769px and max-width: 990px)
========================== */
@media (min-width: 760px) and (max-width: 1199px) {
    .cursor-ring {
    display: none;
  }
  
    
    /* HERO SECTION */
    .hero-tab {
        height: 60vh;
        margin-bottom: 80px;
        display: block;
        width: 100%;        
        position: relative;
        background-size: cover;        
        background-repeat: no-repeat;  
        background-position: center;

    }
    .hero-desktop,.hero-mobile {
        display: none;
    }

    /* NAVBAR */
    .navbar {
        height: 85px;
        padding: 0 40px;
    }
    .logo img {
        width: 100px;
        height: auto;
    }
    .nav-links {
        gap: 25px;
    }
    .nav-links a {
        font-size: 16px;
    }

    /* ABOUT SECTION */
    .about-wrapper {
        flex-direction: row;
        display: flex;
        padding-left: 70px;
        padding-right: 70px;
        gap: 40px;
        align-items: center;
        padding-bottom: 50px;

    }
    .about-container h3{
        padding-bottom: 0;
    }
    .about-container {
        width: 100%;
    }
    .danu-img-container {
        width: 100%;
        height: 500;
    }
    .danu-img {
        width: 100%;
        height: 500px;
    }

    /* BLACK CONTAINER */
    .back-inner-wrapper {
        flex-direction: row;
        display: flex;
        padding: 40px 70px;
        gap: 40px;
        align-items: center;
    }
    .back-inner-wrapper{
        padding: 60px 50px;

    }
    .history-conatiner {
        width: 100%;
    }
    .jaffna-img-conatiner {
        width: 100%;
        height: 500px;
    }
    .jaffna-img-conatiner .danu-img-jaffna {
        width: 100%;
        height: 500px;
    }

    /* SOCIAL CONTENT */
    .social-wrapper {
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 80px;
    }
    .social-img-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 12px;
    }
    .social-img-container .img-box {
        width: unset;
        height: 440px;
    }
    .social-img-container .img-box .single-image {
        height: 440px;
    }
    .social-img-container .img-box h3 {
        
        font-size: 25px;
      
}
    .social-img-container .img-box .top-details {
        /* top: 66%; */
    }
    /* YOUTUBE SECTION */
    .youtube-inner-wrapper {
        flex-direction: column;
        padding: 40px 50px;
        gap: 40px;
        align-items: center;
    }
    .youtube-conatiner {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .youtube-video-conatiner {
        width: 100%;
        height: auto;
    }
    .youtube-video-conatiner iframe {
        height: 250px;
    }

    .instergram-conatiner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .instergram-conatiner img {
        width: 48%;
        height: 200px;
        object-fit: cover;
    }
    .socialwork-wrapper{
        margin-bottom: 50px;
        padding-left: 50px;
        padding-right: 50px;
    }

    .contact-wrapper{
        padding-left: 50px;
        padding-right: 50px;
    }
    
    /* FOOTER */
    footer {
        height: auto;
        padding: 40px 20px;
    }
    .footer-social-icons img {
        width: 28px;
        height: 28px;
    }

}

/* ==========================
   Desktop (min-width: 1200px)
========================== */
@media (min-width: 1200px) {
 body {
      cursor: default;
    }

    html {
    margin-top: 0px !important;
}
    .cursor-dot {
    display: block;
      width: 12px;
      height: 12px;
      background-color:var(--color-dark);
      border: 1px solid #151515;
      border-radius: 50%;
      position: fixed;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
    }


    
body{
    background: #F1F0EC;
}


/* start hero section */
.hero-desktop{
    display: block;
    width: 100%;
    height: 100vh;        
    position: relative;
    margin-bottom: 120px;
	background-repeat: no-repeat; 
    background-size: cover;        
    background-position: center;
	
}
.hero-tab , .hero-mobile{
    display: none;
}
.hero-desktop .hero-content{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-desktop .hero-content .hero-title{
    font-size: 40px;
}
.navbar {
    width: 100%;
    height: 90px;
    padding: 0 60px;
    position: fixed;     
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

/* Navbar when scrolled */
.navbar.scrolled {
   background-color: var(--color-dark);
}

.logo img {
    width: 192px;
    height: 48px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}
.nav-links a {
    display: block;
    text-decoration: none;
    color: var(--color-light);
    font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: normal;
    position: relative; 
    transition: color 0.3s ease;
}

/* Hover underline */
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px; 
    width: 0;
    height: 2px;
    background-color: var(--color-light); 
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%; 
}


.social-icons {
    display: flex;
    align-items: center;
}

.social-icons a {
    color: white;
    font-size: 18px;
    margin-left: 0;
    transition: transform 0.2s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons img {
    width: 32px;
    height: 32px;
}



/* end hero section */
/* start about */
.about-wrapper {
    display: flex;
    padding-bottom: 80px;
    justify-content: space-between;
    max-width: 1360px;    
    margin: 0 auto;       
    padding-left: 20px;   
    padding-right: 20px;  
    align-items: center;
}
.about-container{
    width: 630px;
    padding-bottom: 0px;
}

.about-container h2 {
    font-family: var(--ff-primary);
    font-size: var(--fs-xl);
    line-height: 100%;
}

.about-container h3 {
    font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 100%;
}

.about-container p {
    font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-weight: 500;
    line-height: 24px;
    text-align: justify;
}

.danu-img-container {
   width: 502px;
   height: 600px;
}

.danu-img {
    object-fit: contain;
    width: 502px;
    height: 600px;
}
/* end about  */
/* start black container */
.back-wrapper {
  background-color: var(--color-dark);

}
.back-inner-wrapper{  
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;  
    max-width: 1090px;    
    margin: 0 auto; 
    padding-left: 20px;
    padding-right: 20px;
}
.jaffna-img-conatiner .danu-img-jaffna{
    border-radius: 4px;
    background: no-repeat;
    width: 320px;
    height: 461px;
    aspect-ratio: 320/461;

}
.history-conatiner{
    width: 624px;
}
.history-conatiner h3{
   font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 100%;
    padding-bottom: 20px;
}
.history-conatiner h2{
    font-family: var(--ff-primary);
    font-size: var(--fs-xl);
    line-height: 100%;
    margin-bottom: 20px;
}
.history-conatiner p{
    font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-weight: 500;
    line-height: 24px;
    text-align: justify;
    padding-bottom: 20px;
}
.jaffna-img-conatiner{
    width: 320px;
    height: 461px;
    object-fit: contain;
    margin-bottom: 0;
}
.jaffna-img-conatiner .danu-img-jaffna{
    width: 320px;
    height: 461px;
}

.history-conatiner .btn-white{
    display: flex;
    width: 140px;
    height: 48px;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var( --color-dark);
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-sm);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border-radius: 2px;
    border: none;
    
}
/* end black container */
/* start social content */
.social-wrapper{
    max-width: 1400px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 120px;
}
.social-wrapper h3{
    color: var(--color-dark);
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-sm);
    font-style: normal;
    font-weight: 600;
    line-height: normal;

}
.social-wrapper h2{
    color: var(--color-dark);
    font-family: var(--ff-primary);
    font-size: var(--fs-xl);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 40px;
}

.social-img-container {
    display: flex;
    flex-direction: row; 
    gap: 20px;       
    justify-content: space-between;
}

.social-img-container .img-box {
    width: 350px;
    height: 400px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px; 
}


.social-img-container .img-box .single-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transition: transform 0.5s ease;
}

.social-img-container .img-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.social-img-container .img-box:hover::before {
    opacity: 1;
}


.social-img-container .img-box .top-details {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    text-align: center;
    width: 100%;
    color: var(--color-light);
    transition: transform 0.5s ease, top 0.5s ease, bottom 0.5s ease;
    pointer-events: none;
    z-index: 2; 
}


.social-img-container .img-box .top-details .social-img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin: 10px 5px 0 5px;
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
}


.social-img-container .img-box:hover .single-image {
    transform: scale(1.05); 
}

.social-img-container .img-box:hover .top-details {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.social-img-container .img-box:hover .top-details .social-img {
    opacity: 1;
}

/* end social content */
/* start youtube container */
.youtube-wrapper {
  background-color: var(--color-dark);
  margin-bottom: 120px;

}
.youtube-inner-wrapper{
    margin: auto; 
    max-width: 1360px; 
    padding: 60px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}
.youtube-conatiner{
    width: 624px;
    padding-top: 0;
}
.youtube-conatiner h3{
    font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 100%;
    padding-bottom: 20px;
    color: var(--color-light);
}
.youtube-conatiner h2{
    color: var(--color-light);
    font-family: var(--ff-primary);
    font-size: var(--fs-xl);
    line-height: 100%;
    padding-bottom: 20px;
}
.youtube-conatiner p{
    color: var(--color-light);
    font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-weight: 500;
    line-height: 24px;
    text-align: justify;
    padding-bottom: 20px;
}
.youtube-video-conatiner{
    width: 320px;
    height: 461px;
    object-fit: contain;
}
.youtube-conatiner .btn-white{
    display: flex;
    width: 144px;
    height: 48px;
    padding: 8px 12px;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    color: var( --color-dark);
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-sm);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    border-radius: 2px;
    border: none;
    background: #F1F0EC;
    position: relative;
}
.youtube-conatiner .btn-white::after {
    content: "";
    position: absolute;
    top: 50%;             
    right: 12px; 
    width: 24px;
    height: 24px;        
    transform: translateY(-50%); 
    width: 16px;           
    height: 16px;         
    background-image: url('../Img/video.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.youtube-video-conatiner {
    width: 563px;     
    height: 317px;     
    margin: 0 auto;    
}

.youtube-video-conatiner iframe {
    width: 100%;      
    height: 100%;      
}

/* end youtube container */
/* start instergram */
.instagram-wrapper{
    margin-bottom: -52px;
    width: 100% !important;
}
.instergram-conatiner{
    display: flex;
    flex-wrap: wrap;
}
.instergram-conatiner img{
    width: 318px;
    height: 320px;
    object-fit: cover;
}
.eapps-instagram-feed-posts-grid-load-more-container.eapps-instagram-feed-posts-grid-load-more-enabled,.eui-widget-title {
    display: none !important;
}
a[title="Free Instagram Feed Widget"],
a[title="Free Instagram Feed Widget"] div[role="button"] {
    display: none !important;
}

/* end insteagram */
/* start social work */
.socialwork-wrapper {
    padding: 0 20px;
    margin: auto; 
    max-width: 1360px;
    margin-bottom: 120px; 
}

.socialwork-wrapper h3 {
    font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    line-height: 100%;
    padding-bottom: 20px;
    color: var(--color-dark);
}

.socialwork-wrapper h2 {
    color: var(--color-dark);
    font-family: var(--ff-primary);
    font-size: var(--fs-xl);
    line-height: 100%;
    padding-bottom: 20px;
}

.socialwork-wrapper p {
    color: var(--color-dark);
    font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-weight: 500;
    line-height: 24px;
    text-align: justify;
    padding-bottom: 40px;
}

.details-top h3{
    color: #F1F0EC;
    font-family: var(--ff-primary);
    font-size: 24px;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.details-top p{
    color: #FFF;
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; 
    margin: 5px 0 0;
}

/* Work images container */
.socialwork-wrapper .work-img {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}

.socialwork-wrapper .work-img .work-single {
    position: relative;
    width: 49%;
    height: 350px;     
    border-radius: 16px;
    cursor: pointer;
}

.socialwork-wrapper .work-img .work-single img {
    width: 100%;
    height: 350px;      
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    border-radius: 16px;
}


.socialwork-wrapper .work-img .work-single::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 16px;
}

.socialwork-wrapper .work-img .work-single:hover::before {
    border-radius: 16px;
    opacity: 1;
}

.socialwork-wrapper .work-img .work-single .details-top {
    position: absolute;
    bottom: -40px;       
    left: 50%;
    transform: translateX(-50%) translateY(0); 
    width: 100%;
    text-align: left;   
    color: var(--color-light);
    z-index: 2;
    transition: transform 0.5s ease; 
}
.socialwork-wrapper .work-img .work-single .details-top h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #F1F0EC;
    transform: translateY(0);
    transition: transform 0.5s ease;
}
.socialwork-wrapper .work-img .work-single .details-top p {
    opacity: 0 !important;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.socialwork-wrapper .work-img .work-single:hover .details-top {
    transform: translateX(-50%) translateY(-50%);
}
.socialwork-wrapper .work-img .work-single:hover .details-top h3 {
    transform: translateY(-20px); 
}

.socialwork-wrapper .work-img .work-single:hover .details-top p {
    opacity: 1 !important;
    transform: translateY(0);
}

/* end social work */
/* start contact */
.contact-wrapper{
    padding: 0px 20px;
    margin: auto; 
    max-width: 1360px; 
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px; 
}
.contact-details{
    width: 50%;
}
.contact-form{
    width: 45%;
}
.contact-info .single-info,.single-info-mail{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
}
.contact-info .single-info-mail{
    padding-bottom: 20px;

}

.contact-form .lbl-container{
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.contact-wrapper .contact-details h3{
    color: var(--color-dark);
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-sm);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-bottom: 20px;
}
.contact-wrapper .contact-details h2{
    color: var(--color-dark);
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-lg);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 20px;
}
.contact-wrapper .contact-details p{
    color: var(--color-dark);
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: var(--fs-mb-sm);
    font-style: normal;
    font-weight: 500;
    line-height: 24px; 
    padding-bottom: 40px;
}
.contact-wrapper .contact-details a {
    color: #151515;
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; 
    text-decoration: none;
}

.lbl-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.lbl-container p {
    flex: 1;
    margin-bottom: 20px;
}

.wpcf7-form-control {
    width: 100%;
    padding: 8px 0;
    font-size: 15px;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    outline: none;
}

.wpcf7-form-control::placeholder {
    color: #848080;
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    font-family: var(--color-dark);
}
.wpcf7-form-control,
textarea.wpcf7-form-control {
  text-align: left;             
  font-family: var(--ff-primary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.wpcf7-form-control::placeholder,
.wpcf7-form-control::-webkit-input-placeholder, 
.wpcf7-form-control::-moz-placeholder,          
.wpcf7-form-control:-ms-input-placeholder,      
.wpcf7-form-control::-ms-input-placeholder {   
  color: #848080;
  font-family: var(--ff-primary); 
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.button-wrapper {
    display: flex;
    justify-content: flex-end;
    position: relative;
    height: 48px;
    width: 172px;
}
.button-wrapper::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("../Img/black-send.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
}
/* Hover: text + icon zoom only */
.button-wrapper:hover .btn-text {
    transform: scale(1.05);
}

.button-wrapper:hover::after {
    transform: translateY(-50%) scale(1.1);
}

.white-comman-button {
    color: var(--color-dark);
    border-radius: 2px;
    border: 1px solid #151515;
    height: 48px;
    padding: 8px 16px;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
    }



.wpcf7-response-output{
    border-color: transparent;
    color: #dc3232;
    text-align: justify;
    font-family: var(--ff-primary);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; 
    padding-bottom: 20px;
}
.wpcf7 form.invalid .wpcf7-response-output {
    border-color: transparent !important;
}

/* end contact */
/* start footer */
footer{
    background-color: var(--color-dark);
    text-align: center;
    height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}
footer p, a{
    text-align: center;
    color: #FFF;
    font-family: var(--ff-primary);
    font-size: var(--fs-sm);
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}
.footer-social-icons{
    display: flex;
    justify-content: center;
    gap: 10px;
}
footer .footer-social-icons img{
    width: 32px;
    height: 32px;
}
.eapps-instagram-feed-posts-grid-load-more-container.eapps-instagram-feed-posts-grid-load-more-enabled {
    display: none !important;
}

/* end footer */

}
