/* Universal Styles */
html {
	scroll-behavior:smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
        font-family: 'Rubik',Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.loader_back {    position: fixed;
    width: 100%;
    height: 100%;
    background: #000000de;
    z-index: 44;
    display: flex;
    align-items: anchor-center;
    justify-content: center;}
.loader {
  position: relative;
  width: 100px;
  height: 16px;
}
.loader:before , .loader:after{
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 32px 0 #fff;
  left: 0;
  top: 0;
  animation: ballMoveX 2s linear infinite;
}
.loader:after {
  box-shadow: none;
  transform: translateX(64px) scale(1);
  z-index: 2;
  animation: none;
  animation: trfLoader 2s linear infinite;
}

@keyframes trfLoader {
  0% , 5%{
    transform: translateX(64px) scale(1);
    background: #FFF;
  }
  10%{
    transform: translateX(64px) scale(1);
    background: #ff3d00;
  }
  40%{
      transform: translateX(32px) scale(1.5);
      background: #ff3d00;
    }
  90%, 95% {
    transform: translateX(0px) scale(1);
    background: #ff3d00;
  }
  100% {
    transform: translateX(0px) scale(1);
    background: #FFF;
  }
}
@keyframes ballMoveX {
  0% , 10%{  transform: translateX(0) }
  90%, 100% { transform: translateX(32px) }
}
      
	  
	  #myBtn {
      display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 99;
    font-size: 30px;
    border: none;
    outline: none;
    background: linear-gradient(45deg, #e43737, #e43737);
    color: white;
    cursor: pointer;
    padding: 8px 13px;
    border-radius: 40px;
    animation: bouncein 0.4s linear forwards;
}
@keyframes bouncein {
	0%{transform: translateY(-300px);opacity:0.5;}
	100% {transform: translateY(0px);opacity:1;}
}

#myBtn:hover {
  background-color: #555;
}

.container-h {
         width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0px 0;
    z-index: 2;
    position: relative;
}

h1, h2, h3 {
    color: #333;
    margin-bottom: 20px;
}

p {
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background: #007bff; /* Blue color for buttons */
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #0056b3;
}

/* Header/Navbar */
.navbar {
            background: #fff;
    color: #333;
    padding: 0px 0;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    top: 0;
    z-index: 33;
}

