├── .github └── ISSUE_TEMPLATE │ └── custom.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── css ├── style.css ├── style.css.map └── style.scss ├── images ├── AIndML.png ├── BG1.png ├── BG2.png ├── BankingS.png ├── CVdIt.mp4 ├── ChatbotE.png ├── CryptoMining.png ├── FACode.png ├── Lock.png ├── Logo.png ├── Phone.png ├── pic-1.png ├── pic-2.png ├── pic-3.png ├── pic-4.png ├── pic-5.png └── pic-6.png ├── index.html └── js └── script.js /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Custom issue template 3 | about: Describe this issue template's purpose here. 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | 11 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | . 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | We welcome contributions from the community, especially those that enhance its User Interface capabilities. Feel free to fork the repository, make your improvements, and submit a pull request. 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 Sherwin Vishesh Jathanna 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Software Company Website 2 | ## ( [Click here to view the deployed website](https://sherwinvishesh.github.io/Software-Company-Website/) ) 3 | 4 | This project represents my final internship project at Nexus Info, where I was tasked with creating a comprehensive website for a software company. The goal was to showcase my expertise in delivering top-notch web solutions. 5 | 6 | ## Overview 7 | 8 | Built with modern web technologies, this website offers a seamless and engaging user experience, highlighting the services, portfolio, and innovative projects that reflect our commitment to excellence in the IT industry. 9 | 10 | ## Features 11 | 12 | - **Responsive Design**: Ensures optimal viewing on all devices. 13 | - **Interactive UI**: Provides dynamic content with smooth navigation. 14 | - **Portfolio Showcase**: Highlights our projects and case studies. 15 | - **Service Details**: Offers insights into our diverse offerings. 16 | 17 | ## Technologies Used 18 | 19 | - HTML5 20 | - CSS3 (with SCSS for styling) 21 | - JavaScript 22 | 23 | ## Project Structure 24 | 25 | - `index.html`: Homepage markup. 26 | - `style.css`: Compiled CSS from SCSS for styling. 27 | - `style.scss`: Source SCSS with variables and mixins. 28 | - `script.js`: JavaScript for interactivity. 29 | 30 | ## Setup 31 | 32 | To set up a local copy: 33 | 34 | 1. Clone the repo: 35 | ```sh 36 | git clone https://github.com/sherwinvishesh/Software-Company-Website.git 37 | ``` 38 | 2.Navigate to the directory: 39 | ```sh 40 | cd Software-Company-Website 41 | ``` 42 | 3. Open `index.html` in a browser to view the website. 43 | 44 | ## Contributing 45 | 46 | This project is the culmination of my internship at Nexus Info, and contributions are welcome to further enhance its functionality and design. If you have ideas or improvements, feel free to fork the repo and submit your changes via a pull request. You can also open an issue with the tag "enhancement" to discuss potential additions or modifications. 47 | 48 | 49 | ## License 50 | 51 | This project is licensed under the MIT License - see the `LICENSE` file for details. 52 | 53 | ## Acknowledgments 54 | 55 | - Special thanks to Nexus Info for the opportunity to work on this significant project during my internship. 56 | - Gratitude to all the mentors and colleagues who provided guidance and support throughout this journey. 57 | 58 | 59 | Made with " ♥" by Sherwin Vishesh Jathanna 60 | 61 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy (To be Updated) 2 | 3 | ## Supported Versions 4 | 5 | Use this section to tell people about which versions of your project are 6 | currently being supported with security updates. 7 | 8 | | Version | Supported | 9 | | ------- | ------------------ | 10 | | 5.1.x | :white_check_mark: | 11 | | 5.0.x | :x: | 12 | | 4.0.x | :white_check_mark: | 13 | | < 4.0 | :x: | 14 | 15 | ## Reporting a Vulnerability 16 | 17 | Use this section to tell people how to report a vulnerability. 18 | 19 | Tell them where to go, how often they can expect to get an update on a 20 | reported vulnerability, what to expect if the vulnerability is accepted or 21 | declined, etc. 22 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap"); 2 | :root { 3 | --yellow: #3137fd; 4 | --black: #111; 5 | --white: #fff; 6 | --light-color: #666; 7 | --light-bg: #eee; 8 | --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); 9 | --border: 0.1rem solid rgba(0, 0, 0, 0.3); 10 | } 11 | 12 | * { 13 | font-family: "Poppins", sans-serif; 14 | margin: 0; 15 | padding: 0; 16 | -webkit-box-sizing: border-box; 17 | box-sizing: border-box; 18 | outline: none; 19 | border: none; 20 | text-decoration: none; 21 | } 22 | 23 | html { 24 | font-size: 62.5%; 25 | overflow-x: hidden; 26 | scroll-behavior: smooth; 27 | scroll-padding-top: 7rem; 28 | } 29 | 30 | html::-webkit-scrollbar { 31 | width: 1rem; 32 | } 33 | 34 | html::-webkit-scrollbar-track { 35 | background: transparent; 36 | } 37 | 38 | html::-webkit-scrollbar-thumb { 39 | background: var(--yellow); 40 | } 41 | 42 | section { 43 | padding: 5rem 10%; 44 | } 45 | 46 | .heading { 47 | margin-bottom: 3rem; 48 | font-size: 3rem; 49 | color: var(--black); 50 | text-transform: capitalize; 51 | padding-left: 1rem; 52 | border-left: 1rem solid var(--yellow); 53 | } 54 | 55 | .btn { 56 | display: inline-block; 57 | margin-top: 1rem; 58 | padding: 1rem 3rem; 59 | background: var(--black); 60 | color: var(--white); 61 | cursor: pointer; 62 | font-size: 1.7rem; 63 | text-transform: capitalize; 64 | -webkit-transition: 0.2s linear; 65 | transition: 0.2s linear; 66 | } 67 | 68 | .btn:hover { 69 | background: var(--yellow); 70 | color: var(--black); 71 | } 72 | 73 | @-webkit-keyframes fadeIn { 74 | 0% { 75 | top: 50%; 76 | opacity: 0; 77 | } 78 | } 79 | 80 | @keyframes fadeIn { 81 | 0% { 82 | top: 50%; 83 | opacity: 0; 84 | } 85 | } 86 | 87 | .header { 88 | position: -webkit-sticky; 89 | position: sticky; 90 | top: 0; 91 | left: 0; 92 | right: 0; 93 | -webkit-box-shadow: var(--box-shadow); 94 | box-shadow: var(--box-shadow); 95 | padding: 1.5rem 10%; 96 | display: -webkit-box; 97 | display: -ms-flexbox; 98 | display: flex; 99 | -webkit-box-align: center; 100 | -ms-flex-align: center; 101 | align-items: center; 102 | -webkit-box-pack: justify; 103 | -ms-flex-pack: justify; 104 | justify-content: space-between; 105 | z-index: 1000; 106 | background: var(--white); 107 | } 108 | 109 | .header .logo { 110 | font-size: 2.5rem; 111 | color: var(--black); 112 | text-transform: capitalize; 113 | } 114 | 115 | .header .logo span { 116 | color: var(--yellow); 117 | } 118 | 119 | .header .navbar a { 120 | font-size: 2rem; 121 | color: var(--black); 122 | text-transform: capitalize; 123 | margin: 0 1rem; 124 | } 125 | 126 | .header .navbar a:hover { 127 | color: var(--yellow); 128 | } 129 | 130 | .header .icons div { 131 | height: 5rem; 132 | width: 5rem; 133 | line-height: 5rem; 134 | font-size: 2rem; 135 | background: var(--light-bg); 136 | color: var(--black); 137 | cursor: pointer; 138 | text-align: center; 139 | margin-left: 0.3rem; 140 | } 141 | 142 | .header .icons div:hover { 143 | background: var(--black); 144 | color: var(--white); 145 | } 146 | 147 | .header #menu-btn { 148 | display: none; 149 | } 150 | 151 | .header .search-form { 152 | position: absolute; 153 | top: 120%; 154 | left: 50%; 155 | -webkit-transform: translateX(-50%); 156 | transform: translateX(-50%); 157 | width: 70rem; 158 | background: var(--white); 159 | -webkit-box-shadow: var(--box-shadow); 160 | box-shadow: var(--box-shadow); 161 | padding: 1rem; 162 | display: none; 163 | -webkit-box-align: center; 164 | -ms-flex-align: center; 165 | align-items: center; 166 | gap: 1rem; 167 | -webkit-animation: fadeIn 0.2s linear; 168 | animation: fadeIn 0.2s linear; 169 | } 170 | 171 | .header .search-form.active { 172 | display: -webkit-box; 173 | display: -ms-flexbox; 174 | display: flex; 175 | } 176 | 177 | .header .search-form input { 178 | width: 100%; 179 | padding: 1.2rem 1.4rem; 180 | background: var(--light-bg); 181 | font-size: 1.6rem; 182 | color: var(--light-color); 183 | } 184 | 185 | .header .search-form label { 186 | font-size: 2.5rem; 187 | color: var(--black); 188 | cursor: pointer; 189 | margin: 0 1rem; 190 | } 191 | 192 | .header .search-form label:hover { 193 | color: var(--yellow); 194 | } 195 | 196 | .header .login-form { 197 | position: absolute; 198 | top: 120%; 199 | left: 50%; 200 | -webkit-transform: translateX(-50%); 201 | transform: translateX(-50%); 202 | width: 40rem; 203 | background: var(--white); 204 | -webkit-box-shadow: var(--box-shadow); 205 | box-shadow: var(--box-shadow); 206 | padding: 2rem; 207 | text-align: center; 208 | -webkit-animation: fadeIn 0.2s linear; 209 | animation: fadeIn 0.2s linear; 210 | display: none; 211 | } 212 | 213 | .header .login-form.active { 214 | display: block; 215 | } 216 | 217 | .header .login-form h3 { 218 | font-size: 2.5rem; 219 | color: var(--black); 220 | text-transform: capitalize; 221 | padding-bottom: 1rem; 222 | text-transform: uppercase; 223 | } 224 | 225 | .header .login-form .box { 226 | width: 100%; 227 | padding: 1.2rem 1.4rem; 228 | background: var(--light-bg); 229 | font-size: 1.6rem; 230 | color: var(--light-color); 231 | margin: 0.7rem 0; 232 | } 233 | 234 | .header .login-form .flex { 235 | display: -webkit-box; 236 | display: -ms-flexbox; 237 | display: flex; 238 | -webkit-box-align: center; 239 | -ms-flex-align: center; 240 | align-items: center; 241 | gap: 0.5rem; 242 | padding-top: 1.5rem; 243 | padding-bottom: 1rem; 244 | } 245 | 246 | .header .login-form .flex label { 247 | font-size: 1.5rem; 248 | color: var(--light-color); 249 | cursor: pointer; 250 | } 251 | 252 | .header .login-form .flex a { 253 | font-size: 1.5rem; 254 | color: var(--light-color); 255 | margin-left: auto; 256 | } 257 | 258 | .header .login-form .flex a:hover { 259 | color: var(--yellow); 260 | text-decoration: underline; 261 | } 262 | 263 | .header .login-form .btn { 264 | width: 100%; 265 | } 266 | 267 | .header .login-form p { 268 | font-size: 1.5rem; 269 | color: var(--light-color); 270 | line-height: 2; 271 | padding-top: 1.5rem; 272 | } 273 | 274 | .header .login-form p a { 275 | color: var(--yellow); 276 | } 277 | 278 | .header .login-form p a:hover { 279 | text-decoration: underline; 280 | } 281 | 282 | .contact-info { 283 | position: fixed; 284 | top: 0; 285 | right: 0; 286 | width: 35rem; 287 | background: var(--white); 288 | height: 100%; 289 | text-align: center; 290 | z-index: 1100; 291 | padding: 0 2rem; 292 | padding-top: 5rem; 293 | display: none; 294 | } 295 | 296 | .contact-info.active { 297 | -webkit-box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7); 298 | box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7); 299 | display: block; 300 | } 301 | 302 | .contact-info #close-contact-info { 303 | position: absolute; 304 | top: 1rem; 305 | right: 1.5rem; 306 | cursor: pointer; 307 | font-size: 4rem; 308 | color: var(--black); 309 | } 310 | 311 | .contact-info #close-contact-info:hover { 312 | -webkit-transform: rotate(90deg); 313 | transform: rotate(90deg); 314 | } 315 | 316 | .contact-info .info { 317 | padding: 2rem 0; 318 | } 319 | 320 | .contact-info .info i { 321 | height: 5rem; 322 | width: 5rem; 323 | line-height: 5rem; 324 | font-size: 2rem; 325 | background: var(--light-bg); 326 | color: var(--black); 327 | cursor: pointer; 328 | text-align: center; 329 | margin-bottom: 0.5rem; 330 | } 331 | 332 | .contact-info .info i:hover { 333 | background: var(--black); 334 | color: var(--white); 335 | } 336 | 337 | .contact-info .info h3 { 338 | font-size: 2rem; 339 | color: var(--black); 340 | text-transform: capitalize; 341 | padding: 1rem 0; 342 | } 343 | 344 | .contact-info .info p { 345 | font-size: 1.5rem; 346 | color: var(--light-color); 347 | line-height: 2; 348 | } 349 | 350 | .contact-info .share { 351 | padding-top: 2rem; 352 | border-top: var(--border); 353 | margin-top: 1rem; 354 | } 355 | 356 | .contact-info .share a { 357 | height: 5rem; 358 | width: 5rem; 359 | line-height: 5rem; 360 | font-size: 2rem; 361 | background: var(--light-bg); 362 | color: var(--black); 363 | cursor: pointer; 364 | text-align: center; 365 | margin: 0 0.3rem; 366 | } 367 | 368 | .contact-info .share a:hover { 369 | background: var(--black); 370 | color: var(--white); 371 | } 372 | 373 | .home { 374 | padding: 0; 375 | } 376 | 377 | .home .slide { 378 | min-height: 60rem; 379 | display: -webkit-box; 380 | display: -ms-flexbox; 381 | display: flex; 382 | -webkit-box-align: center; 383 | -ms-flex-align: center; 384 | align-items: center; 385 | position: relative; 386 | background-size: cover !important; 387 | background-position: center !important; 388 | } 389 | 390 | .home .slide::before { 391 | content: ""; 392 | position: absolute; 393 | top: 0; 394 | left: 0; 395 | height: 100%; 396 | width: 100%; 397 | background: -webkit-gradient(linear, left top, right top, from(var(--white)), to(transparent)); 398 | background: linear-gradient(90deg, var(--white), transparent); 399 | } 400 | 401 | .home .slide .content { 402 | width: 50rem; 403 | position: relative; 404 | } 405 | 406 | .home .slide .content h3 { 407 | font-size: 6rem; 408 | color: var(--black); 409 | text-transform: capitalize; 410 | text-transform: uppercase; 411 | } 412 | 413 | .home .slide .content p { 414 | font-size: 1.4rem; 415 | color: var(--light-color); 416 | line-height: 2; 417 | padding: 1rem 0; 418 | } 419 | 420 | .home .swiper-button-next, 421 | .home .swiper-button-prev { 422 | top: initial; 423 | bottom: 0; 424 | left: initial; 425 | right: 0; 426 | height: 7rem; 427 | width: 7rem; 428 | line-height: 7rem; 429 | background: var(--white); 430 | } 431 | 432 | .home .swiper-button-next:hover, 433 | .home .swiper-button-prev:hover { 434 | background: var(--yellow); 435 | } 436 | 437 | .home .swiper-button-next::after, 438 | .home .swiper-button-prev::after { 439 | font-size: 2rem; 440 | color: var(--black); 441 | } 442 | 443 | .home .swiper-button-prev { 444 | right: 7rem; 445 | } 446 | 447 | .about .row { 448 | display: -webkit-box; 449 | display: -ms-flexbox; 450 | display: flex; 451 | -webkit-box-align: center; 452 | -ms-flex-align: center; 453 | align-items: center; 454 | -ms-flex-wrap: wrap; 455 | flex-wrap: wrap; 456 | gap: 3rem; 457 | } 458 | 459 | .about .row .video { 460 | -webkit-box-flex: 1; 461 | -ms-flex: 1 1 41rem; 462 | flex: 1 1 41rem; 463 | } 464 | 465 | .about .row .video video { 466 | width: 100%; 467 | } 468 | 469 | .about .row .content { 470 | -webkit-box-flex: 1; 471 | -ms-flex: 1 1 41rem; 472 | flex: 1 1 41rem; 473 | } 474 | 475 | .about .row .content h3 { 476 | font-size: 3.5rem; 477 | color: var(--black); 478 | text-transform: capitalize; 479 | } 480 | 481 | .about .row .content p { 482 | font-size: 1.5rem; 483 | color: var(--light-color); 484 | line-height: 2; 485 | padding: 1rem 0; 486 | } 487 | 488 | .about .box-container { 489 | margin-top: 3rem; 490 | display: -ms-grid; 491 | display: grid; 492 | -ms-grid-columns: (minmax(16rem, 1fr))[auto-fit]; 493 | grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); 494 | gap: 2rem; 495 | -webkit-box-align: end; 496 | -ms-flex-align: end; 497 | align-items: flex-end; 498 | } 499 | 500 | .about .box-container .box { 501 | text-align: center; 502 | background: var(--light-bg); 503 | padding: 3rem 2rem; 504 | } 505 | 506 | .about .box-container .box h3 { 507 | font-size: 4rem; 508 | color: var(--black); 509 | text-transform: capitalize; 510 | } 511 | 512 | .about .box-container .box p { 513 | font-size: 1.5rem; 514 | color: var(--light-color); 515 | line-height: 2; 516 | padding-top: 0.5rem; 517 | } 518 | 519 | .services { 520 | background: var(--light-bg); 521 | } 522 | 523 | .services .box-container { 524 | display: -ms-grid; 525 | display: grid; 526 | -ms-grid-columns: (minmax(25rem, 1fr))[auto-fit]; 527 | grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr)); 528 | gap: 2rem; 529 | } 530 | 531 | .services .box-container .box { 532 | text-align: center; 533 | padding: 3rem; 534 | background: var(--white); 535 | -webkit-box-shadow: var(--box-shadow); 536 | box-shadow: var(--box-shadow); 537 | border: var(--border); 538 | } 539 | 540 | .services .box-container .box:hover img { 541 | -webkit-transform: translateY(-1rem); 542 | transform: translateY(-1rem); 543 | } 544 | 545 | .services .box-container .box img { 546 | height: 7rem; 547 | margin-bottom: 0.5rem; 548 | -webkit-transition: 0.2s linear; 549 | transition: 0.2s linear; 550 | } 551 | 552 | .services .box-container .box h3 { 553 | font-size: 1.7rem; 554 | color: var(--black); 555 | text-transform: capitalize; 556 | padding: 1rem 0; 557 | } 558 | 559 | .services .box-container .box p { 560 | font-size: 1.4rem; 561 | color: var(--light-color); 562 | line-height: 2; 563 | } 564 | 565 | .projects { 566 | background: var(--black); 567 | } 568 | 569 | .projects .heading { 570 | color: var(--white); 571 | } 572 | 573 | .projects .box-container { 574 | display: -ms-grid; 575 | display: grid; 576 | -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit]; 577 | grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr)); 578 | gap: 2rem; 579 | } 580 | 581 | .projects .box-container .box { 582 | cursor: initial; 583 | } 584 | 585 | .projects .box-container .box:hover .image img { 586 | -webkit-transform: scale(1.1); 587 | transform: scale(1.1); 588 | } 589 | 590 | .projects .box-container .box .image { 591 | height: 40rem; 592 | overflow: hidden; 593 | } 594 | 595 | .projects .box-container .box .image img { 596 | height: 100%; 597 | width: 100%; 598 | -o-object-fit: cover; 599 | object-fit: cover; 600 | -webkit-transition: 0.2s linear; 601 | transition: 0.2s linear; 602 | } 603 | 604 | .projects .box-container .box .content { 605 | display: -webkit-box; 606 | display: -ms-flexbox; 607 | display: flex; 608 | background: var(--white); 609 | -webkit-box-pack: justify; 610 | -ms-flex-pack: justify; 611 | justify-content: space-between; 612 | } 613 | 614 | .projects .box-container .box .content .info { 615 | padding: 1rem 2rem; 616 | } 617 | 618 | .projects .box-container .box .content .info h3 { 619 | font-size: 1.7rem; 620 | color: var(--black); 621 | text-transform: capitalize; 622 | } 623 | 624 | .projects .box-container .box .content .info p { 625 | font-size: 1.5rem; 626 | color: var(--light-color); 627 | line-height: 2; 628 | } 629 | 630 | .projects .box-container .box .content i { 631 | width: 7.5rem; 632 | font-size: 3rem; 633 | background: var(--yellow); 634 | color: var(--white); 635 | cursor: pointer; 636 | text-align: center; 637 | line-height: 7.5rem; 638 | } 639 | 640 | .reviews .slide p { 641 | padding: 1.5rem; 642 | background: var(--light-bg); 643 | position: relative; 644 | margin-bottom: 3rem; 645 | font-size: 1.4rem; 646 | color: var(--light-color); 647 | line-height: 2; 648 | } 649 | 650 | .reviews .slide p::before { 651 | content: ""; 652 | position: absolute; 653 | bottom: -1rem; 654 | left: 2rem; 655 | height: 2rem; 656 | width: 2rem; 657 | background: var(--light-bg); 658 | -webkit-transform: rotate(45deg); 659 | transform: rotate(45deg); 660 | } 661 | 662 | .reviews .slide .user { 663 | display: -webkit-box; 664 | display: -ms-flexbox; 665 | display: flex; 666 | -webkit-box-align: center; 667 | -ms-flex-align: center; 668 | align-items: center; 669 | gap: 1.5rem; 670 | } 671 | 672 | .reviews .slide .user img { 673 | height: 7rem; 674 | width: 7rem; 675 | } 676 | 677 | .reviews .slide .user h3 { 678 | font-size: 2rem; 679 | color: var(--black); 680 | text-transform: capitalize; 681 | } 682 | 683 | .reviews .slide .user .stars { 684 | padding-top: 0.5rem; 685 | } 686 | 687 | .reviews .slide .user .stars i { 688 | font-size: 1.4rem; 689 | color: var(--yellow); 690 | } 691 | 692 | .pricing { 693 | background: var(--light-bg); 694 | } 695 | 696 | .pricing .box-container { 697 | display: -ms-grid; 698 | display: grid; 699 | -ms-grid-columns: (minmax(30rem, 1fr))[auto-fit]; 700 | grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr)); 701 | gap: 2rem; 702 | } 703 | 704 | .pricing .box-container .box { 705 | background: var(--white); 706 | text-align: center; 707 | padding: 2rem; 708 | border: var(--border); 709 | -webkit-box-shadow: var(--box-shadow); 710 | box-shadow: var(--box-shadow); 711 | } 712 | 713 | .pricing .box-container .box i { 714 | font-size: 3rem; 715 | height: 7rem; 716 | width: 7rem; 717 | line-height: 7rem; 718 | border-radius: 50%; 719 | margin-bottom: 2rem; 720 | background: var(--yellow); 721 | color: var(--black); 722 | } 723 | 724 | .pricing .box-container .box h3 { 725 | font-size: 2rem; 726 | color: var(--black); 727 | text-transform: capitalize; 728 | font-weight: normal; 729 | } 730 | 731 | .pricing .box-container .box .price { 732 | padding: 1rem 0; 733 | font-size: 5rem; 734 | color: var(--black); 735 | text-transform: capitalize; 736 | } 737 | 738 | .pricing .box-container .box .price span { 739 | font-size: 2rem; 740 | } 741 | 742 | .pricing .box-container .box .list { 743 | padding: 1rem 0; 744 | } 745 | 746 | .pricing .box-container .box .list p { 747 | padding: 1rem 0; 748 | font-size: 1.4rem; 749 | color: var(--light-color); 750 | line-height: 2; 751 | } 752 | 753 | .contact { 754 | background: var(--black); 755 | } 756 | 757 | .contact .heading { 758 | color: var(--white); 759 | } 760 | 761 | .contact .row { 762 | display: -webkit-box; 763 | display: -ms-flexbox; 764 | display: flex; 765 | -ms-flex-wrap: wrap; 766 | flex-wrap: wrap; 767 | gap: 2rem; 768 | } 769 | 770 | .contact .row .map { 771 | -webkit-box-flex: 1; 772 | -ms-flex: 1 1 41rem; 773 | flex: 1 1 41rem; 774 | width: 100%; 775 | } 776 | 777 | .contact .row form { 778 | -webkit-box-flex: 1; 779 | -ms-flex: 1 1 41rem; 780 | flex: 1 1 41rem; 781 | background: var(--white); 782 | padding: 2rem; 783 | } 784 | 785 | .contact .row form h3 { 786 | font-size: 2.5rem; 787 | color: var(--black); 788 | text-transform: capitalize; 789 | } 790 | 791 | .contact .row form .box { 792 | margin: 0.7rem 0; 793 | width: 100%; 794 | padding: 1.5rem 0; 795 | border-bottom: var(--border); 796 | font-size: 1.6rem; 797 | color: var(--light-color); 798 | } 799 | 800 | .contact .row form .box:focus { 801 | border-color: var(--yellow); 802 | } 803 | 804 | .contact .row form textarea { 805 | height: 15rem; 806 | resize: none; 807 | } 808 | 809 | .blogs { 810 | background: var(--light-bg); 811 | } 812 | 813 | .blogs .slide { 814 | text-align: center; 815 | } 816 | 817 | .blogs .slide:hover .image img { 818 | -webkit-transform: scale(1.1); 819 | transform: scale(1.1); 820 | } 821 | 822 | .blogs .slide .image { 823 | height: 25rem; 824 | width: 90%; 825 | overflow: hidden; 826 | margin: 0 auto; 827 | margin-bottom: -3rem; 828 | } 829 | 830 | .blogs .slide .image img { 831 | height: 100%; 832 | width: 100%; 833 | -o-object-fit: cover; 834 | object-fit: cover; 835 | -webkit-transition: 0.2s linear; 836 | transition: 0.2s linear; 837 | } 838 | 839 | .blogs .slide .content { 840 | padding: 2rem; 841 | padding-top: 5rem; 842 | background: var(--white); 843 | -webkit-box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2); 844 | box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2); 845 | } 846 | 847 | .blogs .slide .content h3 { 848 | font-size: 2rem; 849 | color: var(--black); 850 | text-transform: capitalize; 851 | } 852 | 853 | .blogs .slide .content p { 854 | padding: 1rem 0; 855 | font-size: 1.4rem; 856 | color: var(--light-color); 857 | line-height: 2; 858 | } 859 | 860 | .logo-container { 861 | text-align: center; 862 | } 863 | 864 | .logo-container img { 865 | height: 10rem; 866 | pointer-events: none; 867 | -webkit-user-select: none; 868 | -moz-user-select: none; 869 | -ms-user-select: none; 870 | user-select: none; 871 | } 872 | 873 | .footer { 874 | text-align: center; 875 | padding-bottom: 10rem; 876 | } 877 | 878 | .footer .links .btn { 879 | margin: 0.5rem; 880 | } 881 | 882 | .footer .credit { 883 | font-size: 2rem; 884 | color: var(--black); 885 | text-transform: capitalize; 886 | margin-top: 2rem; 887 | padding-top: 1rem; 888 | } 889 | 890 | .footer .credit span { 891 | color: var(--yellow); 892 | } 893 | 894 | @media (max-width: 1200px) { 895 | .header { 896 | padding: 1.5rem 2rem; 897 | } 898 | section { 899 | padding: 3rem 5%; 900 | } 901 | } 902 | 903 | @media (max-width: 991px) { 904 | html { 905 | font-size: 55%; 906 | } 907 | section { 908 | padding: 3rem 2rem; 909 | } 910 | .header #menu-btn { 911 | display: inline-block; 912 | } 913 | .header .navbar { 914 | position: absolute; 915 | top: 99%; 916 | left: 0; 917 | right: 0; 918 | background: var(--white); 919 | border-top: var(--border); 920 | border-bottom: var(--border); 921 | -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); 922 | clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); 923 | -webkit-transition: 0.2s linear; 924 | transition: 0.2s linear; 925 | } 926 | .header .navbar.active { 927 | -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 928 | clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 929 | } 930 | .header .navbar a { 931 | display: block; 932 | margin: 2rem; 933 | } 934 | } 935 | 936 | @media (max-width: 768px) { 937 | .header .search-form { 938 | width: 90%; 939 | } 940 | .header .login-form { 941 | width: 90%; 942 | } 943 | .home .slide { 944 | -webkit-box-pack: center; 945 | -ms-flex-pack: center; 946 | justify-content: center; 947 | } 948 | .home .slide .content { 949 | text-align: center; 950 | } 951 | .home .slide .content h3 { 952 | font-size: 3rem; 953 | } 954 | } 955 | 956 | @media (max-width: 450px) { 957 | html { 958 | font-size: 50%; 959 | } 960 | .about .row .content h3 { 961 | font-size: 2.5rem; 962 | } 963 | } -------------------------------------------------------------------------------- /css/style.css.map: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "mappings": "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", 4 | "sources": [ 5 | "style.scss" 6 | ], 7 | "names": [], 8 | "file": "style.css" 9 | } -------------------------------------------------------------------------------- /css/style.scss: -------------------------------------------------------------------------------- 1 | @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap"); 2 | 3 | :root { 4 | --yellow: #3137fd; 5 | --black: #111; 6 | --white: #fff; 7 | --light-color: #666; 8 | --light-bg: #eee; 9 | --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); 10 | --border: 0.1rem solid rgba(0, 0, 0, 0.3); 11 | } 12 | 13 | * { 14 | font-family: "Poppins", sans-serif; 15 | margin: 0; 16 | padding: 0; 17 | box-sizing: border-box; 18 | outline: none; 19 | border: none; 20 | text-decoration: none; 21 | } 22 | 23 | @mixin grid($val) { 24 | display: grid; 25 | grid-template-columns: repeat(auto-fit, minmax($val, 1fr)); 26 | gap: 2rem; 27 | } 28 | 29 | @mixin titleText($titleSize) { 30 | font-size: $titleSize; 31 | color: var(--black); 32 | text-transform: capitalize; 33 | } 34 | 35 | @mixin graphText($graphSize) { 36 | font-size: $graphSize; 37 | color: var(--light-color); 38 | line-height: 2; 39 | } 40 | 41 | @mixin iconsBox() { 42 | height: 5rem; 43 | width: 5rem; 44 | line-height: 5rem; 45 | font-size: 2rem; 46 | background: var(--light-bg); 47 | color: var(--black); 48 | cursor: pointer; 49 | text-align: center; 50 | 51 | &:hover { 52 | background: var(--black); 53 | color: var(--white); 54 | } 55 | } 56 | 57 | html { 58 | font-size: 62.5%; 59 | overflow-x: hidden; 60 | scroll-behavior: smooth; 61 | scroll-padding-top: 7rem; 62 | 63 | &::-webkit-scrollbar { 64 | width: 1rem; 65 | } 66 | 67 | &::-webkit-scrollbar-track { 68 | background: transparent; 69 | } 70 | 71 | &::-webkit-scrollbar-thumb { 72 | background: var(--yellow); 73 | } 74 | } 75 | 76 | section { 77 | padding: 5rem 10%; 78 | } 79 | 80 | .heading { 81 | margin-bottom: 3rem; 82 | @include titleText(3rem); 83 | padding-left: 1rem; 84 | border-left: 1rem solid var(--yellow); 85 | } 86 | 87 | .btn { 88 | display: inline-block; 89 | margin-top: 1rem; 90 | padding: 1rem 3rem; 91 | background: var(--black); 92 | color: var(--white); 93 | cursor: pointer; 94 | font-size: 1.7rem; 95 | text-transform: capitalize; 96 | transition: 0.2s linear; 97 | 98 | &:hover { 99 | background: var(--yellow); 100 | color: var(--black); 101 | } 102 | } 103 | 104 | @keyframes fadeIn { 105 | 0% { 106 | top: 50%; 107 | opacity: 0; 108 | } 109 | } 110 | 111 | .header { 112 | position: sticky; 113 | top: 0; 114 | left: 0; 115 | right: 0; 116 | box-shadow: var(--box-shadow); 117 | padding: 1.5rem 10%; 118 | display: flex; 119 | align-items: center; 120 | justify-content: space-between; 121 | z-index: 1000; 122 | background: var(--white); 123 | 124 | .logo { 125 | @include titleText(2.5rem); 126 | 127 | span { 128 | color: var(--yellow); 129 | } 130 | } 131 | 132 | .navbar a { 133 | @include titleText(2rem); 134 | margin: 0 1rem; 135 | 136 | &:hover { 137 | color: var(--yellow); 138 | } 139 | } 140 | 141 | .icons div { 142 | @include iconsBox(); 143 | margin-left: 0.3rem; 144 | } 145 | 146 | #menu-btn { 147 | display: none; 148 | } 149 | 150 | .search-form { 151 | position: absolute; 152 | top: 120%; 153 | left: 50%; 154 | transform: translateX(-50%); 155 | width: 70rem; 156 | background: var(--white); 157 | box-shadow: var(--box-shadow); 158 | padding: 1rem; 159 | display: none; 160 | align-items: center; 161 | gap: 1rem; 162 | animation: fadeIn 0.2s linear; 163 | 164 | &.active { 165 | display: flex; 166 | } 167 | 168 | input { 169 | width: 100%; 170 | padding: 1.2rem 1.4rem; 171 | background: var(--light-bg); 172 | font-size: 1.6rem; 173 | color: var(--light-color); 174 | } 175 | 176 | label { 177 | font-size: 2.5rem; 178 | color: var(--black); 179 | cursor: pointer; 180 | margin: 0 1rem; 181 | 182 | &:hover { 183 | color: var(--yellow); 184 | } 185 | } 186 | } 187 | 188 | .login-form { 189 | position: absolute; 190 | top: 120%; 191 | left: 50%; 192 | transform: translateX(-50%); 193 | width: 40rem; 194 | background: var(--white); 195 | box-shadow: var(--box-shadow); 196 | padding: 2rem; 197 | text-align: center; 198 | animation: fadeIn 0.2s linear; 199 | display: none; 200 | 201 | &.active { 202 | display: block; 203 | } 204 | 205 | h3 { 206 | @include titleText(2.5rem); 207 | padding-bottom: 1rem; 208 | text-transform: uppercase; 209 | } 210 | 211 | .box { 212 | width: 100%; 213 | padding: 1.2rem 1.4rem; 214 | background: var(--light-bg); 215 | font-size: 1.6rem; 216 | color: var(--light-color); 217 | margin: 0.7rem 0; 218 | } 219 | 220 | .flex { 221 | display: flex; 222 | align-items: center; 223 | gap: 0.5rem; 224 | padding-top: 1.5rem; 225 | padding-bottom: 1rem; 226 | 227 | label { 228 | font-size: 1.5rem; 229 | color: var(--light-color); 230 | cursor: pointer; 231 | } 232 | 233 | a { 234 | font-size: 1.5rem; 235 | color: var(--light-color); 236 | margin-left: auto; 237 | 238 | &:hover { 239 | color: var(--yellow); 240 | text-decoration: underline; 241 | } 242 | } 243 | } 244 | 245 | .btn { 246 | width: 100%; 247 | } 248 | 249 | p { 250 | @include graphText(1.5rem); 251 | padding-top: 1.5rem; 252 | 253 | a { 254 | color: var(--yellow); 255 | 256 | &:hover { 257 | text-decoration: underline; 258 | } 259 | } 260 | } 261 | } 262 | } 263 | 264 | .contact-info { 265 | position: fixed; 266 | top: 0; 267 | right: 0; 268 | width: 35rem; 269 | background: var(--white); 270 | height: 100%; 271 | text-align: center; 272 | z-index: 1100; 273 | padding: 0 2rem; 274 | padding-top: 5rem; 275 | display: none; 276 | 277 | &.active { 278 | box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.7); 279 | display: block; 280 | } 281 | 282 | #close-contact-info { 283 | position: absolute; 284 | top: 1rem; 285 | right: 1.5rem; 286 | cursor: pointer; 287 | font-size: 4rem; 288 | color: var(--black); 289 | 290 | &:hover { 291 | transform: rotate(90deg); 292 | } 293 | } 294 | 295 | .info { 296 | padding: 2rem 0; 297 | 298 | i { 299 | @include iconsBox(); 300 | margin-bottom: 0.5rem; 301 | } 302 | 303 | h3 { 304 | @include titleText(2rem); 305 | padding: 1rem 0; 306 | } 307 | 308 | p { 309 | @include graphText(1.5rem); 310 | } 311 | } 312 | 313 | .share { 314 | padding-top: 2rem; 315 | border-top: var(--border); 316 | margin-top: 1rem; 317 | 318 | a { 319 | @include iconsBox(); 320 | margin: 0 0.3rem; 321 | } 322 | } 323 | } 324 | 325 | .home { 326 | padding: 0; 327 | 328 | .slide { 329 | min-height: 60rem; 330 | display: flex; 331 | align-items: center; 332 | position: relative; 333 | background-size: cover !important; 334 | background-position: center !important; 335 | 336 | &::before { 337 | content: ""; 338 | position: absolute; 339 | top: 0; 340 | left: 0; 341 | height: 100%; 342 | width: 100%; 343 | background: linear-gradient(90deg, var(--white), transparent); 344 | } 345 | 346 | .content { 347 | width: 50rem; 348 | position: relative; 349 | 350 | h3 { 351 | @include titleText(6rem); 352 | text-transform: uppercase; 353 | } 354 | 355 | p { 356 | @include graphText(1.4rem); 357 | padding: 1rem 0; 358 | } 359 | } 360 | } 361 | 362 | .swiper-button-next, 363 | .swiper-button-prev { 364 | top: initial; 365 | bottom: 0; 366 | left: initial; 367 | right: 0; 368 | height: 7rem; 369 | width: 7rem; 370 | line-height: 7rem; 371 | background: var(--white); 372 | 373 | &:hover { 374 | background: var(--yellow); 375 | } 376 | } 377 | 378 | .swiper-button-next::after, 379 | .swiper-button-prev::after { 380 | font-size: 2rem; 381 | color: var(--black); 382 | } 383 | 384 | .swiper-button-prev { 385 | right: 7rem; 386 | } 387 | } 388 | 389 | .about { 390 | .row { 391 | display: flex; 392 | align-items: center; 393 | flex-wrap: wrap; 394 | gap: 3rem; 395 | 396 | .video { 397 | flex: 1 1 41rem; 398 | 399 | video { 400 | width: 100%; 401 | } 402 | } 403 | 404 | .content { 405 | flex: 1 1 41rem; 406 | 407 | h3 { 408 | @include titleText(3.5rem); 409 | } 410 | 411 | p { 412 | @include graphText(1.5rem); 413 | padding: 1rem 0; 414 | } 415 | } 416 | } 417 | 418 | .box-container { 419 | margin-top: 3rem; 420 | @include grid(16rem); 421 | align-items: flex-end; 422 | 423 | .box { 424 | text-align: center; 425 | background: var(--light-bg); 426 | padding: 3rem 2rem; 427 | 428 | h3 { 429 | @include titleText(4rem); 430 | } 431 | 432 | p { 433 | @include graphText(1.5rem); 434 | padding-top: 0.5rem; 435 | } 436 | } 437 | } 438 | } 439 | 440 | .services { 441 | background: var(--light-bg); 442 | 443 | .box-container { 444 | @include grid(25rem); 445 | 446 | .box { 447 | text-align: center; 448 | padding: 3rem; 449 | background: var(--white); 450 | box-shadow: var(--box-shadow); 451 | border: var(--border); 452 | 453 | &:hover img { 454 | transform: translateY(-1rem); 455 | } 456 | 457 | img { 458 | height: 7rem; 459 | margin-bottom: 0.5rem; 460 | transition: 0.2s linear; 461 | } 462 | 463 | h3 { 464 | @include titleText(1.7rem); 465 | padding: 1rem 0; 466 | } 467 | 468 | p { 469 | @include graphText(1.4rem); 470 | } 471 | } 472 | } 473 | } 474 | 475 | .projects { 476 | background: var(--black); 477 | 478 | .heading { 479 | color: var(--white); 480 | } 481 | 482 | .box-container { 483 | @include grid(30rem); 484 | 485 | .box { 486 | cursor: initial; 487 | 488 | &:hover .image img { 489 | transform: scale(1.1); 490 | } 491 | 492 | .image { 493 | height: 40rem; 494 | overflow: hidden; 495 | 496 | img { 497 | height: 100%; 498 | width: 100%; 499 | object-fit: cover; 500 | transition: 0.2s linear; 501 | } 502 | } 503 | 504 | .content { 505 | display: flex; 506 | background: var(--white); 507 | justify-content: space-between; 508 | 509 | .info { 510 | padding: 1rem 2rem; 511 | 512 | h3 { 513 | @include titleText(1.7rem); 514 | } 515 | 516 | p { 517 | @include graphText(1.5rem); 518 | } 519 | } 520 | 521 | i { 522 | width: 7.5rem; 523 | font-size: 3rem; 524 | background: var(--yellow); 525 | color: var(--white); 526 | cursor: pointer; 527 | text-align: center; 528 | line-height: 7.5rem; 529 | } 530 | } 531 | } 532 | } 533 | } 534 | 535 | .reviews { 536 | .slide { 537 | p { 538 | padding: 1.5rem; 539 | background: var(--light-bg); 540 | position: relative; 541 | margin-bottom: 3rem; 542 | @include graphText(1.4rem); 543 | 544 | &::before { 545 | content: ""; 546 | position: absolute; 547 | bottom: -1rem; 548 | left: 2rem; 549 | height: 2rem; 550 | width: 2rem; 551 | background: var(--light-bg); 552 | transform: rotate(45deg); 553 | } 554 | } 555 | 556 | .user { 557 | display: flex; 558 | align-items: center; 559 | gap: 1.5rem; 560 | 561 | img { 562 | height: 7rem; 563 | width: 7rem; 564 | } 565 | 566 | h3 { 567 | @include titleText(2rem); 568 | } 569 | 570 | .stars { 571 | padding-top: 0.5rem; 572 | 573 | i { 574 | font-size: 1.4rem; 575 | color: var(--yellow); 576 | } 577 | } 578 | } 579 | } 580 | } 581 | 582 | .pricing { 583 | background: var(--light-bg); 584 | 585 | .box-container { 586 | @include grid(30rem); 587 | 588 | .box { 589 | background: var(--white); 590 | text-align: center; 591 | padding: 2rem; 592 | border: var(--border); 593 | box-shadow: var(--box-shadow); 594 | 595 | i { 596 | font-size: 3rem; 597 | height: 7rem; 598 | width: 7rem; 599 | line-height: 7rem; 600 | border-radius: 50%; 601 | margin-bottom: 2rem; 602 | background: var(--yellow); 603 | color: var(--black); 604 | } 605 | 606 | h3 { 607 | @include titleText(2rem); 608 | font-weight: normal; 609 | } 610 | 611 | .price { 612 | padding: 1rem 0; 613 | @include titleText(5rem); 614 | 615 | span { 616 | font-size: 2rem; 617 | } 618 | } 619 | 620 | .list { 621 | padding: 1rem 0; 622 | 623 | p { 624 | padding: 1rem 0; 625 | @include graphText(1.4rem); 626 | } 627 | } 628 | } 629 | } 630 | } 631 | 632 | .contact { 633 | background: var(--black); 634 | 635 | .heading { 636 | color: var(--white); 637 | } 638 | 639 | .row { 640 | display: flex; 641 | flex-wrap: wrap; 642 | gap: 2rem; 643 | 644 | .map { 645 | flex: 1 1 41rem; 646 | width: 100%; 647 | } 648 | 649 | form { 650 | flex: 1 1 41rem; 651 | background: var(--white); 652 | padding: 2rem; 653 | 654 | h3 { 655 | @include titleText(2.5rem); 656 | } 657 | 658 | .box { 659 | margin: 0.7rem 0; 660 | width: 100%; 661 | padding: 1.5rem 0; 662 | border-bottom: var(--border); 663 | font-size: 1.6rem; 664 | color: var(--light-color); 665 | 666 | &:focus { 667 | border-color: var(--yellow); 668 | } 669 | } 670 | 671 | textarea { 672 | height: 15rem; 673 | resize: none; 674 | } 675 | } 676 | } 677 | } 678 | 679 | .blogs { 680 | background: var(--light-bg); 681 | 682 | .slide { 683 | text-align: center; 684 | 685 | &:hover .image img { 686 | transform: scale(1.1); 687 | } 688 | 689 | .image { 690 | height: 25rem; 691 | width: 90%; 692 | overflow: hidden; 693 | margin: 0 auto; 694 | margin-bottom: -3rem; 695 | 696 | img { 697 | height: 100%; 698 | width: 100%; 699 | object-fit: cover; 700 | transition: 0.2s linear; 701 | } 702 | } 703 | 704 | .content { 705 | padding: 2rem; 706 | padding-top: 5rem; 707 | background: var(--white); 708 | box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.2); 709 | 710 | h3 { 711 | @include titleText(2rem); 712 | } 713 | 714 | p { 715 | padding: 1rem 0; 716 | @include graphText(1.4rem); 717 | } 718 | } 719 | } 720 | } 721 | 722 | .logo-container { 723 | text-align: center; 724 | 725 | img { 726 | height: 10rem; 727 | pointer-events: none; 728 | user-select: none; 729 | } 730 | } 731 | 732 | .footer { 733 | text-align: center; 734 | padding-bottom: 10rem; 735 | 736 | .links .btn { 737 | margin: 0.5rem; 738 | } 739 | 740 | .credit { 741 | @include titleText(2rem); 742 | margin-top: 2rem; 743 | padding-top: 1rem; 744 | 745 | span { 746 | color: var(--yellow); 747 | } 748 | } 749 | } 750 | 751 | // media queries 752 | 753 | @media (max-width: 1200px) { 754 | .header { 755 | padding: 1.5rem 2rem; 756 | } 757 | 758 | section { 759 | padding: 3rem 5%; 760 | } 761 | } 762 | 763 | @media (max-width: 991px) { 764 | html { 765 | font-size: 55%; 766 | } 767 | 768 | section { 769 | padding: 3rem 2rem; 770 | } 771 | 772 | .header { 773 | #menu-btn { 774 | display: inline-block; 775 | } 776 | 777 | .navbar { 778 | position: absolute; 779 | top: 99%; 780 | left: 0; 781 | right: 0; 782 | background: var(--white); 783 | border-top: var(--border); 784 | border-bottom: var(--border); 785 | clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); 786 | transition: 0.2s linear; 787 | 788 | &.active { 789 | clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 790 | } 791 | 792 | a { 793 | display: block; 794 | margin: 2rem; 795 | } 796 | } 797 | } 798 | } 799 | 800 | @media (max-width: 768px) { 801 | .header { 802 | .search-form { 803 | width: 90%; 804 | } 805 | 806 | .login-form { 807 | width: 90%; 808 | } 809 | } 810 | 811 | .home .slide { 812 | justify-content: center; 813 | 814 | .content { 815 | text-align: center; 816 | 817 | h3 { 818 | font-size: 3rem; 819 | } 820 | } 821 | } 822 | } 823 | 824 | @media (max-width: 450px) { 825 | html { 826 | font-size: 50%; 827 | } 828 | 829 | .about .row .content h3 { 830 | font-size: 2.5rem; 831 | } 832 | } 833 | -------------------------------------------------------------------------------- /images/AIndML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/AIndML.png -------------------------------------------------------------------------------- /images/BG1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/BG1.png -------------------------------------------------------------------------------- /images/BG2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/BG2.png -------------------------------------------------------------------------------- /images/BankingS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/BankingS.png -------------------------------------------------------------------------------- /images/CVdIt.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/CVdIt.mp4 -------------------------------------------------------------------------------- /images/ChatbotE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/ChatbotE.png -------------------------------------------------------------------------------- /images/CryptoMining.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/CryptoMining.png -------------------------------------------------------------------------------- /images/FACode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/FACode.png -------------------------------------------------------------------------------- /images/Lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/Lock.png -------------------------------------------------------------------------------- /images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/Logo.png -------------------------------------------------------------------------------- /images/Phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/Phone.png -------------------------------------------------------------------------------- /images/pic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/pic-1.png -------------------------------------------------------------------------------- /images/pic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/pic-2.png -------------------------------------------------------------------------------- /images/pic-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/pic-3.png -------------------------------------------------------------------------------- /images/pic-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/pic-4.png -------------------------------------------------------------------------------- /images/pic-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/pic-5.png -------------------------------------------------------------------------------- /images/pic-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sherwinvishesh/Software-Company-Website/65bc6d9a2195fb623bf2a0ac20d9141bf1ba6613/images/pic-6.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | Software Company Website 11 | 12 | 13 | 17 | 18 | 22 | 23 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 |
35 | 36 | 37 | 45 | 46 |
47 | 48 |
49 | 50 |
51 |
52 | 53 |
54 | 60 | 61 |
62 | 63 |
64 |

