@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght,GRAD@6..144,1..1000,48&display=swap');

body {
  font-family: "Google Sans Flex", sans-serif;
}

/** ==== Navigation Starts HERE === **/
	.navbar {
	  top: inherit;
	  z-index: 501;
	  padding: 1rem 4rem;
	}
	.region-content {
	  padding: 0 0rem;
	}

	ul.navbar-nav .nav-link.active 
	{
		color:#00a7e9;
	}

	.navbar-toggler {
	  padding: 1px 5px;
	  font-size: 18px;
	  line-height: 0.3;
	  background: #fff;
	}

	.block-local-tasks-block{
			z-index:1400;
		}
 /* Service menu dropdown css */
[data-block="nav_main"].dropdown-menu {
    border-radius: 0.75rem;
    border: 0;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.15);
    padding: .5rem 0;
}

[data-block="nav_main"] .dropdown-item {
    font-weight: 500;
    padding: .6rem 1.25rem;
}

/* Hover enhancement */
[data-block="nav_main"] .dropdown-item:hover {
    background-color: #f8f9fa; 
    color: #0d6efd; 
}
/** ==== Navigation Ends HERE === **/

/** ==== HOME PAGE HERO Starts HERE === **/
		.hero {

		  overflow: hidden;
		  position: relative;
		  width: 100vw;
		  min-height: 100vh;
		  height: 100vh;
		  padding: 2.8rem 4rem;
		  display: flex;
		  flex-direction: column;
		  background: radial-gradient(800px circle at 85% 15%,rgba(110,203,255,0.35),transparent 60%),radial-gradient(700px circle at 10% 85%,rgba(99,102,241,0.25),transparent 65%),linear-gradient(135deg,#050b1f 0%,#0a1f44 35%,#102a5c 60%,#0b5ed7 100%);
		}

		/*  GRID OVERLAY  */
		.hero::before ,.nav-bacground-scroll-style::before {
		  content: "";
		  position: absolute;
		  inset: 0;
		  background-image:
			linear-gradient(transparent 95%, rgba(255,255,255,0.06)),
			linear-gradient(90deg, transparent 95%, rgba(255,255,255,0.06));
		  background-size: 120px 120px;
		  opacity: 0.25;
		  pointer-events: none;
		}
		/*  VIGNETTE / LIGHT  */	
	  .hero::after,.nav-bacground-scroll-style::after {
		  content: "";
		  position: absolute;
		  inset: 0;
		  background:
			linear-gradient(
			  180deg,
			  rgba(255,255,255,0.06),
			  transparent 30%,
			  transparent 70%,
			  rgba(0,0,0,0.35)
			);
		  pointer-events: none;
		}
	 /*  SVG CURVE OVERLAY  */
		.curve-overlay {
		  position: absolute;
		  inset: 0;
		  z-index: 1;
		  pointer-events: none;
		}

		.curve-overlay path {
		  stroke: rgba(140, 200, 255, 0.35);
		  stroke-width: 1.2;
		  fill: none;
		}

		.curve-overlay path.soft {
		  stroke: rgba(140, 200, 255, 0.18);
		  stroke-width: 1;
		}
		
		/*  HERO CONTENT  */
		.hero-content {
		  flex: 1;
		  display: flex;
		  align-items: center;
		  z-index: 2;
		  color: #fff;
		}


		.hero-title {
		  font-size: clamp(3rem, 5vw, 4.5rem);
		  font-weight: 700;
		  line-height: 1.05;
		  margin-bottom: 1.25rem;
		  font-variation-settings: "GRAD" 72;
		}

		.hero-subtitle {
		  font-size: 1.1rem;
		  opacity: 0.85;
		  /*max-width: 520px;*/
		  margin-bottom: 2.5rem;
		}
		
		  .hero-actions {
		  display: flex;
		  gap: 1rem;
		  flex-wrap: wrap;
		}
		
		.hero .btn-primary {
		  background: #fff;
		  color: #000;
		  padding: 0.9rem 1.75rem;
		  border-radius: 999px;
		  font-weight: 600;
		  border: none;
		  cursor: pointer;
		}

		.hero .btn-secondary {
		  background: rgba(255, 255, 255, 0.15);
		  color: #fff;
		  padding: 0.9rem 1.75rem;
		  border-radius: 999px;
		  font-weight: 500;
		  border: 1px solid rgba(255,255,255,0.3);
		  cursor: pointer;
		}
/** ==== HOME PAGE HERO Ends HERE === **/


/** ==== HOME THEORY Starts HERE === **/

.home-theory {
  padding: 90px 0;
  background:
    radial-gradient(circle at 1px 1px, #e5e7eb 1px, transparent 0);
  background-size: 24px 24px;
}

/* Force horizontal layout */
.home-theory .row {
  display: flex;
  gap: 40px;
}

/* Cards */
.home-theory .col-md-6 {
  flex: 1;
  background: #ffffff;
  padding: 42px 38px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover animation */
.home-theory .col-md-6:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(37, 99, 235, 0.18);
}

/* Accent glow line */
.home-theory .col-md-6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #1e40af);
}

/* Headings */
.home-theory h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #0f172a;
}

