@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:wght@700&family=Poppins:wght@400;500;600&display=swap");

:root {
  --primary-color: #1a2c50;
  --secondary-color: #f4f7fe;
  --text-dark: #333333;
  --text-light: #767268;
  --extra-light: #ffffff;
}

/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #fafafa;
}

#hero {
  position: relative;
  background: #f0f0f0;
  height: 370px;
}




/*HOMEPAGE START*/

#cta {
  text-align: center;
  padding: 50px 20px;
  background-color: #051650;
  color: white;
}

.cta-btn {
  padding: 15px 30px;
  font-size: 18px;
  background-color: #030c2a;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-btn:hover {
  background-color: #030c2a80;
}

#hero {
  padding: 55px 20px;
  background-color: black;
}

#hero h2 {
  margin-bottom: 28px;
  color: white;
  margin-left: 200px;  
  margin-top: 100px;
}

#hero h1 {
  margin-bottom: 28px;
  color: rgb(38, 38, 38);
  margin-left: 600px;  
  margin-top: -350px;
  text-align: left;
  font-size: 30px;
  font-weight: 50;  
  font-family: 'Calibri', sans-serif;
  line-height: 1.1;
  letter-spacing: 4px;
}

#hero p {
  font-family: "Calibri", sans-serif;
  font-size: 20px;
  margin-bottom: 30px;
  color: white;
  margin-left: 200px;  
  margin-top: 50px;
}

/* cool header underline */
header li {
  text-decoration: none;
  color: white;  
  font-size: 18px;
  position: relative;
  transition: color 0.3s, transform 0.3s ease;
}

header li:hover {
  color: #051650;  
  transform: scale(1.1);  
}

header li::after {
  content: '';  
  position: absolute;
  bottom: -5px;  
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #051650;
  transform: scaleX(0);  
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

header li:hover::after {
  transform: scaleX(1);  
  transform-origin: bottom left;  
}

#learn-more {
  padding: 10px 30px;
  background-color: #005f33;
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  margin-left: 200px;  
  margin-top: 10px;
}

#learn-more:hover {
  background-color: #5f0d00;
  transition: background-color 0.3s ease;
}

.gallery-wrap {
  overflow: hidden;
  width: 100%;
  background: #f4f4f4;
  padding: 40px 0;
}

.gallery {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.scroll-track {
  display: flex;
  gap: 30px;
  animation: scroll-left 28s linear infinite;
  will-change: transform;
}

.scroll-track span {
  width: 180px;                 /* 🔹 Fixed width for logo slots */
  height: 120px;                /* 🔹 Fixed height for all logos */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f4f4;     /* Optional: keeps spacing clean */
  border-radius: 12px;         /* Optional: slightly rounded container */
  padding: 10px;
  box-sizing: border-box;
}

.scroll-track img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s, filter 0.3s;
  display: block;
}

.scroll-track img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.text-boxy {
  font-size: 17.3px;
  color: #888;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
  white-space: nowrap;
  text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.2),
    -1px -1px 3px rgba(0, 0, 0, 0.2);
  opacity: 0.5;
  background-color: black;
}

span {
  display: inline-block;
  font-weight: bolder;
  color: red;
}

#image-gallery {
  padding: 65px 20px;
  text-align: center;
  background-color: #e6e6e6;
}

#image-gallery h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  margin-top: -50px;
  color: #333;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
  margin-top: -30px;
  margin-bottom: -30px;
}

.gallery-item img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 0; /* removes the circle */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

#horizontal-scroll-gallery {
  padding: 50px 20px;
  text-align: center;
  background-color: #f4f4f4;
}

#horizontal-scroll-gallery h2 {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #333;
}

/* HEADER STYLES */
header {
  background-color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1000;
}

/* LOGO */
.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-wrapper img {
  width: 70px;
  height: auto;
  margin-right: 10px;
}

.logo-wrapper .logo-text {
  font-family: "Calibri", sans-serif;
  color: black;
  line-height: 1;
  vertical-align: middle;
  font-size: 25px;
}

.logo-wrapper a {
  text-decoration: none;
  color: inherit;
  outline: none;
  box-shadow: none;
  display: flex;
  align-items: center;
}

.logo-wrapper a:focus,
.logo-wrapper a:active,
.logo-wrapper a:visited,
.logo-wrapper a:hover {
  color: inherit;
  outline: none;
  text-decoration: none;
  box-shadow: none;
}

/* NAVIGATION */
nav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-family: "Calibri", sans-serif;
  font-size: 16px;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #314a8c;
}

.contact-icon {
  font-size: 18px;
  color: black;
}

/* HAMBURGER BUTTON */
.menu-toggle {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #051650;
  transition: transform 0.3s ease, color 0.3s ease;
  z-index: 1100;
}

