h1,
h2,
h3 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
}

h1::after,
h2::after,
h3::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: #FF5722;
    border-radius: 50px;
}


.btn {
    background: linear-gradient(45deg, #FF5722, #FFD700);
}

.btn:hover {
    background: linear-gradient(45deg, #e14e0f, #cbb800);
    color: white;
}
.card:hover {
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

p {
    font-size: 1rem !important;
    color: #555;
    line-height: 1.8;

}

#mw-top-message {
    background-color: #000;
    color: #fff;
    letter-spacing: 1px;
}


/*WHat we do section*/
.what-we-do-section .section h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.what-we-do-section .section p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.what-we-do-section .cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.what-we-do-section .card {
    background-color: transparent;
    position: relative;
    width: 400px;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.what-we-do-section .card img.img-1,
.card img.img-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.what-we-do-section .card img.img-2 {
    opacity: 0;
}

.what-we-do-section .card:hover img.img-1 {
    opacity: 0;
}

.what-we-do-section .card:hover img.img-2 {
    opacity: 1;
}

.what-we-do-section .card .spark {
    position: absolute;
    top: -43px;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://dnanetworks.com/wp-content/themes/dna-entertainment/dist/images/src/images/spotlight.png') center center no-repeat;
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.what-we-do-section .card:hover .spark {
    opacity: 1;
}

.what-we-do-section .card-title {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1.2em;
    color: white;
}

/*event card css*/
.event-card {
    position: relative;
    border: none;
    overflow: hidden;
}

.event-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;

}

.event-card:hover img {
    transform: scale(1.1);
    /* Zoom effect */
}

.event-title {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-weight: bold;
}

/* Logo Grids */

.client_members {
    border: 1px solid #ddd;
    padding: 30px;
    height: 150px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.logo-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.front span {
    margin-bottom: 20px;
}

.front,
.back img {
    margin-top: 20px;
}

.back {
    transform: rotateY(180deg);
    background: #f8f9fa;
    /* Different background for the back */
}

.blog-posts-3 .h-350 {
    height: 172px !important;
}

.blog-posts-3 small {
    color: #fff;
}

.blog-posts-3 h4 {
    font-size: 20px;
    color: #fff;
}

.guiding-principles-wrapper {
    background-image: url('https://dnanetworks.com/wp-content/themes/dna-entertainment/dist/images/src/images/about-guides-dna.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.guiding-principles-items {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guiding-principles-items div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 160px;
}

.principles-items h3 {
    color: #f4b737;
}

.heading-tertiary {
    font-weight: 400;
    font-size: 38px;
    line-height: 106.5%;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.about-us-section-col {
    margin-top: -20%;
}

.mw_form {
    position: relative;
    clear: both;
    margin: 30px;
    padding: 50px;
    background-color: #fff;
}

@media (max-width: 768px) {
    .guiding-principles-wrapper {
        background-image: url(https://dnanetworks.com/wp-content/themes/dna-entertainment/dist/images/src/images/about-guides-dna.mob.png);
        position: relative;
    }

    .guiding-principles-wrapper::after,
    .guiding-principles-wrapper::before {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        z-index: 1;
    }

    .guiding-principles-wrapper::before {
        bottom: 0;
        height: 20%;
        background: linear-gradient(180deg, rgba(20, 12, 89, 0) 0, #000 100%);
    }

    .guiding-principles-items img {
        display: none;
    }

    .guiding-principles-items div {
        flex-direction: column;
        gap: 34px;
    }

    .mw-header-section-mh-100vh {
        min-height: calc(50vh - 100px);
    }

    .about-us-para p {
        text-align: center !important;
        font-size: 14px !important;
    }

    .about-us-para {
        font-size: 14px !important;
        text-align: center;
    }

    #mw-element-1737947508062 {
        font-size: 16px !important;
    }

    .heading-tertiary {
        font-size: 30px;
    }

    .guiding-principles-wrapper {
        height: 267px !important;
    }

    .about-us-section-col {
        margin-top: -49%;
    }

    .about-us-section-col p {
        font-size: 12px !important;
    }

    #mw-element-1737953242702 {
        font-size: 14px !important;
    }

    p {
        font-size: 14px !important;
    }

    #mw-element-1737799801827 {
        font-size: 30px !important;
    }
}

.footer-background .mw-layout-container {
    border-top: 1px solid rgba(144, 144, 144, .25) !important;

}

.contact_us {
    display: flex;
    flex-direction: column;
    gap: 114px;
    height: 100%;
    padding: 40px 0;
}

.contact_us_item_content {
    display: flex;
    flex-direction: column;
    gap: 62px;
}

.footer-menu-link {
    list-style: none;
    display: inline-grid;
    grid-template-rows: repeat(5, auto);
    grid-auto-flow: column;
    grid-column-gap: 50px;
    text-transform: uppercase;
}

.contact_us_item_content_content {
    width: 95%;
    height: 75px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.body-text-small {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
}

.secondary-btn-wrap .btn-light {
    border-top: none;
}

.btn-light {
    background-color: transparent !important;
    display: flex;
    align-items: center;
    gap: 50px;
}

.btn-light,
.btn-light_primary {
    padding: 20px 0;
    border-top: 1px solid #fff;
    text-decoration: none;
    box-sizing: border-box;
}

.btn,
.btn-light,
.btn-light_primary,
.businessman-bg,
.businessman_img {
    position: relative;
}

a {
    text-decoration: none;
    color: #000;
}

.contact_us_border {
    border-left: 1px solid rgba(144, 144, 144, .25);
    padding-left: 40px;
}

.contact_us_elsewhere>:nth-child(1) {
    display: flex;
    gap: 40px;
}

.contact_us_elsewhere>:nth-child(2) ul {
    padding-top: 47px;
    display: flex;
    gap: 40px;
}
.contact-box {
            
            padding: 30px;
            border-radius: 15px;
            text-align: center;
        }
@media (max-width: 767px) {

    .contact_us,
    .footer_border {
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .contact_us {
        padding-bottom: 0;
    }
}

@media (max-width: 767px) {
    .contact_us_item_content {
        gap: 60px;
    }
}

@media (max-width: 767px) {
    .contact_us_border {
        border-left: none;
        padding-top: 40px;
        padding-left: 0;
        border-top: 1px solid rgba(144, 144, 144, .25);
    }

    h1 {
        font-size: 30px !important;
    }

    .what-we-do-section .card {
        height: 280px;
    }
}
.what-sets-wrapper.section {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 50px;
}

.what-sets-wrapper .card {
    background: white;
    padding: 60px 30px 40px;
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e0e0e0;
    position: relative;
    outline: 1px dashed rgba(154, 86, 58, 0.5);
    /* Added dotted outline */
    outline-offset: -22px;
    /* Adjust offset if needed */
}

.what-sets-wrapper .card:hover {
    outline: 1px dashed rgba(244, 215, 200, 0.5);
}

.what-sets-wrapper .icon-container {
    box-shadow: 0 0 0 8px #fff !;
    width: 110px;
    height: 110px;
    background: #f4d7c8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.6s, background 0.3s;
}

.what-sets-wrapper .card:hover .icon-container {
    transform: translateX(-50%) rotateY(180deg);
    background: #4E342E;
}

.what-sets-wrapper .icon-container  {
font-size: 34px;
    color: #fff;
    background: linear-gradient(135deg, #FFA500, #FF5722);
    border-radius: 50%;
    display: inline-flex
;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    transition: transform 0.6s;
}

.what-sets-wrapper .card:hover .icon-container img {
    transform: rotateY(180deg);
    filter: brightness(0) invert(1);
}

.what-sets-wrapper .title {
    font-size: 20x;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 15px;
}

.what-sets-wrapper .description {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 15px;
}
 .why-choose-highlight-section .highlight-item {
            border-radius: 15px;
			display:flex;
			align-items:center;
			gap:10px;
  
        }
.why-choose-highlight-section .highlight-item img {

height:32px;
width:32px;
}
        .why-choose-highlight-section .highlight-icon {
			background: linear-gradient(90deg, #FFD700, #FF5722);
           border-radius:50%;
			padding:10px;
            margin-bottom: 5px;
            color: #6f42c1;
        }
.why-choose-highlight-section h5 {
font-size:20px;
}
.why-choose-us-slider img {
border-radius:20px;
}
.feature-40 {
padding:40px 10px !important;
}
.capacity-card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
border-radius:10px;
height:100%;
}
.companies-wrapper img {
height:60px;
width:60px;
}  
.blog-posts-1 .h-100 {

    overflow: hidden;
	height:100%;
}
.blog-posts-1 .h-350 {
height:255px !important;
border-radius:10px;
}
/*.blog-posts-1 .mt-md-auto  {
padding:0px 20px;
}*/
.blog-posts-1 h4 {
font-size:18px !important;
font-weight:600;
}
.blog-posts-1 .m-t-auto a {
background: linear-gradient(45deg, #FFD700, #FF5722);
padding:5px 20px;
color:#fff;
border-radius:30px;
}
.about-us-breadcrumb a {
color:#fff !important;
}
/*services page css*/
.service-card-page .service-card{
      border: 1px solid #e0e0e0;
	border-left:3px solid #FF5722;	
border-right:3px solid #FF5722;	
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s ease-in-out;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .service-card-page {
      transform: translateY(-5px);
    }
    .service-card-page .service-title {
      font-weight: bold;
      font-size: 1.25rem;
    }
    .service-card-page .service-description {
      font-size: 0.95rem;
      color: #555;
    }
    .service-card-page .service-image {
      flex-shrink: 0;
      width: 300px;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
    }
@media only screen and (max-width: 768px) { 
  .service-card-page .service-card{ 
  display:block;
  }
  .service-card-page .service-title {
  margin-top:10px;
  }

}
.our-work-gallery .mh-350 {
min-height:300px !important;
}
.our-work-gallery .img-as-background {
border-radius:10px !important;
}
#mw-module-1745477244856-pictures .slick-slide img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#mw-module-1745477244856-pictures .slick-slide:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.region-wrapper .card-body {
border-left:3px solid #FF5722; 
border-right:3px solid #FF5722;  
border-radius:5px;
}

 .region-title {
	text-align:center;
      margin-bottom: 1rem;
	color: #333;
    }
    .location-list {
      list-style-type: none;
      padding-left: 0;
    }
    .location-list li::before {
      content: "• ";
      color: #198754;
    }
.ad-card {
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      overflow: hidden;
    }
    .ad-card:hover {
      transform: translateY(-5px);
    }
    .ad-card img {
      height: 180px !important;
      object-fit: cover;
      width: 100%;
    }
    .ad-card h5 {
      font-size: 1rem;
    }
.ad-card a {
color:#fff !important;
}

.mw_form {
margin:0 !important;
padding:0 !important;
background:transparent !important;
}
.advertising-form .form-control{
border:1px solid #ddd !important;
}
.advertising-form input::placeholder,
.advertising-form textarea::placeholder {
  color: #fff !important; /* Change to your desired color */
  opacity: 1 !important;  /* Optional: ensures full visibility */
}
.form-left-col h2:after {
content: none !important;
}