login form

65 | 66 | 67 |
68 | 69 | 70 | forgot password? 71 |
72 | 73 |

don't have an account create one!

74 |
75 |
76 | 77 |
78 |
79 | 80 |
81 | 82 |

phone number

83 |

+123-456-7890

84 |

+111-222-3333

85 |
86 | 87 |
88 | 89 |

email address

90 |

admin@sherwinvishesh.com

91 |
92 | 93 |
94 | 95 |

office address

96 |

tempe, AZ 85281

97 |
98 | 99 |
100 | 101 | 102 |
103 |
104 | 105 | 106 | 107 | 108 | 109 |
110 |
111 |
112 |
116 |
117 |

Innovating Your Digital Future

118 |

119 | Elevate your business with cutting-edge web development, mobile applications, and AI solutions. 120 |

121 | get started 122 |
123 |
124 | 125 |
129 |
130 |

Where Technology Meets Vision

131 |

132 | Tailored IT solutions that fit your unique business needs. Let's build something amazing together. 133 |

134 | get started 135 |
136 |
137 |
138 | 139 |
140 |
141 |
142 |
143 | 144 | 145 | 146 | 147 | 148 |
149 |

about us

150 | 151 |
152 |
153 | 154 |
155 | 156 |
157 |

We will provide you the best work which you dreamt for!