.menu-toggle:hover {
  transform: rotate(90deg);
  color: #314a8c;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    position: absolute;
    top: 70px;
    left: 0;
    padding: 25px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 12px 12px;
    animation: slideDown 0.4s ease-out forwards;
  }


  nav.open {
    display: flex;
  }


  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-left: 25px;
  }


  nav ul li a,
  .contact-icon {
    font-size: 18px;
    transition: all 0.3s ease;
  }


  nav ul li a:hover {
    color: #051650;
    transform: translateX(5px);
  }


  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Add this to your CSS file */
.logo-wrapper a {
  text-decoration: none;
  color: inherit;
  outline: none;
  box-shadow: none;
}

.logo-wrapper a:focus,
.logo-wrapper a:active,
.logo-wrapper a:visited,
.logo-wrapper a:hover {
  color: inherit;
  outline: none;
  text-decoration: none;
  box-shadow: none;
}

.logo-wrapper a:focus-visible {
  outline: none;
}

.tagline {
  font-family: "Calibri", sans-serif;
  font-size: 25px;
  font-weight: 300;
  color: #B53737;
  text-align: center;
  margin-bottom: 15px;
  margin-top: 15px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.tagline-wrapper{
  background-color: #f4f4f4; /* full width grey background */
  padding: 1px 0;        /* vertical padding */
  text-align: center;
}

#solutions-section {
  background-color: #f4f4f4;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#solutions-section h2 {
  font-size: 36px;
  color: #2a2a2a;
  font-family: 'calibri', sans-serif;
  margin-bottom: 10px;
}

#solutions-section h3 {
  font-size: 24px;
  color: #051650;
  margin-bottom: 40px;
  margin-top: -7px;
  font-family: 'calibri', sans-serif;
}

.solutions-container {
  max-width: 100%;
  padding: 0 200px;
}

.solutions-row {
  display: flex;
  flex-direction: column; /* Stacks items vertically */
  justify-content: center; /* Aligns items vertically within the container */
  align-items: center;     /* Aligns items horizontally */
  gap: 30px;
  margin-bottom: 40px;
}

.solution-card {
  background-color: transparent; /* Remove card background */
  border-radius: 0;              /* Remove rounded corners */
  padding: 0;                    /* Remove internal padding */
  width: 100%;                   /* Let it take full width */
  box-shadow: none;             /* Remove shadow */
  text-align: left;             /* Align text to left */
}

.solution-card h4 {
  color: #071f6c;
  font-size: 22px;
  margin-bottom: 15px;
  font-family: 'calibri', sans-serif;
}

.solution-card p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 100%;
  font-family: 'calibri', sans-serif;
}


/*HOMEPAGE END*/










/*CHATBOT START*/


@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded' !important;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
  font-display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;
}

#chatbot-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Calibri", sans-serif;
}

#chatbot-container #chatbot-toggler {
    position: fixed;
    bottom: 30px;
    right: 35px;
    border: none;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    background: #051650;
    transition: all 0.2s ease;
}


body.show-chatbot #chatbot-container #chatbot-toggler {
    transform: rotate(90deg);
}


#chatbot-container #chatbot-toggler span {
    color: #fff;
    position: absolute;
}

body.show-chatbot #chatbot-container #chatbot-toggler span:first-child,
#chatbot-container #chatbot-toggler span:last-child {
    opacity: 0;
}

body.show-chatbot #chatbot-container #chatbot-toggler span:last-child {
    opacity: 1;
}

#chatbot-container .chatbot-popup {
    position: fixed;
    right: 35px;
    bottom: 90px;
    width: 360px;
    background: #FFF;
    overflow: hidden;
    border-radius: 15px;
    opacity: 0;
    transform: scale(0.2);
    transform-origin: bottom right;
    pointer-events: none;
    box-shadow: 0 0 128px 0 rgba(0,0,0,0.1), 0 32px 64px -48px rgba(0,0,0,0.5);
    transition: all 0.1s ease;
    z-index: 1001;
}

body.show-chatbot #chatbot-container .chatbot-popup {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

#chatbot-container .chat-header {
    display: flex;
    align-items: center;
    background: #051650;
    padding: 15px 22px;
    justify-content: space-between;
}

#chatbot-container .chat-header .header-info {
    display: flex;
    gap: 10px;
    align-items: center;
}

#chatbot-container .header-info .chatbot-logo {
    height: 35px;
    width: 35px;
    padding: 6px;
    fill: #051650;
    flex-shrink: 0;
    background: #fff;
    border-radius: 50%;
}

#chatbot-container .header-info .logo-text {
    color: #fff;
    font-size: 1.31rem;
    font-weight: 600;
}

#chatbot-container .chat-header #close-chatbot {
    border: none;
    color: #fff;
    height: 40px;
    width: 40px;
    font-size: 1.9rem;
    margin-right: -10px;
    padding-top: 2px;
    cursor: pointer;
    border-radius: 50%;
    background: none;
    transition: 0.2s ease;
}

