@font-face {
    font-family: 'Poppins';
    src: url('../Assets/Poppins/Poppins-Regular.ttf');
}

*{
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root{
    --app-color: #D1362A;
}

body {
  overflow-x: hidden;
}


.custom-btn{
    background-color: var(--app-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.custom-btn:hover{
    background-color: #7f1414;
    color: #fff;
    border: none;
    padding-left: 50px !important;
    padding-right: 50px !important;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.custom-outline-btn{
    border: 1px solid var(--app-color);
    color: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.title-headlines .text-smoke-2{
    color: #8b8b8b;
    font-weight: 400;
}

.comp-sponsor-marquee{
    display: flex;
    flex-direction: row;
}

.comp-sponsor-logo{
    color: whitesmoke;
    font-size: 20px;
    padding: 0 35px;
    background-color: #1e1e1e9e;
}

/* General styling for sections */
section {
    width: 100%;
    height: 100vh;
    max-height: auto;
    overflow-x: hidden !important;
}


/* NAVBAR */
nav{
    position: fixed;
    z-index: 999;
    width: 100%;
    background: #111111b6;
}

nav .wrapper{
    position: relative;
    max-width: 1300px;
    padding: 0px 30px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .nav-links{
    display: flex;
    font-weight: 400 !important;
    color: white !important;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links .nav-center {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex: 1;
}

.nav-links .nav-right {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
  }
  
  .nav-links .nav-center li,
  .nav-links .nav-right li {
    list-style: none;
  }

.nav-links li{
    list-style: none;
}

.nav-links li a{
    color: #f2f2f2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover{
    color: var(--app-color) !important;
}

.nav-links li:hover .mega-box{
    top: 60px;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
}

.mega-box{
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 70px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content{
    background: #ffffff;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

.mega-box .content .row{
    width: calc(25% - 30px);
    line-height: 45px;
}

.content .row img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content .row header{
    color: black;
    font-size: 20px;
    font-weight: 500;
}
.content .row .mega-links{
    margin-left: -40px;
    border-left: 1px solid rgba(255,0,0,0);
}
.row .mega-links li{
    padding: 0 20px;
}
.row .mega-links li a{
    position: relative;
    padding: 0 20px;
    color: #000000;
    font-size: 15px;
    display: inline-block;
    text-decoration: none;
}


.row .mega-links li a:hover::after {
    background-color: #000000; /* Show thin black line */
}

.product-card {
    width: 20%;
    text-align: center;
    min-width: 150px;
}

.product-card .dropdown-item {
    color: #000000 !important;
    font-size: 15px;
    text-align: center;
    display: block;
    margin-top: 8px;
}
  
  .product-card img {
    width: 100%;
    height: auto;
    display: block;
}
  
  .card-body {
    margin-top: 10px;
}
  
  .cta-column {
    width: 30%;
    padding-left: 50px;
    border-left: 1px solid var(--app-color);
}
  
  .cta-column .mega-links {
    list-style: none;
    padding-left: 0;
    
}
  
  .cta-column .mega-links li a {
    color: #000;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    
}
  
  
  .cta-column .mega-links li a:hover::after {
    background-color: #000;
}

/* Mobile hamburger menu icon */
.menu-toggle {
    position: fixed;       /* stays at top */
    top: 20px;
    right: 30px;
    z-index: 1001;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* Hide it when overlay is shown */
.menu-toggle.hidden {
    display: none;
}
  
  /* Fullscreen menu overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 30px 20px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  

  .mobile-menu-overlay::-webkit-scrollbar {
    display: none;
  }
  
  /* Show overlay when active */
  .mobile-menu-overlay.active {
    display: flex;
}
  
  /* Close button */
  .mobile-menu-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 26px;
    color: #000;
    cursor: pointer;
  }
  
  /* Overlay nav links */
  .mobile-menu-links {
    list-style: none;
    padding: 0;
    margin-top: 60px;
    width: 100%;
  }
  
  .mobile-menu-links li {
    width: 100%;
    margin-bottom: 20px;
    font-size: 18px;
  }
  
  .mobile-menu-links li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    font-size: 18px;
    text-decoration: none;
    width: 100%;
  }

  .mobile-menu-links li a:hover{
    color: var(--app-color) !important;
}

  /* Mobile submenu under Services */
  .mobile-submenu {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .mobile-submenu li a {
    font-size: 16px;
    color: #333;
  }
  
  .mobile-submenu li {
    margin: 5px 0;
  }

  .mobile-submenu.active {
    max-height: 600px;
  }

  

/* Title background image section */
section.first-page .title-bg-image {
    width: 100%;
    height: 100vh;
    background-image: url('../img/background/Water-Waves-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-color: #202020;
}

.title-bg-image .title-headlines {
    width: 100%;
    height: 67vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/*  SERVICES PAGE */
section.second-page
{
    width: 100% !important;
    height: auto !important;
}
section.more-height
{
    height: auto !important;
}
.head-service .h1
{
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}
.head-service .h1:after
{
    content: '';
    position: absolute;
    height: 2px;
    width: 100px;
    background-color: var(--app-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.services-content .card
{
    border-radius: 20px !important;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    -ms-border-radius: 20px !important;
    -o-border-radius: 20px !important;
}




.services-content .card#card-1
{
    width: 100%;
    height: 400px;
    display: block;
    background-image: url("../img/service/imagedakun/consulting-1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.services-content .card#card-2
{
    width: 100%;
    height: 400px;
    display: block;
    background-image: url("../img/service/imagedakun/strategy-presentatio.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.services-content .card#card-3
{
    width: 100%;
    height: 400px;
    display: block;
    background-image: url("../img/service/imagedakun/ai-insights-card-2_Small.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.services-content .card#card-4
{
    width: 100%;
    height: 400px;
    display: block;
    background-image: url("../img/service/imagedakun/hardware-installation.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.services-content .card#card-5
{
    width: 100%;
    height: 400px;
    display: block;
    background-image: url("../img/service/imagedakun/cloud1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.services-content .card#card-6
{
    width: 100%;
    height: 400px;
    display: block;
    background-image: url("../img/service/imagedakun/IOT-Engineering.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.services-content .card#card-7
{
    width: 100%;
    height: 400px;
    display: block;
    background-image: url("../img/service/imagedakun/network.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.services-content .card#card-8
{
    width: 100%;
    height: 400px;
    display: block;
    background-image: url("../img/service/imagedakun/Automation.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.services-content .card#card-9
{
    width: 100%;
    height: 400px;
    display: block;
    background-image: url("../img/service/imagedakun/cybe.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.services-content .content
{
    position: absolute;
    overflow: hidden;
    cursor: default;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 20px !important;
    background-image: linear-gradient(to bottom, #000000e0 0%, #0000007c 20%, #00000018 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
    -ms-border-radius: 20px !important;
    -o-border-radius: 20px !important;
}

.services-content .content ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove default padding */
    color: rgb(195, 195, 195);
}

.services-content .content li {
    margin-bottom: 8px; /* Add some space between the items */
    color: rgb(195, 195, 195); /* Ensure readability */
}


.services-content .content .h4 {
    font-weight: bold;
    font-size: 16px;
    justify-content: center;
    padding: 30px;
}

.services-content .content p {
    transition: 4s ease-in-out;
    display: block;
    color: rgb(195, 195, 195) !important;
    -webkit-transition: 4s ease-in-out;
    -moz-transition: 4s ease-in-out;
    -ms-transition: 4s ease-in-out;
    -o-transition: 4s ease-in-out;
}
.services-content .content
{
    background-color:  #00000093;
}

.row-downservices
{
    transition: all 2s ease-in-out !important;
    -webkit-transition: all 2s ease-in-out !important;
    -moz-transition: all 2s ease-in-out !important;
    -ms-transition: all 2s ease-in-out !important;
    -o-transition: all 2s ease-in-out !important;
}

/* WHO WE ARE? */
section.third-page{
    width: 100%;
    height: auto;
    background-color: #141414;
}
.head-who-we-are .h1
{
    position: relative;
    color: #f5f5f5;
}
.head-who-we-are .h1::after
{
    content: '';
    position: absolute;
    height: 1.5px;
    width: 100px;
    background-color: #ffffff;
    bottom: 0;
    transform: translateX(-170px);
    -webkit-transform: translateX(-170px);
    -moz-transform: translateX(-170px);
    -ms-transform: translateX(-170px);
    -o-transform: translateX(-170px);
}
.third-page .img-responsive
{
    width: 550px;
    height: 400px;
    overflow: hidden !important;
}
.img-responsive img#img-about-us
{
    width: 100%;
    height: 100%;
    object-position: left;
    object-fit:cover;
}
.text-about-us
{
    color: #f5f5f5;
}
.sub-content
{
    color: #dddddd;
}





/* NEWS */
section.fourth-page
{
    width: 100% !important;
    height: auto !important;
}
.head-news .h1
{
    position: relative;
}
.head-news .h1::after
{
    content: '';
    position: absolute;
    height: 1.5px;
    width: 150px;
    background-color: #414141;
    bottom: 0;
    transform: translateX(-260px);
    -webkit-transform: translateX(-260px);
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -o-transform: translateX(-260px);
}
.img-card-news
{
    width: 100%;
    height: 300px;
}

.img-card-news img
{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover !important;
}
.news-card
{
    border: none !important;
    cursor: default !important;
}





/* LETS TALK =  CARD ROW */
.lets-talk{
    background-color: #18181b !important;
}

/* .lets-talk .container
{
    padding-bottom: 30px;
    border-bottom: #646464 2px solid;
} */

a.link-talk
{
    text-decoration: none !important;
    color: #fff;
}

a.link-talk 
{
    border: 1px solid #fff;
    background-color: #fff;
    color:  #000 !important;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    text-decoration: none;
}

a.link-talk:hover 
{
    padding: 8px 20px;
}

a.link-talk:hover .fas
{
    animation: arrowGo 1s linear infinite;
    -webkit-animation: arrowGo 1s linear infinite;
}

@keyframes arrowGo {
    0%{
        transform: translateX(-6px);
        -webkit-transform: translateX(-6px);
        -moz-transform: translateX(-6px);
        -ms-transform: translateX(-6px);
        -o-transform: translateX(-6px);
    }
    50%{
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
    }
    100%{
        transform: translateX(8px);
        -webkit-transform: translateX(8px);
        -moz-transform: translateX(8px);
        -ms-transform: translateX(8px);
        -o-transform: translateX(8px);
    }
}



/* SECTION   -  BEFORE FOOTER & SOCIAL MEDIA */
section.before-footer
{
    width: 100%;
    height: auto !important;
    background-color: #18181b;
}
.head1 .h6{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
}


.footer-form
{
    border-bottom: #3f3f3f 1px solid;
}

.social-media-icons
{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.social-media-icons a {
    text-decoration: none !important;
}

.social-media-icons a:hover i,
.social-media-icons a:hover .media-content
{
    color: #D1362A !important;
}

.social-media .social-icon
{
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.social-icon i
{
    font-size: 45px;
    color: #fff;
}
.social-icon .media-content
{
    height: 40px;
    display: flex;
    flex-direction: column;
    color: #fff;
}
.media-content .h5
{
    font-size: 17px;
    font-family: monospace;
    font-weight: 600 !important;
    margin-bottom: 2px !important;
}
.media-content p
{
    font-size: 14px;
    font-family: monospace;
}



/* footer form */
.footer-form
{
    background-image: url('../img/service/imagedakun/photo-1.png'), linear-gradient(to right, #181818f6 70%, #ccc 100%);
    background-repeat: no-repeat;
    background-blend-mode: multiply;
    background-size: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.footer-form form.home-form
{
     background-color: #0c0c0cbe !important;
     box-shadow: 0px 0px 10px 1px #302f2f94;
     border-radius: 10px !important;
     -webkit-border-radius: 10px !important;
     -moz-border-radius: 10px !important;
     -ms-border-radius: 10px !important;
     -o-border-radius: 10px !important;
     padding-bottom: 20px;
}
form.home-form .text .h3
{
    color: #cfcfcf !important;
    font-weight: 600;
}
form.home-form label
{
    color: #b9b9b9;
}
form.home-form .form-control
{
    color: #f3f3f3;
    border: none !important;
    background-color: #202020;
}
form.home-form .form-control::placeholder
{
    color: #707070;
}

form.home-form .form-control:focus
{
    box-shadow: none !important;
    background-color: #474747;
    color: #f3f3f3;
    border:1px solid #892be2ad;
}
/* form ends */









/* footer links */
.footer-links
{
    width: 100%;
}

.footer-links .content-links
{
    display: block;
}

.footer-links .content-links2{
    display: none;
}

.footer-links .content-links .h5,
.footer-links .content-links2 .h5
{
    font-size: 18px;
    color: #e2e2e2;
    cursor: default;
}

.content-links2 .h1{
    color: #fafafa;
    display: flex;
    align-items: flex-end;
}

.footer-links .content-links .links
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.content-links .links a
{
    color: #aaaaaa;
    font-size: 17px;
    margin: 10px 0;
    text-decoration-line: none;
    -moz-text-decoration-line: none;
}
.links a:hover
{
    text-decoration: underline;
}

.bussiness-content,
.content-links .links
{
    padding-top: 19px;
}

.bussiness-content .content,
.content-links .content-news
{
    color: #aaaaaa;
}
.bussiness-content .h1{
    color: #fafafa;
    display: flex;
    align-items: flex-end;
}





/* footer down */
.footer-down
{
    background-color: #000 !important;
}

.footer-down .help-desk
{
    display:flex;
    flex-direction: row;
    gap: 10px;
}
.footer-down .help-desk .h4
{
    color: #adadad;
    font-size: 18px;
}
.help-support-phone-email .support-phone .h5,
.help-support-phone-email .support-email .h5
{
    color: #adadad;
    font-size: 14px;
}
.support-email a{
    color: var(--app-color) !important;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.help-support-phone-email .support-phone div:nth-child(2),
.help-support-phone-email .support-phone div:nth-child(3)
{
    color:#929292cc;
    font-family: Georgia, 'Times New Roman', Times, serif;
}






/* footer  */
.footer-privacy
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy.h5
{
    color: #adadad;
    font-size: 18px;
}

.social-icons-footer
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-icons-footer a
{
     width: 50px;
     height: 50px;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 1px solid #5f5f5f6c;
}
.social-icons-footer a i{
    font-size: 25px;
    color: #cfcfcf;
}

.social-icons-footer a:hover
{
    transition: all .5s ease-in-out;
    border: 1px solid var(--app-color);
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
}


/* ALERT */
.alert.notify-alert
{
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 100000 !important;
}


  


/* =====================================  RESPONSIVE ======================================= */

/* Hide desktop nav on small screens */
@media (max-width: 768px) {
    .nav-links,
    .nav-center,
    .nav-right {
      display: none !important;
    }
  
    .menu-toggle {
      display: block;
    }
}

@media screen and (min-width: 768px) {
    .menu-toggle {
      display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    /* Optional: adjust padding, font sizes, spacing for iPad */
    .nav-links li a,
    .mobile-menu-links li a {
      font-size: 18px;
      padding: 12px 0;
    }
  
    .mobile-menu-overlay {
        padding: 40px 30px;
    }
  
    .menu-toggle {
      display: none; /* hide hamburger if showing full nav */
    }
  
    nav .nav-links {
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      flex-wrap: wrap;
    }
  
    .nav-links > li {
      margin: 0 10px;
    }
  
    .nav-right {
      display: flex;
      gap: 20px;
      justify-content: flex-end;
    }
  
    .mega-box {
      position: absolute;
      left: 0;
      width: 100%;
      background: white;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
  
    /* Optional spacing fixes */
    .product-card img {
      width: 100px;
    }
  }

  @media (min-width: 768px) {
    .nav-links {
      display: flex !important;
    }
  
    .menu-toggle {
      display: none !important;
    }
  }
  

@media (max-width: 768px){
    section.second-page
    {
        width: 100% !important;
        height: auto !important;
    }
    .mobile-menu-overlay.active ~ body{
        overflow-y: hidden !important;
    }
}

@media (max-width: 1200px){
    .third-page .img-responsive
    {
        width: 550px;
        height: 400px;
        overflow: hidden !important;
    }
    .img-responsive img#img-about-us
    {
        width: 40vw;
        display: block !important;
        object-position: left;
        object-fit:cover;
    }
}

@media (max-width: 767px){
    .img-responsive img#img-about-us
    {
        width: 80vw;
        display: block !important;
        object-position: left;
        object-fit:cover;
    }
}

@media (max-width: 991px) {
    .social-icon .media-content
    {
        height: 40px;
        display: none;
        flex-direction: column;
        color: #fff;
    }
    .social-media-icons
    {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }
}

@media (max-width: 486px) {
    .social-icon i
    {
        font-size: 2rem;
        color: #fff;
    }
}


@media (max-width: 482px) {
    .footer-form
    {
        background-image: url('../img/service/imagedakun/photo-1.png'), linear-gradient(to right, #181818f6 70%, #ccc 100%);
        background-repeat: no-repeat;
        background-blend-mode: multiply;
        background-size: cover;
        object-fit: cover;
        background-position: center;
        width: 100%;
        height: 100%;
    }
}


@media (max-width: 990px) {
    .bussiness-content .h1{
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .footer-links .content-links.first
    {
        display: none;
    }
    .footer-links .content-links2{
        display: block;
    }
}

@media (max-width: 992px) {
    .navbar-toggler-icon
    {
        --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
}