/* Paragraphs */
.home-theory p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #475569;
}

/* Bullet list */
.list-points {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.list-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15.8px;
  color: #334155;
}

/* Mini icon */
.list-points li::before {
  content: "▣";
  font-size: 14px;
  color: #2563eb;
  margin-top: 3px;
}

/** ==== HOME THEORY Ends HERE === **/

/** ==== WHY CHOOSE Starts HERE === **/


.why-choose-section {
  background: #ffffff;
  /*padding: 90px 20px;*/
  color: #000;
  overflow: hidden;
}

/* Title & subtitle */
.why-choose-section .section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}

.why-choose-section .section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #555;
}

/* GRID*/

.why-cards-container {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 60px;
}

/*  ITEM  */

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  transition: 
    transform 0.45s cubic-bezier(.4,0,.2,1),
    box-shadow 0.45s cubic-bezier(.4,0,.2,1),
    background 0.45s ease;
}

/* Hover lift */
.why-item:hover {
  background: #f9fbff;
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
}

/* ICON ANIMATION*/

.why-icon {
  flex-shrink: 0;
}

.why-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #2563eb;
  stroke-width: 1.8;
  transition: transform 0.5s ease, stroke 0.3s ease;
}

/* Icon motion on hover */
.why-item:hover .why-icon svg {
  transform: scale(1.15) rotate(-4deg);
  stroke: #1e40af;
}

/* TEXT*/

.why-text h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}

.why-text p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #444;
}

/* SUBTLE STAGGER FEEL */

.why-item {
  will-change: transform;
}

/** ==== WHY CHOOSE Ends HERE === **/

/** ==== COUNTERS Starts HERE === **/
.counters {
  padding: 70px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.counter-box h2 {
  font-size: 42px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 8px;
}

.counter-box p {
  font-size: 15.5px;
  font-weight: 600;
  color: #334155;
}

/** ==== COUNTERS Ends HERE === **/

/** ==== SERVICE CARDS Starts HERE === **/

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
}
.timeline-mirror {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
}

.timeline-center {
  width: 4px;
  background: #e0e0e0;
}

.timeline-column {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.timeline-item {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-radius: 18px;
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}

.timeline-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.14);
}

.timeline-column.left .timeline-item {
  flex-direction: row-reverse;
}

.timeline-column.left .content {
  text-align: right;
  margin-right: 20px;
}

.timeline-column.right .content {
  text-align: left;
  margin-left: 20px;
}

.timeline-column.left h4 {
  text-align: right;
  margin-right: 80px; /* aligns with content spacing */
  font-weight: 700;
}


.timeline-column.right h4 {
  text-align: left;
  margin-left: 80px; /* aligns with content spacing */
  font-weight: 700;
}

.icon {
  width: 60px;
  height: 60px;
  min-width: 60px;        /* VERY important for mobile */
  min-height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform .35s ease, box-shadow .35s ease;
}

.timeline-item:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 0 0 6px rgba(0,0,0,0.06);
}


.content h5 {
  margin-bottom: 6px;
}

.content h5 a {
  text-decoration: none;
  color: inherit;
}

.content p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* ICON COLORS */
.bg-blue { 
    background: #0d6efd;  /* deep navy blue */
    color: #0d6efd;
}