#chatbot-container .chat-header #close-chatbot:hover {
    background: #051650;
}


#chatbot-container .chat-body {
    padding: 25px 22px;
    display: flex;
    gap: 20px;
    height: 330px;
    margin-bottom: 82px;
    overflow-y: auto;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: #ccccf5 transparent;
}


#chatbot-container .chat-body .message {
    display: flex;
    gap: 11px;
    align-items: center;
}


#chatbot-container .chat-body .bot-message .bot-avatar {
    height: 35px;
    width: 35px;
    padding: 6px;
    fill: #fff;
    flex-shrink: 0;
    margin-bottom: 2px;
    align-self: flex-end;
    background: #051650;
    border-radius: 50%;
}


#chatbot-container .chat-body .user-message {
    flex-direction: column;
    align-items: flex-end;
}


#chatbot-container .chat-body .message .message-text {
    padding: 12px 16px;
    max-width: 75%;
    font-size: 0.95rem;
}


#chatbot-container .chat-body .bot-message.thinking .message-text {
    padding: 2px 16px;
}


#chatbot-container .chat-body .bot-message .message-text {
    background: #F2F2FF;
    border-radius: 13px 13px 13px 3px;
}


#chatbot-container .chat-body .user-message .message-text {
    color: #fff;
    background: #051650;
    border-radius: 13px 13px 3px 13px;
}


#chatbot-container .chat-body .user-message .attachment {
    width: 50%;
    margin-top: -7px;
    border-radius: 13px 3px 13px 13px;
}


#chatbot-container .chat-body .bot-message .thinking-indicator {
    display: flex;
    gap: 4px;
    padding-block: 15px;
}


#chatbot-container .chat-body .bot-message .thinking-indicator .dot {
    height: 7px;
    width: 7px;
    opacity: 0.7;
    border-radius: 50%;
    background: #6F6BC2;
    animation: dotPulse 1.8s ease-in-out infinite;
}


#chatbot-container .chat-body .bot-message .thinking-indicator .dot:nth-child(1) {
    animation-delay: 0.2s;
}


#chatbot-container .chat-body .bot-message .thinking-indicator .dot:nth-child(2) {
    animation-delay: 0.3s;
}


#chatbot-container .chat-body .bot-message .thinking-indicator .dot:nth-child(3) {
    animation-delay: 0.4s;
}


@keyframes dotPulse {
    0%, 44% { transform: translateY(0); }
    28% { opacity: 0.4; transform: translateY(-4px); }
    44% { opacity: 0.2; }
}


#chatbot-container .chat-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 15px 22px 20px;
}


#chatbot-container .chat-footer .chat-form {
    display: flex;
    position: relative;
    align-items: center;
    background: #fff;
    border-radius: 32px;
    outline: 1px solid #CCCCE5;
}


#chatbot-container .chat-footer .chat-form:focus-within {
    outline: 2px solid #073e5d;
}


#chatbot-container .chat-form .message-input {
    border: none;
    outline: none;
    height: 47px;
    width: 100%;
    resize: none;
    max-height: 180px;
    white-space: pre-line;
    font-size: 0.95rem;
    padding: 14px 0 13px 18px;
    border-radius: inherit;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}


#chatbot-container .chat-form .message-input:hover {
    scrollbar-color: #ccccf5 transparent;
}


#chatbot-container .chat-form .chat-controls {
    display: flex;
    height: 47px;
    gap: 3px;
    align-items: center;
    align-self: flex-end;
    padding-right: 6px;
}


#chatbot-container .chat-form .chat-controls button {
    height: 35px;
    width: 35px;
    border: none;
    font-size: 1.15rem;
    cursor: pointer;
    color: #706DB0;
    background: none;
    border-radius: 50%;
    transition: 0.2s ease;
}


#chatbot-container .chat-form .chat-controls #send-message {
    color: #fff;
    display: none;
    background: #073e5d;
}


#chatbot-container .chat-form .message-input:valid~.chat-controls #send-message {
    display: block;
}


#chatbot-container .chat-form .chat-controls #send-message:hover {
    background: #07273e;
}


#chatbot-container .chat-form .chat-controls button:hover {
    background: #f1f1ff;
}


#chatbot-container .chat-form .file-upload-wrapper {
    height: 35px;
    width: 35px;
    position: relative;
}


#chatbot-container .chat-form .file-upload-wrapper :where(img, button) {
    position: absolute;
}


#chatbot-container .chat-form .file-upload-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}


#chatbot-container .chat-form .file-upload-wrapper #file-cancel {
    color: #ff0000;
    background: #fff;
}


