* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "puvi-regular";
    line-height: 2;
}

body{
    overflow-x: hidden;
}

:root {
    --blue: #396baf;
    --border: rgb(230, 230, 230);
    --plain-bg: white;
    --grayish-white: #f1f1f1;
}

/* Font */

@font-face {
    font-family: "puvi-Bold";
    src: url("./Zoho_Puvi/Zoho Puvi/OpenType-PS/Zoho Puvi Bold.otf");
}

@font-face {
    font-family: "puvi-regular";
    src: url("./Zoho_Puvi/Zoho Puvi/OpenType-PS/Zoho Puvi Regular.otf");
}

h1,
h2,
span {
    font-family: "puvi-Bold";
}

/* Nav styles */

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: var(--plain-bg);
    border-bottom: 1px solid var(--border);
}

nav img {
    width: 200px;
}

/* Hero section styles */

main {
    height: 75vh;
    padding: 160px;
    text-align: center;
    background-image: url('images/support1.png');
    background-size: 120px;
    background-repeat: repeat;
}

main img {
    width: 150px;
}

main h1 {
    margin-top: 28px;
    font-size: 40px;
}

main h1 span {
    color: var(--blue);
}

main .para {
    width: 700px;
    margin: 10px auto;
    font-size: 16px;
}

form {
    margin-top: 30px;
}

.outer {
    display: flex;
    align-items: center;
    border: 1px solid;
    max-width: 535px;
    margin: auto;
    padding: 8px 11px;
    border-radius: 5px;
    background-color: rgb(243, 243, 243);
}

#urlInput {
    border: 1px solid;
    cursor: pointer;
    padding: 20px 60px;
    background-color: var(--plain-bg);
}

.icon {
    width: 20px;
    height: 20px;
    position: relative;
    right: 265px;
    background-image: url('images/globe.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.custom-select {
    position: relative;
    left: 10px;
    width: 200px;
}

.select-box {
    padding: 18px 10px;
    border: 1px solid;
    background-color: var(--plain-bg);
    cursor: pointer;
    display: inline-block;
    width: 100%;
}

.arrow {
    position: relative;
    left: 30px;
}

.options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border-left: 1px solid;
    border-right: 1px solid;
    background-color: var(--plain-bg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.option {
    padding: 10px;
    cursor: pointer;
}

.option:hover {
    background-color: var(--grayish-white);
}

.custom-select.open .options {
    max-height: 300px;
    border-bottom: 1px solid;
}

.option::-webkit-file-upload-button {
    visibility: hidden;
}


.option input[type="file"] {
    display: none;
}

#check-btn {
    width: 260px;
    font-size: 18px;
    padding: 12px 60px;
    margin-top: 50px;
    border: 2px solid var(--blue);
    border-radius: 5px;
    color: var(--plain-bg);
    background-color: var(--blue);
    cursor: pointer;
    transition: 0.4s;
}

#check-btn:hover {
    background-color: var(--plain-bg);
    color: var(--blue);
}


/* Error Popup styles */

.popup-dialog{
    position: fixed;
    top:-100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f44336;
    color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 9999;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.popup {
    top: 20px;
}


/* Tutorial styles */

.video {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    background-image: url('./images/support2.png');
    background-size: 100px;
    background-repeat: repeat;
}

.video h1 {
    margin-top: 200px;
    text-align: center;
    font-size: 54px;
    margin-bottom: 12px;
}

.video h2 {
    position: relative;
    left: 280px;
    font-size: 34px;
    margin-top: 20px;
}

#tutorial-video {
    padding: 20px;
    border: 1px solid var(--border);
}

.linux-browser {
    width: 80%;
    max-width: 900px;
    margin: 40px auto;
    border: 5px solid rgba(255, 255, 255, 0.9);
    border-radius: 5px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    background: black;
    
}

.linux-top-bar {
    display: flex;
    align-items: center;
    background: #396baf;
    padding: 10px;
    border-bottom: 2px solid var(--border);
}

.window-buttons {
    display: flex;
    gap: 6px;
    padding-left: 10px;
}

.window-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.close { 
    background: #E06C75;
}

.minimize {
     background: #E5C07B; 
} 

.maximize { 
    background: #98C379;
} 

.linux-address-bar {
    flex-grow: 1;
    text-align: center;
    font-size: 14px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 5px;
    margin-left: 10px;
}

.gif-content {
    width: 100%;
    display: block;
}


.tutorial-description p {
    width: 70%;
    margin: 10px auto;
    font-size: 18px;
}

.tutorial-description p .titleWord {
    
    font-size: 40px;
}

.tutorial-description p .abbr {
    font-weight: 600;
}


/* About styles*/

.about {
    height: 100vh;
    background-image: url('./images/support3.png');
    background-size: 70px;
    background-repeat: repeat;
}

.about h1 {
    position: relative;
    top: 50px;
    margin-top: 200px;
    text-align: center;
    font-size: 42px;
    font-weight: 910;
}

 #tagLine p{
    font-size: 30px;
    text-align: center;
    margin-top: 2em;
}

.features {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: -100px;
}

.first-section .feature,
.second-section .feature {
    margin-bottom: 50px;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 35px;
    width: 750px;
    height: 250px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background-color: var(--plain-bg);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;

}

.feature:hover {
    transform: scale(1.02);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 15px 50px;
}

.feature p {
    font-size: 19px;
}

.blue-text {
    color: var(--blue);
}

.title-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.title-icon i {
    font-size: 24px;
}


/* Widget styles */


.bot-info {
    height: 60vh;
    background-image: url('./images/support1.png');
    background-size: 120px;
    background-repeat: repeat;
}

.bot-info h1 {
    text-align: center;
    font-size: 40px;
}

.info-box {
    width: 75%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    position: relative;
    top: 20%;
}

.info-box p {
    font-size: 20px;
    width: 700px;
}

.bot-landing-page {
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bot-landing-page img{
    background-color: var(--plain-bg);
    width: 600px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

#widget-link {
    color: var(--blue);
}



/* Footer styles */

footer {
    text-align: center;
    padding: 80px 0px;
    padding-bottom: 20px;
    background-image: url('./images/support1.png');
    background-size: 120px;
    background-repeat: repeat;
}

footer a {
    margin: auto;
    background-image: url("WebZibleLogo.png");
    padding: 1.2em 9em;
    background-position: center;
    background-size: contain;
}

footer p {
    margin-top: 2em;
}



/* Scroll Bar styles */

::-webkit-scrollbar {
    width: 6px;
    height: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: var(--grayish-white);
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: var(--border);
    border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: #555; 
  }
  
  ::-webkit-scrollbar-corner {
    background-color: #f1f1f1;
  }