.navbar .container {
       display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.navbar .logo img {
       height: 90px;
    width: auto;
}

.navbar .nav-links ul {
    list-style: none;
    display: flex;
}

.navbar .nav-links ul li {
    margin-left: 20px;
}

.navbar .nav-links ul li a.active {
	    color: red;
}
.navbar .nav-links ul li a {
           color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-btn {    background: #b4370f;
    color: white !important;
    padding: 12px 20px;
    border-radius: 5px;}

.navbar .nav-links ul li a:hover {
    color: #FF5722;
}

.menu-toggle {
    display: none; /* Hidden on desktop */
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
          color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
    height: 80vh;
    width: -webkit-fill-available;
    overflow: hidden;
    background: linear-gradient(45deg, #03A9F4, #9C27B0);
}

.back_img {             position: absolute;
    z-index: 0;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    object-position: top;
	animation:scale22 5s linear infinite alternate;
	}
	
	
	@keyframes scale22 {
		0% {scale:1.0;}
		100% {scale:1.09;}
	}

.hero h1 {
                font-size: 4rem;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 16px black;
}

.hero p:after {
    position: absolute;
    content: '';
    border: 20px solid #b4370f;
    border-right: 20px solid transparent;
    top: 6px;
    right: -33px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
    background: #bf3c13;
    padding: 10px;
    position: relative;
    z-index: 3;
    width: fit-content;
    margin: 20px auto;
    text-shadow: 1px 1px 10px black;
}

.hero p {
           font-size: 1.2em;
    margin-bottom: 30px;
    color: #fff;
    background: #FF5722;
    padding: 10px;
    position: relative;
    width: fit-content;
    margin: 20px auto;
    text-shadow: 1px 1px 10px black;
}

/* Sections General */
section {
    padding: 0px 0;
    text-align: center;
}
 

/* Services Section */
.services-section .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-item i {
    font-size: 3em;
    color: #007bff;
    margin-bottom: 15px;
}

.service-item h3 {
    color: #007bff;
}



	
	
	.container3 {
                   text-align: justify;
    display: flex;
    width: 100%;
    min-height: 80vh;
    color: white;
    background: #0a1656;
    }

    /* Left Side */
    .contact-info {
            width: 50%;
    padding: 40px;
    box-sizing: border-box;
    }

    .info-box {
         border: 1px solid #ff980066;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 7px;
    }

    .info-box h3 {
      color: #ff9800;
      margin: 0 0 10px;
      display: flex;
      align-items: center;
      font-size: 20px;
    }

    .info-box p {
          margin: 5px 0;
    }

    /* Right Side */
    .contact-form {
          width: 50%;
    padding: 40px;
    box-sizing: border-box;
    }

    .contact-form input,
    .contact-form textarea {
                 width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #f9c67b;
    background: #ffffff;
    color: #0b132b;
    font-size: 16px;
    border-radius: 4px;
    font-family: 'Rubik';
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: #f1d18a;
    }

    .contact-form textarea {
      height: 150px;
      resize: none;
    }

    .contact-form button {
            background: #FF5722;
    color: white;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    width: -webkit-fill-available;
    border-radius: 4px;
    }

    .contact-form button:hover {
      background: #4CAF50;
    }
	
	
	::placeholder {
    color: #0b132b !important;
    font-style: italic;
}
	.footer {
       text-align: center;
    margin-top: 0;
    border-top: 0px solid rgba(250,250,250,0.15);
    padding: 50px 0px;
    background: #0b132b;
    color: white;
    display: flex;
    align-items: anchor-center;
    justify-content: space-around;
    flex-direction: column;
}

.container-3 {
            max-width: -webkit-fill-available;
    padding: 4rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffefd6, #dbe0ff);
     
    }

    .title {
             font-size: 40px;
    font-weight: 700;
    position: relative;
    margin-bottom: 40px;
    width: fit-content;
    margin: 10px auto;
    }

    .title::before {
      content: "";
      position: absolute;
      left: -20px;
      top: 5px;
      width: 6px;
      height: 80%;
      border-radius: 3px;
      background: linear-gradient(180deg, #f7b733, #fc4a1a); /* yellow-orange */
    }
	
	.cont-3 {    display: grid;
    grid-template-columns: 50% 50%;
    align-items: anchor-center;
    justify-content: center;}


.cont-3 img{    width: 100%;
    height: 100%;
    border-radius: 20px;}
	
	
.cont-3:hover  img{
	transition:0.4s;
	transform: translateY(-10px);
}
.cont-3  ul {}
.cont-3  ul li::before {
  content: '✅';
  
}

.cont-3  ul li {    list-style: none;
    padding: 6px 0px;
    font-size: 16px;}

    .vision-section ul {
          list-style: none;
    padding-left: 0;
    font-size: 18px;
    line-height: 1.8;
    width: 40%;
    text-align: left;
    display: inline-block;
    margin: 20px 0px;
    }

   .vision-section ul li {
          position: relative;
    margin-bottom: 14px;
    display: flex;
    padding: 0px 25px;
    gap: 10px;
    transition: transform 0.2s ease, color 0.2s ease;
    }

 

   .vision-section ul li:hover {
      transform: translateX(5px);
      color: #2882ff;
    }


.vision-section ul li::before {
  content: '✅';
  
  
}
   
   
   .vision-section p {    width: -webkit-fill-available;
    max-width: 1000px;
    margin: 20px auto;
    font-size: 16px;}
   
   .vision-list {}  




 .vision-section {
         padding: 80px 0;
    background: linear-gradient(135deg, #ffefd6, #dbe0ff);
    }

    .vision-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      background: #fff;
      padding: 50px;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    /* Image */
    .vision-image img {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    /* Content */
    .vision-content h2 {
      font-size: 34px;
      font-weight: 700;
      color: #3A7BD5;
      margin-bottom: 20px;
      position: relative;
    }

    .vision-content h2::after {
      content: "";
      display: block;
      width: 70px;
      height: 4px;
      background: linear-gradient(90deg, #f7b733, #fc4a1a);
      margin-top: 8px;
      border-radius: 2px;
    }

    .vision-content p {
      font-size: 17px;
      line-height: 1.8;
      color: #555;
      margin-bottom: 25px;
      text-align: justify;
    }

    .competencies {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .competencies li {
      font-size: 16px;
      color: #444;
      margin-bottom: 12px;
      padding-left: 25px;
      position: relative;
    }

    
    /* Responsive */
   
   /* Section Layout */
.about-us {
            background-color: #05255e;
    border-radius: 0px;
    padding: 40px;
    color: white;
}

.container-about {    display: grid;
    grid-template-columns: 50% 50%;
    align-items: anchor-center;}
	
	
	.tag-about {}
	.intro-text {    color: #ff3838;}
	.tag-about h1{    color: #ff8f2c;
    font-size: 50px;}

.about-header {
      margin-bottom: 40px;
    text-align: left;
}

.description {
  text-align: justify;
  margin-bottom: 40px;
}

.flexmt {       align-items: anchor-center;
    display: flex;
    justify-content: center;}

.mission, .team {
       border: 1px solid #ffffff;
    min-height: 200px;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    color: black;
    width: 500px;
    display: flex;
    align-items: anchor-center;
    flex-direction: column;
    background: white;
    height: 517px;
    margin: 10px;
    top: -76px;
    position: relative;
    box-shadow: 1px 1px 20px 0px #a0a0a070;
}

.mission:hover img, .team:hover img{
	transition:0.4s;
	transform: translateY(-10px);
}


.mission img, .team img {    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;}

.mission h2, .team h2 {
      text-align: center;
    color: #ff8f2c;
    font-size: 30px;
 
}


.approach-section {
  padding: 40px;
}

.approach-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
}

.bubble-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 300px;
  min-height: 300px;
}

.bubble-center {
  background-color: white;
  border: 4px solid #333;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 2;
}

.bubble {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    text-align: center;
    font-size: 14px;
    padding: 10px;
    z-index: 1;
}

.blue .bubble {
  background: #3db2ff;
  color: white;
}

.orange .bubble {
  background: #f26722;
  color: white;
}

.yellow .bubble {
  background: #fbb034;
  color: white;
}

.arrow {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.arrow-step {
  width: 20px;
  height: 20px;
  background: black;
  clip-path: polygon(100% 0, 0% 50%, 100% 100%);
}



.hiring-process {
  padding: 30px 20px;
}

.process-container {
      display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px 0px;
    margin-top: 30px;
}

.process-step {
          width: -webkit-fill-available;
    max-width: 300px;
    text-align: center;
border-radius: 10px;
}


.hiring-process .arrow {
  width: 100%;
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
  margin-bottom: 10px;
}


.hiring-process .maroon { background-color: #c2185b; }

.hiring-process .teal { background-color: #00bfa5; }

.hiring-process .green { background-color: #8bc34a; }

.hiring-process .red { background-color: #f44336; }

.hiring-process .orange { background-color: #ff9800; }


.hiring-process .box {
      border: 0px solid #ccc;
    background: #fff;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 10px;
    min-height: 150px;
    box-shadow: 0px 0px 20px 0px #bebebe2b;
}


.hiring-process .box.small {
  min-height: 100px;
  font-size: 14px;
}


.hiring-process ul {
  list-style: none;
  padding-left: 0;
  text-align: left;
}

.hiring-process ul li {    display: flex;
    width: -webkit-fill-available;
    justify-content: normal;
    gap: 10px;}

.hiring-process ul li::before {
  content: '✅';
  
}

.clients-section {
      padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffefd6, #dbe0ff);
}

.clients-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.clients-section .lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #334155;
}

.slider-scroll-snap {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 1rem;
  scrollbar-width: none; /* hide Firefox scrollbar */
}

.slider-scroll-snap::-webkit-scrollbar {
  display: none; /* hide Chrome scrollbar */
}

.client_box {
      flex: 0 0 auto;
    scroll-snap-align: center;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 250px;
    display: flex;
    height: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client_box img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: auto;
    transition: filter 0.3s ease;
}

.client_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.client_box:hover img {
  scale:1.05;
}



 .framework {
          text-align: center;
    padding: 3rem;
    }

    .framework h2 {
      font-size: 2rem;
      color: #3b82f6;
      margin-bottom: 2rem;
    }

    .steps {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
    }

    .step {
         position: relative;
    text-align: center;
    width: 200px;
    box-shadow: 0px 0px 20px 0px #c5c5c542;
    border-radius: 14px;
    padding: 19px;
    }

    .diamond {
      width: 100px;
      height: 100px;
      margin: auto;
      transform: rotate(45deg);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.5rem;
      font-weight: bold;
      border-radius: 8px;
    }

    /* Colors for each step */
    .s1 { background: #065f89; }
    .s2 { background: #14b8a6; }
    .s3 { background: #0d9488; }
    .s4 { background: #1e293b; }
    .s5 { background: #e11d48; }
    .s6 { background: #1d4ed8; }
    .s7 { background: #f97316; }
    .s8 { background: #16a34a; }

    .diamond span {
      transform: rotate(-45deg);
    }

    .label {
      margin-top: 1rem;
      font-size: 0.9rem;
      line-height: 1.3;
      color: #333;
    }

    /* Connector lines */
    .step::after {
      content: '';
      position: absolute;
      top: 50%;
      right: -2rem;
      width: 2rem;
      height: 4px;
      background: #ccc;
      transform: translateY(-50%);
    }

    .step:last-child::after {
      display: none;
    }

    
	
	
	
    .advantage-section {
      max-width: 1100px;
      margin: auto;
    }

    .advantage-section h2 {
      font-size: 2.2rem;
      font-weight: 700;
      color: #3b82f6;
      margin-bottom: 2rem;
      text-align: left;
      border-left: 5px solid #facc15;
      padding-left: 0.6rem;
    }

    .advantage-grid {
         display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    }

    .advantage-item {
      padding: 2rem;
      border-right: 2px dotted #38bdf8;
      border-bottom: 2px dotted #f87171;
    }

    .advantage-item i {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    
    }

    .advantage-item h3 {
      font-size: 1.2rem;
      margin-bottom: 0.6rem;
      font-weight: 700;
    }

    .advantage-item p {
      font-size: 0.95rem;
      line-height: 1.5;
      color: #333;
      max-width: 300px;
      margin: auto;
    }

    /* Colors */
    .orange { color: #f97316; }
    .purple { color: #7c3aed; }
    .green { color: #16a34a; }
    .red { color: #dc2626; }

    /* Remove duplicate borders */
    .advantage-item:nth-child(2),
    .advantage-item:nth-child(4) {
      border-right: none;
    }
    .advantage-item:nth-child(3),
    .advantage-item:nth-child(4) {
      border-bottom: none;
    }

   
   
      /* Section Container */
        .efficacy-section {
                max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 50px 0px;
        }

        /* Main Heading */
        .efficacy-section h2 {
            font-size: 2.5rem;
            color: #004d7a; /* A professional blue color */
            margin-bottom: 40px;
            font-weight: 600;
        }

        /* Flex container for the cards */
        .features-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap; /* Allows cards to wrap on smaller screens */
        }

        /* Individual Feature Card Styling */
        .feature-card {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 25px;
            flex: 1; /* Allows cards to grow and fill space */
            min-width: 250px; /* Minimum width before wrapping */
            max-width: 270px; /* Maximum width on larger screens */
            border-top: 5px solid;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
        }
        
        /* Card-specific border colors */
        .card-yellow { border-color: #ffc107; }
        .card-purple { border-color: #6f42c1; }
        .card-green  { border-color: #28a745; }
        .card-orange { border-color: #fd7e14; }

        .feature-card img {
               height: 200px;
    margin-bottom: 20px;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            color: #333;
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

   
   
   .network-security-section {
      background: linear-gradient(135deg, #FF5722, #FF8A50);
      color: #fff;
      padding: 60px 20px;
      text-align: center;
    }

    .network-security-section h2 {
      font-size: 2.2rem;
      margin-bottom: 20px;
    }

    .network-security-section p {
      max-width: 900px;
      margin: 0 auto 20px;
      font-size: 1.1rem;
    }

    .security-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 40px;
    }

    .security-card {
      background: #fff;
      color: #333;
      border-radius: 15px;
      padding: 20px;
      text-align: left;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .security-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .security-card img {
      width: 60px;
      margin-bottom: 15px;
    }

    .security-card h3 {
      color: #FF5722;
      margin: 0 0 10px;
    }
	
	.physical-security-section {
background: linear-gradient(135deg, #2196F3, #42A5F5);
color: #fff;
padding: 60px 20px;
text-align: center;
}


.physical-security-section h2 {
font-size: 2.2rem;
margin-bottom: 20px;
}


.physical-security-section p {
max-width: 900px;
margin: 0 auto 20px;
font-size: 1.1rem;
}


.security-grid2 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
margin-top: 40px;
}


.security-card2 {
background: #fff;
color: #333;
border-radius: 15px;
padding: 20px;
text-align: left;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: transform 0.3s, box-shadow 0.3s;
}


.security-card2:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.security-card2 img {
width: 60px;
margin-bottom: 15px;
}


.security-card2 h3 {
color: #2196F3;
margin: 0 0 10px;
}