#chatbot-container .chat-form .file-upload-wrapper :where(img, #file-cancel),
#chatbot-container .chat-form .file-upload-wrapper.file-uploaded #file-upload {
    display: none;
}


#chatbot-container .chat-form .file-upload-wrapper.file-uploaded img,
#chatbot-container .chat-form .file-upload-wrapper.file-uploaded:hover #file-cancel {
    display: block;
}


#chatbot-container em-emoji-picker {
    position: absolute;
    left: 50%;
    top: -337px;
    width: 100%;
    max-width: 350px;
    max-height: 330px;
    visibility: hidden;
    transform: translateX(-50%);
}


body.show-emoji-picker #chatbot-container em-emoji-picker {
    visibility: visible;
}


@media (max-width: 520px) {
    #chatbot-container #chatbot-toggler {
        right: 20px;
        bottom: 20px;
    }


    #chatbot-container .chatbot-popup {
        right: 0;
        bottom: 0;
        height: 100%;
        border-radius: 0;
        width: 100%;
    }


    #chatbot-container .chatbot-popup .chat-header {
        padding: 12px 15px;
    }


    #chatbot-container .chat-body {
        height: calc(90% - 55px);
        padding: 25px 15px;
    }


    #chatbot-container .chat-footer {
        padding: 10px 15px 15px;
    }


    #chatbot-container .chat-form .file-upload-wrapper.file-uploaded #file-cancel {
        opacity: 0;
    }
}


#chatbot-container .chatbot-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #333;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: background-color 0.3s ease;
    z-index: 1000;
}


#chatbot-container .chatbot-toggle-btn:hover {
    background-color: #555;
}


#chatbot-container .chatbot-toggle-btn .chat-icon {
    transform: scaleX(-1);
    width: 24px;
    height: 24px;
    fill: white;
}


#chatbot-container .chatbot-toggle-btn .close-icon {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    display: none;
}


body.show-chatbot #chatbot-container #chatbot-toggler .chat-icon {
    display: none;
}


body.show-chatbot #chatbot-container #chatbot-toggler .close-icon {
    display: block;
}


/*CHATBOT END*/








/*INDUSTRIES PAGE*/

#industries-hero {
  background-image: linear-gradient(to bottom right, #2f4597, #020f3a);
  color: white;
  text-align: center;
  padding: 80px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


#industries-hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}


#industries-hero p {
  font-size: 24px;
  margin-bottom: 40px;
}


#industries-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 60px 20px;
  text-align: center;
}


.industry-item {
  background-color: white;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
}


.industry-item h3 {
  font-family: "Noto Serif", serif;
  font-size: 28px;
  margin-bottom: 20px;
}


.industry-item p {
  font-family: "Calibri", serif;
  font-size: 18px;
  margin-bottom: 20px;
}


.cta-button {
  font-family: "Calibri", serif;
  background-color: black;
  color: white;
  border: none;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}


.cta-button:hover {
  background-image: linear-gradient(to bottom right, #2f4597, #020f3a);
  color: white;
  transform: scale(1.05);
}


/* Testimonials Section */
#testimonials {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
}


#testimonials h2 {
  font-family: 'Calibri', sans-serif;
  font-size: 36px;
  margin-bottom: 40px;
}


.testimonial-card {
  background-color: white;
  padding: 30px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}


.testimonial-card p {
  font-family: 'Calibri', sans-serif;
  font-size: 18px;
  margin-bottom: 20px;
}


.testimonial-card span {
  font-size: 16px;
  font-style: italic;
  color: #5e50a1;
}


.section__container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  text-align: center;
}


.header {
  margin-bottom: 2rem;
}


.header p {
  letter-spacing: 2px;
  font-size: 1rem;
  font-weight: 500;
}


.header h1 {
  font-family: "Noto Serif", serif;
  font-size: 2rem;
  font-weight: 900;
}


.testimonials__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 0 1rem;
  box-sizing: border-box;
}


.card {
  padding: 2rem;
  display: grid;
  gap: 1rem;
  background-color: var(--extra-light);
  border-radius: 5px;
  box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  box-sizing: border-box;
}


.card i {
  font-size: 2.5rem;
  color: #051650;
}


.card p {
  font-family: 'Calibri', sans-serif;
  font-size: 1rem;
  font-weight: 500;
}


.card hr {
  font-family: 'Calibri', sans-serif;
  width: 40px;
  margin: auto;
  color: var(--text-light);
}


.card img {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 100%;
  border: 1px solid var(--primary-color);
}


.card .name {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
  transition: 0.3s;
}


.card .name:hover {
  color: var(--primary-color);
}


@media (max-width: 1024px) {
  #industries-content {
    grid-template-columns: 1fr;
  }
  #industries-hero h2 {
    font-size: 40px;
  }
  #industries-hero p {
    font-size: 20px;
  }
  .cta-button {
    font-size: 15px;
    padding: 10px 18px;
  }
}