158 |

159 | At Software Company, we harness the power of technology to create innovative solutions that drive business success. From dynamic websites to transformative mobile apps and cutting-edge AI, we're your partners in navigating the digital landscape 160 |

161 | read more 162 |
163 |
164 | 165 |
166 |
167 |

15+

168 |

years of experience

169 |
170 | 171 |
172 |

1500+

173 |

project completed

174 |
175 | 176 |
177 |

790+

178 |

satiesfied clients

179 |
180 | 181 |
182 |

100+

183 |

active developers

184 |
185 |
186 |
187 | 188 | 189 | 190 | 191 | 192 |
193 |

our services

194 | 195 |
196 |
197 | 198 |

Custom Web Development

199 |

200 | Transformative web designs that elevate your digital presence, ensuring user-friendly experiences across all devices. 201 |

202 |
203 | 204 |
205 | 206 |

Mobile App Development

207 |

208 | Innovative mobile apps for iOS and Android, tailored to enhance engagement and streamline your business operations. 209 |

210 |
211 | 212 |
213 | 214 |

AI & Machine Learning Solutions 215 |

216 |

217 | Leverage AI and machine learning to unlock data insights, automate processes, and revolutionize your business strategy. 218 |

219 |
220 | 221 |
222 | 223 |

Cybersecurity Services