.bg-yellow { background:#ffc107; color:#ffc107; }
.bg-red { background:#dc3545; color:#dc3545; }
.bg-green-dark { background:#20c997; color:#20c997; }
.bg-green { background:#28a745; color:#28a745; }
.bg-teal { background:#17a2b8; color:#17a2b8; }
.bg-purple { background:#6f42c1; color:#6f42c1; }
.bg-orange { background:#fd7e14; color:#fd7e14; }


/** ==== SERVICE CARDS Ends HERE === **/

/** ==== HOME IMAGE CTA Starts HERE === **/



.home-image-cta {
    position: relative;
    width: 100%;
    padding: 80px 20px;
    overflow: hidden;
    background: #002244;
}

/* Animated silk gradient layer */
.home-image-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #001a33 0%,
        #003366 35%,
        #0055aa 50%,
        #003366 65%,
        #001122 100%
    );
    background-size: 300% 300%;
    animation: silkFlow 10s ease-in-out infinite alternate;
    z-index: 1;
}

/* Subtle premium light glaze */
.home-image-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.06),
        rgba(255,255,255,0) 40%
    );
    z-index: 2;
    pointer-events: none;
}

/* Inner container */
.home-image-cta__inner {
    position: relative;
    z-index: 3;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 42px;
    border-radius: 22px;

    /* Glass depth */
    background: rgba(0, 34, 68, 0.55);
    backdrop-filter: blur(12px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Headline */
.home-image-cta__inner h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

/* Text */
.home-image-cta__inner p {
    font-size: 1.05rem;
    color: #b7cbe6;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* Button */
.home-image-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;

    background: linear-gradient(135deg, #0077ff, #0055cc);
    box-shadow:
        0 10px 30px rgba(0, 119, 255, 0.45),
        inset 0 1px 0 rgba(255,255,255,0.25);

    transition: all 0.35s ease;
}

/* Button hover */
.home-image-cta__btn:hover {
    transform: translateY(-3px) scale(1.02);
    background: #ffffff;
    color: #0077ff;
    box-shadow:
        0 18px 50px rgba(0, 119, 255, 0.65);
}

/* Silk motion */
@keyframes silkFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}



/** ==== HOME IMAGE CTA Ends HERE === **/

/** ==== FOOTER Starts HERE === **/

.inkbyte-footer {
  background: #030712;
  color: #ffffff;
  padding: 60px 20px 20px;
  font-family: inherit;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col h5,
.footer-col h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #1e5eff;
}

.footer-col p {
  color: #cbd5e1;
  margin-bottom: 8px;
}
.footer-col p {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
}
.footer-col p:hover {
  color: #1e5eff;
  
}


.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: #94a3b8;
}


/** ==== FOOTER Starts HERE === **/
/* Responsive */





/** ==== MEDIA QUERY Starts HERE === **/

	@media (min-width: 992px)
		{
			.region-nav-main {
		  display: flex;
		  justify-content: center;
		  width:100%;
		}
		ul.navbar-nav {
		  display: inline-flex !important;
		  justify-content: center;
		  gap: 2rem;
		  padding: 0.75rem 2.5rem;
		  background: rgba(255,255,255,0.12);
		  border-radius: 999px;
		  backdrop-filter: blur(10px);
		  list-style: none;
		  margin: 0;
		}
		ul.navbar-nav .nav-link {
		  
		  color: #fff;
		  font-weight: 500;
		  padding: 0;
		  border-radius: 0;
		  transition: color 0.2s ease,opacity 0.2s ease;
		  white-space: nowrap;
		}

	}
	
	
	@media (max-width: 991px)
	{
		.navbar-brand img {
		  height: 50px;
		  margin: 0 1rem 0 0;
		  width: auto;
		}
  
		.navbar-collapse{
			padding-top: 1rem
			color: #ddd;
			background-color: #0f0f0f;
			box-shadow: -1px 0 3px 1px rgb(0,0,0,0.3333);
			overflow: auto;
		}
		
		 .navbar-nav .nav-link.show,ul.dropdown-menu .nav-item a
		{
			color:#fff;
		}
		.nav-item .dropdown-item:hover{
			background: #000;
		}
		ul.navbar-nav .nav-link,.dropdown-menu{
		  font-size: 1.5rem;
		  padding: 1rem 0;
		  color:#fff;
		  background: #000;
		}

		.navbar-toggler, .region-nav-branding {
		  z-index: 1200;
		}
		.region-nav-main
		{
			Padding-top:4rem;
		}
		/* Fullscreen navbar collapse */
		#navbarSupportedContent {
			 top: 100%;
		  position: fixed;
		  inset: 0; /* top:0; right:0; bottom:0; left:0 */
		  width: 100vw;
		  z-index: 1050; 
		  background: #000; /* change as needed */
		  overflow-y: auto;
		height: 100dvh; /* modern, mobile-safe */
		
		  /* animation */
		  transform: translateY(-100%);
		  transition: transform 0.3s ease-in-out;
		}

		/* When menu is open */
		#navbarSupportedContent.show {
		  transform: translateY(0);
		}
		
		#navbarSupportedContent .navbar-nav {
		  flex-direction: column;
		  align-items: center;
	  justify-content: center;
		}

		
		body.nav-open {
		overflow: hidden;
		}
        
		.home-theory .row {
          flex-direction: column;
        }

		.why-cards-container {
         grid-template-columns: repeat(2, 1fr);
        }

	}
	@media (min-width: 200px) {
	  .nav-bacground-scroll-style {
		position: fixed;
		height: 82px;
		overflow: visible;
		width: 100%;
		 background: radial-gradient(800px circle at 85% 15%,rgba(110,203,255,0.35),transparent 60%),radial-gradient(700px circle at 10% 85%,rgba(99,102,241,0.25),transparent 65%),linear-gradient(135deg,#050b1f 0%,#0a1f44 35%,#102a5c 60%,#0b5ed7 100%);

	  }
	}
	/*for mobile phones*/
	@media (max-width: 576px) {
      .why-cards-container {
        grid-template-columns: 1fr;
     }
      .why-item {
        padding: 14px;
     }
    }
    /* MOBILE Service cards*/
    @media (max-width:768px) {
     .timeline-mirror {
       flex-direction: column;
     }
     .timeline-center {
      display: none;
     }
     .timeline-column.left .timeline-item {
      flex-direction: row;
     }
      .home-image-cta {
        padding: 60px 15px;
    }

     .home-image-cta__inner {
        padding: 38px 26px;
    }
     .footer-top {
    flex-direction: column;
    text-align: center;
    }

    }

/** ==== MEDIA QUERY Ends HERE === **/