@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1.5rem;
  }
}


@media (max-width: 600px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }
  #industries-hero h2 {
    font-size: 32px;
  }
  #industries-hero p {
    font-size: 18px;
  }
  .industry-item h3 {
    font-size: 22px;
  }
  .industry-item p {
    font-size: 16px;
  }
  .cta-button {
    font-size: 14px;
    padding: 8px 16px;
  }
}


/*industry cards*/


#securitysolutionhero {
  position: relative;
  background: #f0f0f0;
  height: 40px;
  padding: 55px 20px;
  background-color: #051650;
}


#ss {
  display: flex;              /* make it a flex container */
  justify-content: center;    /* horizontally center content */
  align-items: flex-start;    /* optional: align to top */
  padding: 60px 20px;         /* adjust horizontal padding */
  background-color: #f8f8f8;
  margin-bottom: -90px;
  width: 100%;                /* full width container */
  box-sizing: border-box;
}

#ss .si {
  background-color: white;
  padding: 30px;
  margin: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transform: translateY(-120px);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 800px;               /* box width */
  max-width: 100%;            /* responsive on smaller screens */
  height: 150px;
}



.si {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}


.si h1 {
  font-size: 40px;
  text-align: center;
  color: #051650;
  font-family: "Noto Serif", serif;
  margin-top: 45px;
}


#ssp {
  position: relative;
  top: -20px;
  color: black;
  font-family: "Calibri", sans-serif;
  margin-left: 250px;
  margin-right: 250px;
}


#ssp h3 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #051650;
}


#ssp p {
  font-size: 1rem;
  line-height: 1.6;
  color: black;
}


#go-back-link {
  color: #314a8c;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-block;
  margin-top: 10px;
  margin-left: 250px;
  margin-bottom: 30px;
  font-weight: 400;
}


#go-back-link:hover {
  color: #051650;
  font-weight: 600;
}


@media (max-width: 768px) {
  #ssp {
    margin-left: 20px;
    margin-right: 20px;
  }
  #go-back-link {
    margin-left: 20px;
  }
}

/*INDUSTRIES PAGE END*/







/*CLIENTS PAGE*/

#clients {
  padding: 60px 20px;
  background-color: #f4f4f4;
  text-align: center;
}


#clients h2 {
  font-size: 36px;
  margin-bottom: 20px;
}


#clients p {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
}


.container {
  width: 80%;
  margin: 0 auto;
}


.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}


.client-item {
  background-color: white;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
  height: 150px;    
}


.client-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.client-item img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 120px; /* Set max height to maintain uniform size */
  display: block;
  margin: 0 auto;
}

/*CLIENTS PAGE END*/







/* SOLUTIONS PAGE*/

#SOLhero {
  position: relative;
  background: #f0f0f0;
  height: 370px;
  padding: 60px 20px;
  background-image: linear-gradient(to bottom right, #2f4597, #020f3a);
}


#SOLhero h2 {
  margin-bottom: 28px;
  color: white;
  font-size: 55px;
  margin-left: 200px;  
  margin-top: 50px;
}


/*#hero h1 {
  margin-bottom: 28px;
  color: rgb(38, 38, 38);
  margin-left: 600px;  
  margin-top: -350px;
  text-align: left;
  font-size: 30px;
  font-weight: 50;  
  font-family: 'Calibri', sans-serif;
  line-height: 1.1;
  letter-spacing: 4px;
}*/


#SOLhero p {
  font-family: "Calibri", sans-serif;
  font-size: 16px;
  margin-bottom: 30px;
  color: white;
  margin-left: 200px;  
  margin-right: 200px;
  margin-top: -20px;
}

#services {
  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
  gap: 50px 50px;
  padding: 60px 20px;
  background-color: #f8f8f8;
  padding-bottom: 0;    /* remove extra bottom padding if any */
}

#services .service-item {
  background-color: white;
  padding: 30px;
  margin: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transform: translateY(-200px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item h3 {
  font-size: 24px;
  color: #051650;
  font-family: "Calibri", sans-serif;
}

.service-item p {
  font-size: 16px;
  margin: 20px 0;
  color: #1a1a1a;
  font-family: "Calibri", sans-serif;
}

.gbl {
  color: #314a8c;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-block;
  margin-top: 10px;
  margin-left: 0px;
  margin-bottom: 5px;
  font-weight: 400;
}

.gbl:hover {
  color: #051650;
  font-weight: 500;
}


@media (min-width: 1025px) {
  #services .service-item {
    transform: translateY(-200px);
  }
}


@media (max-width: 1024px) {
  #services .service-item {
    transform: none;    
    margin-top: 20px;    
  }
 
  #SOLhero {
    padding-bottom: 60px;  
  }
}