224 |

225 | Comprehensive cybersecurity solutions to protect your digital assets and ensure business continuity against evolving threats. 226 |

227 |
228 |
229 |
230 | 231 | 232 | 233 | 234 | 235 |
236 |

our projects

237 | 238 |
239 | 240 |
241 | 242 |
243 |
244 |
245 |

HashPioneer

246 |

crypto mining platform

247 |
248 | 249 |
250 |
251 | 252 | 253 | 254 | 255 |
256 | 257 |
258 |
259 |
260 |

Educator

261 |

Chatbot for education

262 |
263 | 264 |
265 |
266 | 267 | 268 | 269 | 270 |
271 | 272 |
273 |
274 |
275 |

NexaBank

276 |

e-Banking Software

277 |
278 | 279 |
280 |
281 |
282 |
283 | 284 | 285 | 286 | 287 | 288 |
289 |

clients reviews

290 | 291 |
292 |
293 |
294 |

295 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nobis 296 | unde suscipit quis consequuntur, tempora corporis ex molestias 297 | dignissimos in cumque sunt ducimus voluptate inventore harum earum 298 | rem aperiam vel modi? 299 |

300 |
301 | 302 |
303 |

john deo

304 |
305 | 306 | 307 | 308 | 309 | 310 |
311 |
312 |
313 |
314 | 315 |
316 |

