/* Products Page Custom Styles */

/**
* Template Name: Arsha
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Updated: Feb 22 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Helvetica", sans-serif;
    --heading-font: "Roboto", sans-serif;
    --nav-font: "Poppins", sans-serif;
  }
  
  /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
  :root {
    --background-color: #F8FAFC;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #37517e;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #47b2e4;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  }
  
  /* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
  :root {
    --nav-color: #ffffff;
    /* The default color of the main navmenu links */
    --nav-hover-color: #47b2e4;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #47b2e4;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }
  
  /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
  
  .light-background {
    --background-color: #f5f6f8;
    --surface-color: #ffffff;
  }
  
  .dark-background {
    --background-color: #37517e;
    --default-color: #ffffff;
    --heading-color: black;
    --surface-color: #4668a2;
    --contrast-color: #ffffff;
  }
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
  body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
  }
  
  a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
  }
  
  a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
  }

header {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
}

header .nav-link {
    color: #2d3748;
    font-weight: 500;
    margin-right: 10px;
}
header .nav-link:hover {
    color: #007bff;
}

header .btn-primary {
    background: #2563eb;
    border: none;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 6px;
}

.security-hero {
    background: linear-gradient(180deg, #f7f9fc 60%, #fff 100%);
}

.security-hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2d3748;
}

.security-hero p.lead {
    color: #4a5568;
    font-size: 1.15rem;
}

.security-tabs .tab-btn {
    background: #fff;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 12px 28px;
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s, color 0.2s;
}
.security-tabs .tab-btn.active, .security-tabs .tab-btn:hover {
    background: #ffd600;
    color: #2d3748;
}

.security-section {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    margin-bottom: 40px;
}

.security-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2d3748;
}

.security-section p {
    color: #4a5568;
    font-size: 1.08rem;
}

.security-img-wrap {
    display: inline-block;
    border-radius: 50% 40% 60% 50%/50% 60% 40% 50%;
    overflow: hidden;
    padding: 18px;
    margin: 0 auto;
    position: relative;
    width: 350px;
    height: 300px;
    background: #ffd600;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.security-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30% 60% 40% 70%/60% 40% 70% 30%;
}
.security-img-wrap.blue {
    background: #e3f0ff;
}
.security-img-wrap.yellow {
    background: #ffd600;
}

.security-promise {
    background: #2563eb;
    color: #fff;
    border-radius: 18px;
    margin-bottom: 40px;
}
.security-promise h2 {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}
.security-promise .btn-primary {
    background: #ffd600;
    color: #2d3748;
    border: none;
    font-weight: 700;
    margin-top: 10px;
}
.security-promise .btn-primary:hover {
    background: #ffe066;
    color: #2d3748;
}

footer {
    font-size: 15px;
    color: #4a5568;
}
footer h6 {
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
}
footer a {
    color: #2563eb;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
footer .bi {
    font-size: 1.2rem;
    color: #2563eb;
}

@media (max-width: 991px) {
    .security-section .row.align-items-center {
        flex-direction: column !important;
        text-align: center;
    }
    .security-section .col-md-6 {
        width: 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .security-img-wrap {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767px) {
    .security-img-wrap {
        width: 140px;
        height: 90px;
        padding: 4px;
    }
    .security-section h2, .security-promise h2 {
        font-size: 1.1rem;
    }
    .security-section p, .security-promise p, footer {
        font-size: 0.98rem;
    }
    .security-tabs .tab-btn {
        padding: 8px 10px;
        font-size: 0.95rem;
    }
    .security-promise {
        padding: 1.5rem 0.5rem;
    }
    .security-promise h2 {
        font-size: 1.2rem;
    }
    .security-promise .btn-primary {
        font-size: 1rem;
        padding: 8px 18px;
    }
    .security-section {
        padding: 1.5rem 0.5rem;
    }
}

@media (max-width: 575px) {
    .security-section, .security-promise {
        border-radius: 8px;
        margin-bottom: 20px;
    }
    .security-img-wrap {
        width: 100px;
        height: 60px;
        padding: 2px;
    }
    .security-section h2, .security-promise h2 {
        font-size: 1rem;
    }
    .security-section p, .security-promise p, footer {
        font-size: 0.92rem;
    }
    .security-tabs .tab-btn {
        font-size: 0.9rem;
        padding: 6px 6px;
    }
} 

.btn-get-started {
  color: var(--contrast-color);
  background: #519aff;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 10px;
  transition: 0.5s;
}

.btn-get-started:hover {
  color: var(--contrast-color);
  background: #FFBF00;
}

.btn-learn-more {
  color: var(--contrast-color);
  background: #FFBF00;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 10px;
  transition: 0.5s;
}

.btn-learn-more:hover {
  color: var(--contrast-color);
  background: #519aff;
}