@media (max-width: 1024px) {
  #services {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
  }


  #SOLhero h2, #SOLhero p {
    margin-left: 20px !important;
    margin-right: 20px !important;
    text-align: center;
  }


  #SOLhero {
    height: auto;
    padding: 40px 20px;
  }
}


@media (max-width: 600px) {
  #services {
    grid-template-columns: 1fr;
    gap: 20px;
  }


  #services .service-item {
    transform: none;
  }


  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }


  .container {
    width: 95%;
    margin: 0 auto;
  }


  #services p,
  #SOLhero p {
    font-size: 16px !important;  
  }
 
  #services h2,
  #SOLhero h2 {
    font-size: 55px !important;
  }


  #services .service-item h3 {
    font-size: 20px;
  }


  .gbl {
    font-size: 16px;
    margin-left: 0;
  }


  #SOLhero h2, #SOLhero p {
    margin-left: 10px !important;
    margin-right: 10px !important;
    font-size: 28px;
  }
}



/* === cloud-solutions-section.css === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');


.cloud-solutions-body {
  margin: 0;
  font-family: "Calibri", sans-serif;
  background-color: #f9fafe;
  color: #1B1B1B;
}


.cloud-solutions-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  margin-top: -45px;
}


.cloud-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}


.cloud-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
}


.cloud-hero p {
  font-size: 18px;
  max-width: 500px;
  font-weight: 400;
  line-height: 1.5;
}




.cloud-heroo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}


.cloud-heroo h1 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
  margin-right: -400px;
}


.cloud-heroo p {
  font-size: 18px;
  max-width: 500px;
  font-weight: 400;
  line-height: 1.5;
  margin-right: -400px;
  margin-bottom: -500;
}


/* HERO IMAGE – CLEAN & RESPONSIVE */
.mmmmcloud-hero-img {
  width: 100%;
  max-width: 420px;   /* controls size */
  height: auto;
  object-fit: contain;
  margin: 0;
}


.mmmmmcloud-hero-img{
  width: 570px;
  height: 350px;
  margin-top: 20px;
  margin-bottom: -30px;
  margin-right: -40px;
  background: url('your-hero-image.png') no-repeat center/contain;
  background-color: #f9fafe;
}


.cloud-hero-img {
    width: 570px;
  height: 350px;
  margin-top: 20px;
  margin-bottom: -30px;
  margin-right: -40px;
  background: url('your-hero-image.png') no-repeat center/contain;
  background-color: #f9fafe;
}


.mcloud-hero-img{
    width: 570px;
  height: 350px;
  margin-top: 20px;
  margin-bottom: -30px;
  margin-right: -40px;
  background: url('your-hero-image.png') no-repeat center/contain;
  background-color: #f9fafe;
}


.mmcloud-hero-img{
  width: 280px;
  height: 350px;
  margin-top: 0px;
  margin-right: 50px;
  margin-bottom: -50px;
  background: url('your-hero-image.png') no-repeat center/contain;
  background-color: #f9fafe;
}

.mmmcloud-hero-img{
  width: 290px;
  height: 360px;
  margin-top: 0px;
  margin-bottom: -50px;
  margin-right: 100px;
  background: url('your-hero-image.png') no-repeat center/contain;
  background-color: #f9fafe;
}


.cloud-section-title {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 600;
}


#cloud-services {
  margin-top: -45px;
}


.cloud-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}


.cloud-features-text {
  flex: 1;
  min-width: 300px;
}


.cloud-features-text p {
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.6;
  font-weight: 400;
 
}


.cloud-features-text ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
}


.cloud-features-text li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
}


.cloud-features-text li span {
  font-size: 18px;
  color: #0057C7;
}


.cloud-diagram {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}


.cloud-diagram-img, .cloud-extra-img {
  width: 100%;
  height: 500px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 12px;
}


.cloud-diagram-img {
  background-image: url('your-diagram.png');
  background-color: #f1f5fb;
  opacity: 0.8;
}


.cloud-extra-img {
  background-image: url('your-extra-image.png');
  background-color: #f1f5fb;
  opacity: 0.9;
}


.cloud-cta {
  text-align: center;
  margin-top: 50px;
}


.cloud-cta h3 {
  font-size: 20px;
  font-family: 'Calibri', sans-serif;
  font-weight: 400;
  margin-bottom: 16px;
}


.cloud-cta button {
  font-family: 'Calibri', sans-serif;
  background-color: #3399FF;
  background-image: linear-gradient(to bottom right, #2f4597, #020f3a);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}


.cloud-more-text {
  flex: 1;
  min-width: 300px;
}


.cloud-more-text p {
  font-size: 16px;
  margin-bottom: 18px;
  font-family: 'Calibri', sans-serif;
  line-height: 1.6;
  font-weight: 400;
}


.cloud-cta button:hover {
  box-shadow: 0 4px 12px rgba(19, 63, 130, 0.5);
  transform: translateY(-2px);
}


#go-back-linktwo {
  color: #314a8c;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  display: inline-block;
  margin-top: 10px;
  margin-left: 0px;
  margin-bottom: 30px;
  font-weight: 400;
}
/*FROM THE STR TO HERE*/

#go-back-linktwo:hover {
  color: #051650;
  font-weight: 600;
}