317 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nobis 318 | unde suscipit quis consequuntur, tempora corporis ex molestias 319 | dignissimos in cumque sunt ducimus voluptate inventore harum earum 320 | rem aperiam vel modi? 321 |

322 |
323 | 324 |
325 |

doe deo

326 |
327 | 328 | 329 | 330 | 331 | 332 |
333 |
334 |
335 |
336 | 337 |
338 |

339 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nobis 340 | unde suscipit quis consequuntur, tempora corporis ex molestias 341 | dignissimos in cumque sunt ducimus voluptate inventore harum earum 342 | rem aperiam vel modi? 343 |

344 |
345 | 346 |
347 |

andrew deo

348 |
349 | 350 | 351 | 352 | 353 | 354 |
355 |
356 |
357 |
358 | 359 |
360 |

361 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nobis 362 | unde suscipit quis consequuntur, tempora corporis ex molestias 363 | dignissimos in cumque sunt ducimus voluptate inventore harum earum 364 | rem aperiam vel modi? 365 |

366 |
367 | 368 |
369 |

john deo

370 |
371 | 372 | 373 | 374 | 375 | 376 |
377 |
378 |
379 |
380 | 381 |
382 |

383 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nobis 384 | unde suscipit quis consequuntur, tempora corporis ex molestias 385 | dignissimos in cumque sunt ducimus voluptate inventore harum earum 386 | rem aperiam vel modi? 387 |

388 |
389 | 390 |
391 |

john deo

392 |
393 | 394 | 395 | 396 | 397 | 398 |
399 |
400 |
401 |
402 | 403 |
404 |

405 | Lorem, ipsum dolor sit amet consectetur adipisicing elit. Nobis 406 | unde suscipit quis consequuntur, tempora corporis ex molestias 407 | dignissimos in cumque sunt ducimus voluptate inventore harum earum 408 | rem aperiam vel modi? 409 |

410 |
411 | 412 |
413 |

john deo

414 |
415 | 416 | 417 | 418 | 419 | 420 |
421 |
422 |
423 |
424 |
425 |
426 |
427 | 428 | 429 | 430 | 431 | 432 |
433 |

our pricing

434 | 435 |
436 |
437 | 438 |

basic plan

439 |
$250/mo
440 |
441 |

Standard development tools

442 |

Monthly site updates

443 |

Basic security alerts

444 |

Email support

445 |

Analytics dashboard access

446 |
447 | choose plan 448 |
449 | 450 |
451 | 452 |

premium plan

453 |
$650/mo
454 |
455 |

Custom development hours

456 |

Enhanced security reports

457 |

Priority support access

458 |

Advanced AI tools

459 |

Bi-weekly optimizations

460 |
461 | choose plan 462 |
463 | 464 |
465 | 466 |