@media (max-width: 768px) {
  #ssp {
    margin-left: 20px;
    margin-right: 20px;
  }
  #go-back-linktwo {
    margin-left: 20px;
  }
}


@media (max-width: 768px) {
  .cloud-hero, .cloud-features {
    flex-direction: column;
    align-items: flex-start;
  }


  .cloud-hero-img, .cloud-diagram {
    align-self: center;
  }


  .mcloud-hero-img, .cloud-diagram {
    align-self: center;
  }


  .mmcloud-hero-img, .cloud-diagram {
    align-self: center;
  }


  .cloud-features-text ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .cloud-heroo {
    flex-direction: column;
    text-align: center;
  }

  .mmmmcloud-hero-img {
    max-width: 300px;
  }
}


/*SOLUTIONS PAGE END*/





/*PARTNERS PAGE*/

/*PARTNERS PAGE END*/


/*COMPANY PAGE*/
/*COMPANY PAGE END*/


/*CONTACT PAGE*/
.containerr{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background-image: linear-gradient(to bottom right, #2f4597, #020f3a);
  background: url('bgbg.png') no-repeat center center/cover;
  align-items: center;
}
.containerr form{
  width: 670px;
  height: 600px;
  display: flex;
  justify-content: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(30px);
  flex-wrap: wrap;
}
.containerr form h1{
  font-family: 'Calibri', sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 2;
  margin-top: 20px;
  width: 500px;
  text-align: center;
}
.containerr form input{
  font-family: 'Calibri', sans-serif;
  width: 300px;
  height: 50px;
  padding-left: 10px;
  outline: none;
  border: none;
  font-size: 20px;
  margin-bottom: 10px;
  background: none;
  border-bottom: 2px solid #fff;
  color: #fff;
}
.containerr form input::placeholder{
  color: #fff;
}
.containerr form #lastName,
.containerr form #mobile {
  font-family: 'Calibri', sans-serif;
  margin-left: 20px;
}
.containerr form h4{
  color: #fff;
  font-weight: 300;
  width: 600px;
  margin-top: 20px;
}
.containerr form textarea{
  background: none;
  border: none;
  border-bottom: 2px solid #fff;
  font-family: 'Calibri', sans-serif;
  color: #fff;
  font-weight: 200;
  font-size: 20px;
  padding: 10px;
  outline: none;
  min-height: 90px;
  max-height: 90px;
  min-width: 620px;
  max-width: 620px;
}
.containerr form h4{
  font-size: 20px;
}
.containerr form #button{
  border: none;
  background: #fff;
  border-radius: 5px;
  margin-top: 20px;
  font-weight: 600;
  font-family: 'Calibri', sans-serif;
  font-size: 24px;
  color: #05165a;
  width: 200px;
  height: 60px;
  padding: 0;
  margin-bottom: 30px;
  transition: 0.3s;
}
.containerr form #button:hover{
  background: #05165a;
  color: #fff;
  transition: .5s ease-in-out;
}
/*CONTACT PAGE END*/


/*FOOTER SECTION*/


#footer {
  background-color: #051650;
  color: #fff;
  padding: 10px 20px; /* Reduced padding for a more compact footer */
  font-family: Arial, sans-serif;
  text-align: center; /* Center all text */
}


.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex; /* Use flexbox to align items in a row */
  justify-content: center; /* Center the content horizontally */
  flex-wrap: wrap; /* Allow wrapping to next line on small screens */
}


.footer-container .locations {
  display: flex; /* Ensure locations are displayed in a row */
  justify-content: space-between; /* Space between the items */
  gap: 40px; /* Space between each location */
  flex-wrap: nowrap; /* Prevent the addresses from wrapping */
  width: 100%; /* Full width of container */
  text-align: left; /* Align text inside each location */
}


.location {
  font-size: 14px;
  max-width: 250px; /* Limit the width of each location block */
}


.location h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
}


.location p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 5px;
}


.location span {
  display: block; /* Display the address in separate lines */
}


.location a {
  color: #fff;
  text-decoration: none;
}


.location a:hover {
  text-decoration: underline;
}


.contact {
  font-size: 14px;
  max-width: 250px;
  margin-top: -2px; /* Adjusted margin to move it upwards */
}


.contact h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 5px;
}


.contact p {
  font-size: 14px;
  margin: 4px 0;
  margin-top: 15px;
  line-height: -2;
}