ultimate plan

467 |
$1250/mo
468 |
469 |

Dedicated development team

470 |

Comprehensive security suite

471 |

24/7 priority support

472 |

Monthly strategic sessions

473 |

Custom AI development

474 | 475 |
476 | choose plan 477 |
478 |
479 |
480 | 481 | 482 | 483 | 484 | 485 |
486 |

contact us

487 | 488 |
489 | 495 | 496 |
497 |

get in touch

498 | 499 | 500 | 501 | 509 | 510 |
511 |
512 |
513 | 514 | 515 | 516 | 517 | 518 | 519 | 520 | 538 | 539 | 540 | 541 | 542 | 543 | 544 | 545 | 546 | 547 | 548 | 551 | 552 | 553 | -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- 1 | let navbar = document.querySelector('.header .navbar'); 2 | let searchForm = document.querySelector('.header .search-form'); 3 | let loginForm = document.querySelector('.header .login-form'); 4 | let contactInfo = document.querySelector('.contact-info'); 5 | 6 | document.querySelector('#menu-btn').onclick = () =>{ 7 | navbar.classList.toggle('active'); 8 | searchForm.classList.remove('active'); 9 | loginForm.classList.remove('active'); 10 | }; 11 | 12 | document.querySelector('#search-btn').onclick = () =>{ 13 | searchForm.classList.toggle('active'); 14 | navbar.classList.remove('active'); 15 | loginForm.classList.remove('active'); 16 | }; 17 | 18 | document.querySelector('#login-btn').onclick = () =>{ 19 | loginForm.classList.toggle('active'); 20 | navbar.classList.remove('active'); 21 | searchForm.classList.remove('active'); 22 | }; 23 | 24 | document.querySelector('#info-btn').onclick = () =>{ 25 | contactInfo.classList.add('active'); 26 | } 27 | 28 | document.querySelector('#close-contact-info').onclick = () =>{ 29 | contactInfo.classList.remove('active'); 30 | } 31 | 32 | window.onscroll = () =>{ 33 | navbar.classList.remove('active'); 34 | searchForm.classList.remove('active'); 35 | loginForm.classList.remove('active'); 36 | contactInfo.classList.remove('active'); 37 | } 38 | 39 | var swiper = new Swiper(".home-slider", { 40 | loop:true, 41 | grabCursor:true, 42 | navigation: { 43 | nextEl: ".swiper-button-next", 44 | prevEl: ".swiper-button-prev", 45 | }, 46 | }); 47 | 48 | var swiper = new Swiper(".reviews-slider", { 49 | loop:true, 50 | grabCursor:true, 51 | spaceBetween: 20, 52 | breakpoints: { 53 | 640: { 54 | slidesPerView: 1, 55 | }, 56 | 768: { 57 | slidesPerView: 2, 58 | }, 59 | 991: { 60 | slidesPerView: 3, 61 | }, 62 | }, 63 | }); 64 | 65 | var swiper = new Swiper(".blogs-slider", { 66 | loop:true, 67 | grabCursor:true, 68 | spaceBetween: 20, 69 | breakpoints: { 70 | 640: { 71 | slidesPerView: 1, 72 | }, 73 | 768: { 74 | slidesPerView: 2, 75 | }, 76 | 991: { 77 | slidesPerView: 3, 78 | }, 79 | }, 80 | }); 81 | 82 | var swiper = new Swiper(".logo-slider", { 83 | loop:true, 84 | grabCursor:true, 85 | spaceBetween: 20, 86 | breakpoints: { 87 | 450: { 88 | slidesPerView: 2, 89 | }, 90 | 640: { 91 | slidesPerView: 3, 92 | }, 93 | 768: { 94 | slidesPerView: 4, 95 | }, 96 | 1000: { 97 | slidesPerView: 5, 98 | }, 99 | }, 100 | }); --------------------------------------------------------------------------------