.contact a {
  color: #fff;
  text-decoration: none;
}


.contact a:hover {
  text-decoration: underline;
}


.footer-bottom {
  margin-top: 15px;
  font-size: 12px;
  color: #ccc;
}


.footer-bottom a {
  color: #fff;
  text-decoration: none;
  margin-left: 10px;
}


.footer-bottom a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-left: 0;
  }
 
  nav ul li a {
    text-align: center;
    width: 100%;
  }
 
  .footer-container {
    flex-direction: column; /* Stack the footer items on smaller screens */
    align-items: center;
  }


  .footer-container .locations {
    flex-direction: column; /* Stack locations vertically on small screens */
    align-items: center;
  }


  .footer-bottom {
    font-size: 14px; /* Slightly increase font size for readability */
  }
}
/*FOOTER SECTION END*/


html, body {
  overflow-x: hidden;
}


/* No global resets here */
/* No global font-family */


/* Scope everything inside footer */
footer {
  font-family: 'Poppins', sans-serif;
  background-color: #051650;
  color: white;
  padding: 30px 50px 15px;
}


footer * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


footer .container {
  max-width: 1400px;
  margin: auto;
}


/* Contact Us section on top */
footer .contact-top {
  text-align: center;
  margin-bottom: 70px;
}


footer .contact-subtext {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 25px;
}


footer .modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
}


footer .form-row {
  display: flex;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}


footer .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}


footer .full-width {
  width: 100%;
}


footer .form-group label {
  font-size: 13px;
  color: #ccc;
  margin-bottom: 6px;
}


footer .form-group input,
footer .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  background-color: #041240;
  color: white;
  font-size: 14px;
  transition: all 0.3s ease;
}


footer .form-group input::placeholder,
footer .form-group textarea::placeholder {
  color: #888;
}


footer .form-group input:focus,
footer .form-group textarea:focus {
  outline: none;
  background-color: #00000074;
  border: 1px solid #041240;
}


footer .modern-contact-form button {
  background-color: #030e30;
  color: #767676;
  border: none;
  padding: 12px 30px;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: 'calibri', sans-serif;
}


footer .modern-contact-form button:hover {
  background-color: #041240;
  color: #767676;
}


/* Footer content rows */
footer .footer-content {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  flex-wrap: nowrap; /* prevent wrapping so offices stay in one line */
  margin-bottom: 25px;
  align-items: flex-start;
}


/* Offices horizontal container */
footer .footer-offices-horizontal {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 5px;
  max-width: 100%;
}


/* Each office block */
footer .office-item {
  min-width: 180px;
  flex-shrink: 0;
}


/* Bold main city/state line */
footer .office-main {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 5px;
  color: white;
}


/* Less bold address text below */
footer .office-address {
  font-weight: 400;
  font-size: 13px;
  color: #aaa;
  line-height: 1.4;
}


/* Contact info column */
footer .contact-info-col {
  min-width: 180px;
  flex-shrink: 0;
}


/* Contact heading */
footer .footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  color: white;
}


footer .footer-col h4::after {
  content: '';
  width: 50px;
  height: 2px;
  background-color: #5566c6;
  position: absolute;
  bottom: -4px;
  left: 0;
}


/* Contact info list */
footer .footer-col ul {
  list-style: none;
  margin-top: 10px;
}


footer .footer-col ul li {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 6px;
}


footer .footer-col ul li a {
  color: white;
  text-decoration: none;
  opacity: 0.7;
  transition: 0.3s;
}


footer .footer-col ul li a:hover {
  color: #5566c6;
  opacity: 1;
}
















/* Bottom bar */
footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #5566c6;
  padding-top: 15px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 15px;
}


footer .socialIcons {
  display: flex;
  gap: 12px;
}


footer .socialIcons a i {
  color: white;
  font-size: 16px;
  transition: 0.3s;
}


footer .socialIcons a i:hover {
  color: #5566c6;
}


footer .contactInfo a {
  color: #ccc;
  text-decoration: none;
}


footer .contactInfo a:hover {
  color: #5566c6;
  text-decoration: none;
}


/* Responsive */
@media (max-width: 768px) {
  footer .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  footer .footer-offices-horizontal {
    overflow-x: visible;
    flex-wrap: wrap;
    gap: 30px;
  }
  footer .contact-info-col {
    min-width: auto;
  }
}


@media (max-width: 600px) {
  footer .form-row {
    flex-direction: column;
  }
}
footer .footer-offices-horizontal {
  display: flex;
  gap: 60px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  padding-bottom: 5px;


  scrollbar-width: thin;
  scrollbar-color: #5566c6 transparent;
}


footer .footer-offices-horizontal::-webkit-scrollbar {
  height: 8px;
}


footer .footer-offices-horizontal::-webkit-scrollbar-track {
  background: transparent;
}





















